-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.json
73 lines (63 loc) · 1.46 KB
/
commands.json
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
{
"settings":{
"tokens":{
"£":"prefix"
}
},
"commands":{
"greet {person}":{
"arguments":[
{
"person":"user"
}
],
"response":{
"description": "hello {person} :)"
}
},
"ping":"pong",
"hello" : {
"response" : [
"hello {author} :)",
"hello there",
"greetings!"
],
"settings" : {
"literal" : true,
"ignoreCase" : true
}
},
"*teleports behind you*" : "Nothing personnel kid",
"you're supposed to {words}" : {
"arguments" : [
{ "words" : "words" }
],
"response" : [
"oh",
"> trying to blame a program :thinking:",
"I'm sorry, I *guess* I must've read the source code wrong then",
"I have 3% code coverage, does this surprise you in any way?",
"your feedback is appreciated, let me just write that do- \nOh no, it just go already garbage collected...\n *what a shame*...",
"Executing this code is like throwing bowling pins at a bowling ball. You're technically reaching the desired goal \nbut not really"
]
},
"omae wa mou shindeiru" : "https://i.redd.it/6dwlf4rnmajz.jpg",
"£ coinflip" : {
"response" : [
{
"heads" : 50
},
{
"tails" : 50
},
{
"sides" : 1
}
],
"alias" : [
"£cf",
"coinflip"
]
}
}
}