Skip to content

Commit a39999d

Browse files
authored
Merge pull request CloudBotIRC#104 from IlGnome/patch-13
Add kosher command
2 parents 62610e1 + 4c7a506 commit a39999d

1 file changed

Lines changed: 54 additions & 1 deletion

File tree

plugins/halal.py

Lines changed: 54 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,71 @@
3232
'Fish Makkanwala',
3333
'Szechwan'
3434
]
35+
kdish = ['gefilte fish',
36+
'matzo ball soup',
37+
'cholent',
38+
'sufganiyot',
39+
'cream cheese with lox bagel',
40+
'lamb merguez with lentils and pears',
41+
'warm apple streusel with ice cream on top',
42+
'mushroom and truffle pizza',
43+
'lemon and rosemary salad with a side of rice',
44+
'latkes with applesauce',
45+
'challah french toast',
46+
'grilled fish tacos with chili-lime dressing',
47+
'date charoset',
48+
'huevos haminados',
49+
'baba-ghanouj',
50+
'bastani with freshly baked pita',
51+
'hummus with perfectly fried falafel',
52+
'mujadrah with warm bread',
53+
'shishlik with red peppers, mushrooms, and onion',
54+
'spicy shakshouka with french bread',
55+
'hadgi badah with a tall glass of apple juice',
56+
'malawah with a large glass of milk',
57+
'sweet kugel with extra sugar on top',
58+
'hamantaschen with date and raspberry filling',
59+
'marbled halva with almonds on top',
60+
'labna with a side of chili sauce',
61+
'polow shirin with extra pomegranate',
62+
'lamb bademjan'
63+
'beef kubbeh with extra chili peppers',
64+
'beef shawarma with a side of hummus and rice',
65+
'lamb and mushroom kofta with a large coke',
66+
'cheese and spinach sambousek',
67+
'bamieh with a side of grilled chicken',
68+
'chicken tagine with saffron rice and a slice of lechuch',
69+
'kofta mishmisheya with grilled vegetables',
70+
'charoset with day old matzah',
71+
'sour cherry rugelach',
72+
'orange-scented flan with dulce de leche syrup',
73+
'brisket with potatoes and a spinach salad',
74+
'bouikos con kashkaval',
75+
'lemon-rice soup with soda crackers'
76+
]
77+
78+
3579

3680
@hook.command('halaal', 'halal', autohelp = False)
3781
def serving(text, action):
3882
'''Serves halaal dishes to some one in the channel'''
3983
diner = text.strip()
4084

4185
if diner =='':
42-
action('Has {} {} {}'.format(random.choice(quantity), random.choice(quality), random.choice(dish)))
86+
action('has {} {} {}'.format(random.choice(quantity), random.choice(quality), random.choice(dish)))
4387

4488
else:
4589
action('Serves {} {} {} {}'.format(diner, random.choice(quantity), random.choice(quality), random.choice(dish)))
4690

91+
@hook.command('kosher', autohelp=False)
92+
def kserving(text, action):
93+
94+
'''Servers a Kosher dish to some one in the channel. Part of halal.py. Made with help of snoonet user Yat'''
95+
kdiner = text.strip()
96+
if kdiner =='':
97+
action('has {} {} {}'.format(random.choice(quantity), random.choice(quality), random.choice(kdish)))
98+
else:
99+
action('Serves {} {} {} {}'.format(kdiner, random.choice(quantity), random.choice(quality), random.choice(kdish)))
47100

48101
#written by ilgnome
49102
#find me in #gonzobot

0 commit comments

Comments
 (0)