forked from Konard/vk-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
stickers.js
135 lines (133 loc) · 4.23 KB
/
stickers.js
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
const greeting = require('./stickers/greeting.json');
const stickers = {
"gratitude": {
"oni-chan": {
id: 65091,
pack_id: 1361,
pack: "oni-chan",
type: "gratitude",
text: "АРИГАТО!",
textLanguage: "ru",
},
"Asteria": {
id: 86140,
previewImageUrl: "https://vk.com/sticker/1-86140-512",
previewImageWithBackground: "https://vk.com/sticker/1-86140-512b",
pack_id: 1835,
pack: "Asteria",
type: "gratitude",
text: "БЛАГОДАРЮ",
textLanguage: "ru",
},
"Best friends": {
id: 88368,
previewImageUrl: "https://vk.com/sticker/1-88368-512",
previewImageWithBackground: "https://vk.com/sticker/1-88368-512b",
pack: "Best friends",
type: "gratitude",
text: "СПАСИБО",
textLanguage: "ru",
},
"Your vmoji": {
id: 73618,
previewImageUrl: "https://sun1-55.userapi.com/7i4oPsrE0EUil-6mwFDnHyvjq9z_ASLtOu4ROA/LdoH_FZZWBQ.png",
previewImageWithBackground: "https://sun1-95.userapi.com/ddXDpxdYvLlAp2lHVAK66QAsHyQHI3PROEDcmg/EXMuJwJGJ5Y.png",
pack: "Your vmoji",
type: "gratitude",
text: "МЕРСИ",
textLanguage: "ru",
},
"No Words Needed": {
id: 94365,
previewImageUrl: "https://vk.com/sticker/1-94365-512",
previewImageWithBackground: "https://vk.com/sticker/1-94365-512b",
pack: "No Words Needed",
type: "gratitude",
text: "СПАСИБО",
textLanguage: "ru",
},
"Vladik": {
id: 86539,
previewImageUrl: "https://vk.com/sticker/1-86539-512",
previewImageWithBackground: "https://vk.com/sticker/1-86539-512b",
pack: "Vladik",
type: "gratitude",
text: "СПАСИБО!",
textLanguage: "ru",
},
"Bengal and Somali": {
id: 91892,
previewImageUrl: "https://vk.com/sticker/1-91892-512",
previewImageWithBackground: "https://vk.com/sticker/1-91892-512b",
pack: "Bengal and Somali",
type: "gratitude",
text: "СПАСИБО!",
textLanguage: "ru",
},
"Emily": {
id: 72149,
previewImageUrl: "https://vk.com/sticker/1-72149-512",
previewImageWithBackground: "https://vk.com/sticker/1-72149-512b",
pack: "Emily",
type: "gratitude",
text: "СПАСИБО, ЗАЮШ",
textLanguage: "ru",
},
},
"greeting": {
...greeting.greeting,
"Elinor": {
id: 85081,
previewImageUrl: "https://vk.com/sticker/1-85081-512",
previewImageWithBackground: "https://vk.com/sticker/1-85081-512b",
pack: "Elinor",
type: "greeting",
text: "ХАЙ, БИЧ",
textLanguage: "ru",
},
"Emily": {
id: 72168,
previewImageUrl: "https://vk.com/sticker/1-72168-512",
previewImageWithBackground: "https://vk.com/sticker/1-72168-512b",
pack: "Emily",
type: "greeting",
text: "ПРИВЕТ, ЗАЙ",
textLanguage: "ru",
},
"Heartfelt stickers": {
id: 92708,
previewImageUrl: "https://vk.com/sticker/1-92708-512",
previewImageWithBackground: "https://vk.com/sticker/1-92708-512b",
pack: "Heartfelt stickers",
type: "greeting",
text: "ПРИВЕТ",
textLanguage: "ru",
},
// "Tong": {
// id: 84592,
// previewImageUrl: "https://vk.com/sticker/1-84592-512",
// previewImageWithBackground: "https://vk.com/sticker/1-84592-512b",
// pack: "Tong",
// type: "greeting",
// text: "ПРИВЕТ, ДРУГ",
// textLanguage: "ru",
// },
// "Your vmoji": {
// id: 73601,
// previewImageUrl: "https://sun1-56.userapi.com/xnz4QcDDU41fsduvDvEUCPevVMxRMZgFsOPHHg/DmWhPkn1jKw.png",
// previewImageWithBackground: "https://sun1-16.userapi.com/XiZCxo2MHQCFTNXaI5cectj6WXkdN38eRAP2kw/FgfQ7bY9Vzk.png",
// pack: "Your vmoji",
// type: "greeting",
// },
// "Winter vmoji": {
// id: 81987,
// previewImageUrl: "https://sun1-57.userapi.com/oU3AHHeZkex95AL_36v5bGRIRZOe3JqPNFaC_g/WcHwRXqOLD0.png",
// previewImageWithBackground: "https://sun1-97.userapi.com/RYZABEdEnKlCZi2Bpw6i81E_q2m9GJ5Mnq3UWw/Qu80YNCn2l4.png",
// pack: "Winter vmoji",
// type: "greeting",
// }
}
};
module.exports = {
stickers
};