-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathplease.js
More file actions
47 lines (42 loc) · 1.7 KB
/
please.js
File metadata and controls
47 lines (42 loc) · 1.7 KB
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
const scoring = require('../scoring');
function docs(){
/**
** slap bear slap me gif ** : 'please get me out of sad'
** Killed Em Hold This gif ** : 'please get me out of happy'
** Self patting gif ** : 'please give me pats'
** Ghost hug gif ** : 'please give me hugs'
** Bear wiping tears gif ** : 'no tears please'
** Bee yourself - you matter image ** : 'please give good vibes'
**/
}
function command(msg) {
switch (msg.content.toLowerCase()) {
case "please get me out of sad":
msg.channel.send('https://tenor.com/view/slap-bear-slap-me-you-gif-17942299');
scoring.inc(msg.author.id, 1);
break;
case "please get me out of happy":
msg.channel.send('https://tenor.com/view/killed-em-hold-this-stabbed-gif-14017151');
scoring.inc(msg.author.id, 1);
break;
case "please give me pats":
msg.channel.send('https://media0.giphy.com/media/mn1cym1jiJOUg/giphy.gif');
scoring.inc(msg.author.id, 1);
break;
case "please give me hugs":
msg.channel.send('https://media.tenor.com/images/2d34e964879615029896fe8f2e296feb/tenor.gif');
scoring.inc(msg.author.id, 1);
break;
case "no tears please":
msg.channel.send('https://i.pinimg.com/originals/3e/ce/ef/3eceefc04128c32e8a5f5173dd1bd27f.gif');
scoring.inc(msg.author.id, 1);
break;
case "please give good vibes":
msg.channel.send('https://i.pinimg.com/564x/af/e4/c6/afe4c6614ea9c631059d941ed00b4ee5.jpg');
scoring.inc(msg.author.id, 1);
break;
}
}
module.exports = {
command: command
};