diff options
Diffstat (limited to 'src/config.ts')
-rw-r--r-- | src/config.ts | 46 |
1 files changed, 26 insertions, 20 deletions
diff --git a/src/config.ts b/src/config.ts index 4c9f0be..33fdc69 100644 --- a/src/config.ts +++ b/src/config.ts | |||
@@ -1,28 +1,34 @@ | |||
1 | const mainQuery = { | ||
2 | tags: [ | ||
3 | "feral", | ||
4 | "-anthro", | ||
5 | "-human", | ||
6 | "-meme", | ||
7 | "-humor", | ||
8 | "-photography_(artwork)", | ||
9 | "-portrait", | ||
10 | "-comic", | ||
11 | "-saliva", | ||
12 | "-friendship_is_magic", | ||
13 | "-my_little_pony", | ||
14 | "-type:swf", | ||
15 | "-type:webm", | ||
16 | "-type:gif", | ||
17 | "status:active", | ||
18 | "score:>=20", | ||
19 | "inpool:false", | ||
20 | ], | ||
21 | maxPage: 131, | ||
22 | }; | ||
23 | |||
1 | export default { | 24 | export default { |
2 | e621: { | 25 | e621: { |
3 | userAgent: "@feralbot@botsin.space (by RedFoxxo)", | 26 | userAgent: "@feralbot@botsin.space (by RedFoxxo)", |
4 | queries: [ | 27 | queries: [ |
28 | mainQuery, | ||
5 | { | 29 | { |
6 | tags: [ | 30 | tags: [...mainQuery.tags, "-western_dragon"], |
7 | "feral", | 31 | maxPage: 96, |
8 | "-anthro", | ||
9 | "-human", | ||
10 | "-meme", | ||
11 | "-humor", | ||
12 | "-photography_(artwork)", | ||
13 | "-portrait", | ||
14 | "-comic", | ||
15 | "-saliva", | ||
16 | "-friendship_is_magic", | ||
17 | "-my_little_pony", | ||
18 | "-type:swf", | ||
19 | "-type:webm", | ||
20 | "-type:gif", | ||
21 | "status:active", | ||
22 | "score:>=20", | ||
23 | "inpool:false", | ||
24 | ], | ||
25 | maxPage: 131, | ||
26 | }, | 32 | }, |
27 | ], | 33 | ], |
28 | }, | 34 | }, |