-
Notifications
You must be signed in to change notification settings - Fork 0
/
表情制作1.2(V3无需py).js
350 lines (324 loc) · 11.1 KB
/
表情制作1.2(V3无需py).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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
import plugin from '../../lib/plugins/plugin.js'
import fetch from "node-fetch";
import lodash from "lodash";
import { segment } from "icqq";
//作者:癫癫博士 100813450 (官服)
//初心是为了让搞python不方便的朋友门也能使用表情制作,类似于宵鸟的那个,不过不需要依赖python ^^
//当然功能肯定比不上宵鸟了,目前只有@群友生成表情,之后有空再加
//接口地址:https://ovooa.com/
//输入命令 表情帮助 获取表情列表
//附上一个随机壁纸功能 输入 随机壁纸即可获取
let botnumber="1225659703"
const _path = process.cwd();
export class example extends plugin {
constructor () {
super({
/** 功能名称 */
name: '表情制作',
/** 功能描述 */
dsc: '表情制作,不需要依赖python',
/** https://oicqjs.github.io/oicq/#events */
event: 'message',
/** 优先级,数字越小等级越高 */
priority: 5000,
rule: [
{
/** 命令正则匹配 */
reg: '表情帮助',
/** 执行方法 */
fnc: 'help'
},
{
/** 命令正则匹配 */
reg: '随机壁纸',
/** 执行方法 */
fnc: 'wallpaper'
},
{
/** 命令正则匹配 */
reg: '^舔(.*)$',
/** 执行方法 */
fnc: 'lick'
},
{
/** 命令正则匹配 */
reg: '^吸(.*)$',
/** 执行方法 */
fnc: 'blow'
},
{
/** 命令正则匹配 */
reg: '^高质量(.*)$',
/** 执行方法 */
fnc: 'high_quality'
},
{
/** 命令正则匹配 */
reg: '^摸(.*)$',
/** 执行方法 */
fnc: 'touch'
},
{
/** 命令正则匹配 */
reg: '^捣(.*)$',
/** 执行方法 */
fnc: 'squeeze'
},
{
/** 命令正则匹配 */
reg: '^撕了(.*)$',
/** 执行方法 */
fnc: 'tear'
},
{
/** 命令正则匹配 */
reg: '^膜拜(.*)$',
/** 执行方法 */
fnc: 'worship'
},
{
/** 命令正则匹配 */
reg: '^小天使(.*)$',
/** 执行方法 */
fnc: 'cherub'
},
{
/** 命令正则匹配 */
reg: '^贴贴(.*)$',
/** 执行方法 */
fnc: 'tietie'
},
{
/** 命令正则匹配 */
reg: '^一样(.*)$',
/** 执行方法 */
fnc: 'same'
},
{
/** 命令正则匹配 */
reg: '^完美(.*)$',
/** 执行方法 */
fnc: 'perfect'
},
{
/** 命令正则匹配 */
reg: '^兑换券(.*)$',
/** 执行方法 */
fnc: 'exchange'
},
{
/** 命令正则匹配 */
reg: '^垃圾桶(.*)$',
/** 执行方法 */
fnc: 'rubbish'
},
]
})
}
async help (e) {
let msg
msg = ["使用以下字符加上@群友",
"\n",
"例如:吸@癫癫博士",
"\n",
"【吸,摸,捣,舔,撕了,膜拜,高质量,小天使,贴贴,一样,完美,兑换券,垃圾桶】",
"\n",
"发送【随机壁纸】获取随机原神壁纸"]
await e.reply(msg)
//返回true 阻挡消息不再往下
return true;
}
async wallpaper (e) {
let url = 'https://ovooa.com/API/yuan/api?type=json'
let res = await fetch(url).catch((err) => logger.error(err))
res = await res.json()
await this.reply(segment.image(`${res.text}`))
//返回true 阻挡消息不再往下
return true;
}
async lick (e) {
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
e.reply(segment.image(`http://ovooa.com/API/tian/?url=https://q1.qlogo.cn/g?b=qq&s=0&nk=${botnumber}`))
return true;
}
e.reply(segment.image(`http://ovooa.com/API/tian/?url=https://q1.qlogo.cn/g?b=qq&s=0&nk=${e.at}`))
}
//返回true 阻挡消息不再往下
return true;
}
async blow (e) {
/** e.msg 用户的命令消息 */
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
e.reply(segment.image(`http://ovooa.com/API/face_suck/?QQ=${botnumber}`))
return true;
}
e.reply(segment.image(`http://ovooa.com/API/face_suck/?QQ=${e.at}`))
}
//返回true 阻挡消息不再往下
return true;
}
async high_quality (e) {
/** e.msg 用户的命令消息 */
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
e.reply(segment.image(`http://ovooa.com/API/face_gao/?QQ=${botnumber}`))
return true;
}
e.reply(segment.image(`http://ovooa.com/API/face_gao/?QQ=${e.at}`))
}
//返回true 阻挡消息不再往下
return true;
}
async touch (e) {
/** e.msg 用户的命令消息 */
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
e.reply(segment.image(`http://ovooa.com/API/face_petpet/?QQ=${botnumber}`))
return true;
}
e.reply(segment.image(`http://ovooa.com/API/face_petpet/?QQ=${e.at}`))
}
//返回true 阻挡消息不再往下
return true;
}
async squeeze (e) {
/** e.msg 用户的命令消息 */
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
e.reply(segment.image(`http://ovooa.com/API/face_pound/?QQ=${botnumber}`))
return true;
}
e.reply(segment.image(`http://ovooa.com/API/face_pound/?QQ=${e.at}`))
}
//返回true 阻挡消息不再往下
return true;
}
async tear (e) {
/** e.msg 用户的命令消息 */
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
e.reply(segment.image(`http://ovooa.com/API/si/?QQ=${botnumber}`))
return true;
}
e.reply(segment.image(`http://ovooa.com/API/si/?QQ=${e.at}`))
}
//返回true 阻挡消息不再往下
return true;
}
async worship (e) {
/** e.msg 用户的命令消息 */
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
e.reply(segment.image(`http://ovooa.com/API/face_worship/?QQ=${botnumber}`))
return true;
}
e.reply(segment.image(`http://ovooa.com/API/face_worship/?QQ=${e.at}`))
}
//返回true 阻挡消息不再往下
return true;
}
//小天使
async cherub (e) {
/** e.msg 用户的命令消息 */
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
let res = await fetch(`https://api.dlut-cc.live/emoji/?flag=_&qq=0&group=0&master=0&args=%E5%B0%8F%E5%A4%A9%E4%BD%BF&target=${botnumber}`)
res = await res.json()
e.reply(await segment.image(res.url))
return true;
}
let res = await fetch(`https://api.dlut-cc.live/emoji/?flag=_&qq=0&group=0&master=0&args=%E5%B0%8F%E5%A4%A9%E4%BD%BF&target=${e.at}`)
res = await res.json()
e.reply(await segment.image(res.url))
}
//返回true 阻挡消息不再往下
return true;
}
//贴贴
async tietie (e) {
/** e.msg 用户的命令消息 */
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
let res = await fetch(`https://api.dlut-cc.live/emoji/?flag=_&qq=${e.user_id}&group=0&master=0&args=%E8%B4%B4%E8%B4%B4&target=${botnumber}`)
res = await res.json()
e.reply(await segment.image(res.url))
return true;
}
let res = await fetch(`https://api.dlut-cc.live/emoji/?flag=_&qq=${e.user_id}&group=0&master=0&args=%E8%B4%B4%E8%B4%B4&target=${e.at}`)
res = await res.json()
e.reply(await segment.image(res.url))
}
//返回true 阻挡消息不再往下
return true;
}
//一样
async same (e) {
/** e.msg 用户的命令消息 */
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
let res = await fetch(`https://api.dlut-cc.live/emoji/?flag=_&qq=0&group=0&master=0&args=%E4%B8%80%E6%A0%B7&target=${botnumber}`)
res = await res.json()
e.reply(await segment.image(res.url))
return true;
}
let res = await fetch(`https://api.dlut-cc.live/emoji/?flag=_&qq=0&group=0&master=0&args=%E4%B8%80%E6%A0%B7&target=${e.at}`)
res = await res.json()
e.reply(await segment.image(res.url))
}
//返回true 阻挡消息不再往下
return true;
}
//完美
async perfect (e) {
/** e.msg 用户的命令消息 */
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
let res = await fetch(`https://api.dlut-cc.live/emoji/?flag=_&qq=0&group=0&master=0&args=%E5%AE%8C%E7%BE%8E&target=${botnumber}`)
res = await res.json()
e.reply(await segment.image(res.url))
return true;
}
let res = await fetch(`https://api.dlut-cc.live/emoji/?flag=_&qq=0&group=0&master=0&args=%E5%AE%8C%E7%BE%8E&target=${e.at}`)
res = await res.json()
e.reply(await segment.image(res.url))
}
//返回true 阻挡消息不再往下
return true;
}
//兑换券
async exchange (e) {
/** e.msg 用户的命令消息 */
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
let res = await fetch(`https://api.dlut-cc.live/emoji/?flag=_&qq=0&group=0&master=0&args=%E5%85%91%E6%8D%A2%E5%88%B8&target=${botnumber}`)
res = await res.json()
e.reply(await segment.image(res.url))
return true;
}
let res = await fetch(`https://api.dlut-cc.live/emoji/?flag=_&qq=0&group=0&master=0&args=%E5%85%91%E6%8D%A2%E5%88%B8&target=${e.at}`)
res = await res.json()
e.reply(await segment.image(res.url))
}
//返回true 阻挡消息不再往下
return true;
}
//垃圾桶
async rubbish (e) {
/** e.msg 用户的命令消息 */
if (e.message[1].type == 'at') {
if (`${e.at}` == 'undefined'){
let res = await fetch(`https://api.dlut-cc.live/emoji/?flag=_&qq=0&group=0&master=0&args=%E5%9E%83%E5%9C%BE%E6%A1%B6&target=${botnumber}`)
res = await res.json()
e.reply(await segment.image(res.url))
return true;
}
let res = await fetch(`https://api.dlut-cc.live/emoji/?flag=_&qq=0&group=0&master=0&args=%E5%9E%83%E5%9C%BE%E6%A1%B6&target=${e.at}`)
res = await res.json()
e.reply(await segment.image(res.url))
}
//返回true 阻挡消息不再往下
return true;
}
}