Updated to include optional explicit rating
This commit is contained in:
parent
5ff564326e
commit
db5d8cfc5a
@ -19,13 +19,15 @@
|
||||
from collections import OrderedDict
|
||||
|
||||
|
||||
def setup_profile(name, backend, tags, message, message_nsfw):
|
||||
def setup_profile(name, backend, tags, banned_tags, message, message_nsfw, force_nsfw=None):
|
||||
post_setting = {
|
||||
"name": name,
|
||||
"backend": backend,
|
||||
"tags": tags,
|
||||
"banned_tags": banned_tags,
|
||||
"message": (message,),
|
||||
"message_nsfw": (message_nsfw,)
|
||||
"message_nsfw": (message_nsfw,),
|
||||
"force_nsfw": force_nsfw
|
||||
}
|
||||
return post_setting
|
||||
|
||||
@ -59,8 +61,6 @@ settings_credentials = {
|
||||
}
|
||||
}
|
||||
|
||||
settings_banned = tuple()
|
||||
|
||||
# Basic settings to configure Yandere Bot's behavior
|
||||
settings_behavior = {
|
||||
"max_size": 15*1024*1024,
|
||||
@ -87,14 +87,12 @@ settings_time = {
|
||||
"long_date_week": "%m/%d/%Y %I:%M%p, %A"
|
||||
}
|
||||
|
||||
# Apply post settings
|
||||
settings_post = (
|
||||
setup_profile("danbooru.random", "danbooru_backend", ("random",), "#random", "#random #lewd #nsfw"),
|
||||
setup_profile("danbooru.yandere", "danbooru_backend", ("yandere",), "#yandere", "#yandere #lewd #nsfw"),
|
||||
banned_tags = (
|
||||
"guro", "scat", "yaoi", "implied_yaoi", "bara", "male_focus", "futanari"
|
||||
)
|
||||
|
||||
# Default post behavior:
|
||||
# If no profile can be matched in a master_list, it will default to settings_post_default
|
||||
# If settings_post_default is None, the bot will error out and output the offending line(s)
|
||||
# If you want the bot to start, set this to a valid settings_post, or create a default setting with setup_profile()
|
||||
settings_post_default = None
|
||||
# Apply post settings
|
||||
settings_post = (
|
||||
setup_profile("danbooru.random", "danbooru_backend", ("random",), banned_tags, "#random", "#random #lewd #nsfw", None),
|
||||
setup_profile("danbooru.yandere", "danbooru_backend", ("yandere",), banned_tags, "#yandere", "#yandere #lewd #nsfw", None),
|
||||
)
|
||||
|
Reference in New Issue
Block a user