forked from oldramen/hashtag-amy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.js
56 lines (54 loc) · 2.01 KB
/
menu.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
/**
* @copyright 2012 yayramen && Inumedia.
* @author yayramen
* @description This is where all the items on the menu are stored and loaded into runtime from.
* @note All commands must be entirely lower case.
*/
global.mMenu = [,
{
item: 'rum',
instock: ['Bacardi', 'Captain Jack', 'Stroh\'s', 'Kraken'],
message: 'Have yourself a shot of ',
callback: function (pUser, pText) {
mBot.speak(this.message + mRandomItem(this.instock) + '.');
}
},
{
item: 'whiskey',
instock: ['Jack Daniels', 'Gentleman Jack'],
message: 'Have yourself a shot of ',
callback: function (pUser, pText) {
mBot.speak(this.message + mRandomItem(this.instock) + '.');
}
},
{
item: 'tequila',
instock: ['Jose Cuervo', 'Patron'],
message: 'Have yourself a shot of ',
callback: function (pUser, pText) {
mBot.speak(this.message + mRandomItem(this.instock) + '.');
}
},
{
item: 'irish coffee',
message: ['Would you like a potato with that?', 'It\'s never too early to get a little Irish in you.', 'Wakes you up, only to knock you out. Tsk Tsk.'],
callback: function (pUser, pText) {
mBot.speak(mRandomItem(this.message));
}
},
{
item: 'bahama mama',
message: ['Here\'s your Bahama, Mama.', 'Order a real drink, next time.', 'I made it virgin, you\'re looking a little sketchy'],
callback: function (pUser, pText) {
mBot.speak(mRandomItem(this.message));
}
},
{
item: 'beer',
instock: ['Fat Tire', 'Sam Adams', 'Upland Wheat', 'Stella Artois', 'Arrogant Bastard', 'Keystone Light', 'Anchor Steam Porter', 'Dirty Helen', 'Tommyknocker', 'Guinness', 'Heineken', 'Dark Lord', 'Newcastle', 'Killian\'s', 'Breckenridge Vanilla Porter', 'Breckenridge Oatmeal Stout', 'Honey Brown' ],
message: 'Have yourself a nice cold ',
callback: function (pUser, pText) {
mBot.speak(this.message + mRandomItem(this.instock) + '.');
}
},
];