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
|
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",
"-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",
"-world_war_*",
"-adolf_hitler_(artist)",
"-blackkaries",
"-photography_(artwork)",
"-3d_(artwork)",
"status:active",
"score:>=20",
"inpool:false",
],
tagsBlacklist: [
"plushification",
"foot_focus"
],
maxPage: 118,
};
export default {
e621: {
userAgent: "@feralbot@botsin.space (by RedFoxxo)",
queries: [
mainQuery,
],
blacklist: [672088, 1064946, 2495430, 2408200, 2588693],
},
/*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"],
};
|