|
32 | 32 | 'Fish Makkanwala', |
33 | 33 | 'Szechwan' |
34 | 34 | ] |
| 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 | + |
35 | 79 |
|
36 | 80 | @hook.command('halaal', 'halal', autohelp = False) |
37 | 81 | def serving(text, action): |
38 | 82 | '''Serves halaal dishes to some one in the channel''' |
39 | 83 | diner = text.strip() |
40 | 84 |
|
41 | 85 | 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))) |
43 | 87 |
|
44 | 88 | else: |
45 | 89 | action('Serves {} {} {} {}'.format(diner, random.choice(quantity), random.choice(quality), random.choice(dish))) |
46 | 90 |
|
| 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))) |
47 | 100 |
|
48 | 101 | #written by ilgnome |
49 | 102 | #find me in #gonzobot |
0 commit comments