summaryrefslogtreecommitdiffstats
path: root/src/config.ts
blob: bba21f7627c6447720e8a02001af7419d2e2d2d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
import { GetPostQuery } from "./api/e926";

const mainQuery: GetPostQuery = {
    tags: [
        "feral",
        "-anthro",
        "-human",
        "-humanoid",
        "-waddling_head",
        "-presenting",
        "-meme",
        "-humor",
        "-portrait",
        "-comic",
        "-saliva",
        "-seductive",
        "-kissing",
        "-french_kissing",
        "-obese",
        "-vore",
        "-friendship_is_magic",
        "-my_little_pony",
        "-paw_patrol",
        "-kono_subarashii_sekai_ni_shukufuku_wo!",
        "-diaper",
        "-pacifier",
        "-hyper",
        "-pregnant",
        "-lips",
        "-crossdressing",
        "-mouth_shot",
        "-animated",
        "-*transformation",
        "-m*cro",
        "-plushification",
        "-foot_focus",
        "-world_war_*",
        "-blackkaries",
        "-photography_(artwork)",
        "-3d_(artwork)",
        "status:active",
        "inpool:false",
    ],
    tagsBlacklist: [
        "adolf_hitler_(artist)",
        "tucker_chimera_(fma)",
        "taur",
        "swastika",
        "facesitting",
        "huge_butt",
        "dakimakura_design",
        "overweight",
        "big_belly",
        "dress",
        "gag",
        "bdsm",
        "latex",
        "rubber_clothing",
        "rubber_suit",
        "hypnosis",
        "mind_control",
        "big_butt",
        "thigh_highs",
        "legwear",
        "leggings",
        "po_chf",
    ],
    maxPage: 121,
};

export default {
    e621: {
        userAgent: "@feralbot@botsin.space (by RedFoxxo)",
        queries: [
            {
                ...mainQuery,
                tags: [...mainQuery.tags, "score:>=20", "date:1_years_ago"],
                maxPage: 33,
            },
            {
                ...mainQuery,
                tags: [...mainQuery.tags, "score:>=30", "date:..1_years_ago"],
                maxPage: 45,
            },
        ],
        blacklist: [
            672088, 1064946, 2495430, 2408200, 2588693, 2864729, 356070, 2701998, 2486370, 1926597, 2610584, 1519128,
            1828400, 2981041, 3233683, 3711854,
        ],
    },
    /*misskey: {
        instance: "https://mk.vulpes.one/",
        token: process.env.MISSKEY_TOKEN,
    },*/
    mastodon: {
        instance: "https://botsin.space/",
        token: process.env.MASTODON_TOKEN,
    },
    cw: ["gun", "blood", "cigarette", "nightmare_fuel", "drugs", "marijuana", "creepy"],
};