-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreactionsCmds.js
37 lines (35 loc) · 1.01 KB
/
reactionsCmds.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
'use strict'
module.exports = {
react: react
}
async function react(msg) {
if (msg.content.toLowerCase().includes('corn')) {
msg.react('🌽');
}
if (msg.content.toLowerCase().includes('lmao')) {
msg.react('🇱')
.then(() => msg.react('🇲'))
.then(() => msg.react('🇦'))
.then(() => msg.react('🇴'))
.then(() => msg.react('😆'));
}
else if (msg.content.toLowerCase().includes('rofl')) {
msg.react('🇷')
.then(() => msg.react('🇴'))
.then(() => msg.react('🇫'))
.then(() => msg.react('🇱'))
.then(() => msg.react('🤣'));
}
else if (msg.content.toLowerCase().includes('soup')) {
msg.react('🇸')
.then(() => msg.react('🇴'))
.then(() => msg.react('🇺'))
.then(() => msg.react('🇵'))
.then(() => msg.react('🥣'));
}
else if (msg.content === 'tf' || msg.content.toLowerCase().includes('wtf')) {
msg.react('🇼')
.then(() => msg.react('🇹'))
.then(() => msg.react('🇫'));
}
}