-
Notifications
You must be signed in to change notification settings - Fork 1
/
ingredients.py
101 lines (101 loc) · 2.3 KB
/
ingredients.py
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
# Dictionary of ASCII characters and a creative name for each of them
# TODO: give the items that don't have a # at the end a creative name!
# Regex: .*[^#]$
ingredients_dictionary = {
'\n' : 'new lines',
'\t' : 'tabs',
' ' : 'air', #
'!' : 'gunpowder', #
'"' : 'ice', #
'#' : 'hashbrowns', #
'$' : 'gold flakes', #
'%' : 'sunscreen', #
'&' : 'glue', #
"'" : 'alcohol', #
'(' : 'salt', #
')' : 'pepper', #
'*' : 'sprinkles', #
'+' : 'sacramental bread', #
',' : 'food coloring', #
'-' : 'soap', #
'.' : 'bread crumbs', #
'/' : 'laxative', #
'0' : 'Coca-Cola Zero', #
'1' : 'Coca-Cola', #
'2' : 'Pepsi', #
'3' : 'Mountain Dew', #
'4' : 'Dr Pepper', #
'5' : 'Sprite', #
'6' : 'Fanta', #
'7' : '7Up', #
'8' : 'Monster Energy', #
'9' : 'Red Bull', #
':' : 'hemorrhoids creme', #
';' : 'toothpaste', #
'<' : 'blood', #
'=' : 'sweat', #
'>' : 'tears', #
'?' : 'secret ingredient', #
'@' : 'aspirin', #
'A' : 'apple juice', #
'B' : 'baking powder', #
'C' : 'coffee', #
'D' : 'dark chocolate', #
'E' : 'egg whites', #
'F' : 'fish sauce', #
'G' : 'garlic', #
'H' : 'champagne', #
'I' : 'icing', #
'J' : 'carrot juice', #
'K' : 'black olives', #
'L' : 'lemon juice', #
'M' : 'mint', #
'N' : 'cinnamon', #
'O' : 'olive oil', #
'P' : 'pickle juice', #
'Q' : 'cough syrup', #
'R' : 'rum', #
'S' : 'sparkling water', #
'T' : 'tomato juice', #
'U' : 'butter', #
'V' : 'vodka', #
'W' : 'whipped cream', #
'X' : 'mustard', #
'Y' : 'yeast', #
'Z' : 'lemon zest', #
'[' : 'dirt', #
'\\' : 'dust', #
']' : 'grass', #
'^' : 'squid ink', #
'_' : 'paint', #
'`' : 'horseradish', #
'a' : 'water', #
'b' : 'beer', #
'c' : 'milk chocolate', #
'd' : 'soy milk', #
'e' : 'egg yolk', #
'f' : 'flour', #
'g' : 'ginger', #
'h' : 'honey', #
'i' : 'ice cream', #
'j' : 'orange juice', #
'k' : 'green olives', #
'l' : 'lemonade', #
'm' : 'milk', #
'n' : 'vanilla extract', #
'o' : 'sunflower oil', #
'p' : 'shredded cheese', #
'q' : 'maple syrup', #
'r' : 'red wine', #
's' : 'sugar', #
't' : 'tea', #
'u' : 'cocoa powder', #
'v' : 'vinegar', #
'w' : 'white wine', #
'x' : 'tabasco', #
'y' : 'yoghurt', #
'z' : 'tonic water', #
'{' : 'ketchup', #
'|' : 'whisky', #
'}' : 'mayonnaise' #
}