summaryrefslogtreecommitdiffstats
path: root/src/config.ts
blob: facfbbcfdee6a82a7f42da4b1ad286cbeb485c6f (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
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",
        "-dress",
        "-crossdressing",
        "-mouth_shot",
        "-animated",
        "-transformation",
        "-m*cro",
        "-plushification",
        "-foot_focus",
        "-world_war_*",
        "-blackkaries",
        "-photography_(artwork)",
        "-3d_(artwork)",
        "status:active",
        "score:>=20",
        "inpool:false",
    ],
    tagsBlacklist: [
        "adolf_hitler_(artist)",
        "tucker_chimera_(fma)",
        "taur",
        "swastika"
    ],
    maxPage: 119,
};

export default {
    e621: {
        userAgent: "@feralbot@botsin.space (by RedFoxxo)",
        queries: [
            mainQuery,
        ],
        blacklist: [672088, 1064946, 2495430, 2408200, 2588693, 2864729],
    },
    /*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"],
};