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
|
import { GetPostQuery } from "./api/e621";
const mainQuery: GetPostQuery = {
tags: [
"feral",
"-anthro",
"-human",
"-presenting",
"-meme",
"-humor",
"-portrait",
"-comic",
"-saliva",
"-seductive",
"-friendship_is_magic",
"-my_little_pony",
"-diaper",
"-cub",
"-animated",
"-adolf_hitler_(artist)",
"-photography_(artwork)",
"-3d_(artwork)",
"status:active",
"score:>=15",
"inpool:false",
],
maxPage: 186,
};
export default {
e621: {
userAgent: "@feralbot@botsin.space (by RedFoxxo)",
queries: [
mainQuery,
],
},
/*misskey: {
instance: "https://mk.vulpes.one/",
token: process.env.MISSKEY_TOKEN,
},*/
mastodon: {
instance: "https://botsin.space/",
token: process.env.MASTODON_TOKEN,
},
cw: ["gun", "blood"],
};
|