File tree 4 files changed +34
-2
lines changed
4 files changed +34
-2
lines changed Original file line number Diff line number Diff line change 1
1
config.json
2
2
node_modules /
3
3
SFX /
4
- logs /
4
+ logs /
5
+ config /new-config.json
Original file line number Diff line number Diff line change
1
+ twitchbot:
2
+
3
+ users/byName
4
+ function (doc) {
5
+ emit(doc._id, doc.name);
6
+ }
7
+
8
+ users/byPoints
9
+ function (doc) {
10
+ emit(doc._id, doc.points);
11
+ }
12
+
13
+ users/byColours
14
+ function (doc) {
15
+ emit(doc._id, doc.colour);
16
+ }
17
+
18
+ users/byFlags
19
+ function (doc) {
20
+ emit(doc._id, doc.flag);
21
+ }
22
+
23
+ thatsbambotquotes:
24
+ quotes/all
25
+ function (doc) {
26
+ if(doc.isQuote) emit(doc._id, doc.quote);
27
+ }
Original file line number Diff line number Diff line change 1
- var config = require ( './config/config.json' ) ,
1
+ var config = require ( './config/new- config.json' ) ,
2
2
twitch = require ( './js/twitch' ) ( config ) ,
3
3
Storage = require ( './js/storage' ) ,
4
4
commandCost = require ( './js/command-cost' ) ,
Original file line number Diff line number Diff line change 31
31
"pew" : " =========★" ,
32
32
"tableflip" : " (╯°□°)╯︵ ┻━┻" ,
33
33
"tablefip" : " (╯°□°)╯︵ ┬──┬" ,
34
+ "shrug" : " ʅฺ(・ω・。)ʃฺ" ,
35
+ "groovy" : " ₍₍ (ง ˙ω˙)ว ⁾⁾" ,
36
+ "regret" : " (◞‸◟;)" ,
37
+ "celebrate" : " ヾ(〃^∇^)ノ♪" ,
34
38
"zzz" : " Zzz" ,
35
39
"tressfx" : " http://www.blogcdn.com/www.engadget.com/media/2013/03/tressfx-3-1-13-03.jpg" ,
36
40
"lies" : " LIES!!" ,
You can’t perform that action at this time.
0 commit comments