-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdrinks.py
115 lines (114 loc) · 2.49 KB
/
drinks.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
drink_list = [
{
"name": "Rum og Cola",
"ingredients": {
"rum": 50
},
'add': "Tilføj Cola",
"image": "images/rom_coke.png"
}, {
"name": "Gin og Tonic",
"ingredients": {
"gin": 50
},
'add': "Tilføj Tonic",
"image": "images/gin_tonic.png"
}, {
"name": "Long Island",
"ingredients": {
"gin": 25,
"rum": 25,
"vodka": 25,
"tequila": 25
},
'add': "Tilføj Cola og Lime mixer",
"image": "images/long_island.png"
}, {
"name": "Screwdriver",
"ingredients": {
"vodka": 50,
"oj": 150
},
'add': "",
"image": "images/screwdriver.png"
}, {
"name": "Vodka Tranebær",
"ingredients": {
"vodka": 50,
"cj": 150
},
'add': "",
"image": "images/vodka_cranberry.png"
}, {
"name": "Gin og Juice",
"ingredients": {
"gin": 50,
"oj": 150
},
'add': "",
"image": "images/gin_juice.png"
}, {
"name": "Tequila Sunrise",
"ingredients": {
"tequila": 40,
"oj": 120
},
'add': "Tilføj Grenadine",
"image": "images/tequila_sunrise.png"
}, {
"name": "Tranebær Margarita",
"ingredients": {
"tequila": 30,
"cointreau": 30,
"cj": 140
},
'add': "",
"image": "images/cranberry_margarita.png"
}, {
"name": "Sex on the beach",
"ingredients": {
"vodka": 50,
"cj": 75,
"oj": 75
},
'add': "",
"image": "images/sex_on_the_beach.png"
}, {
"name": "Blue Lagoon",
'ingredients': {
'vodka': 50
},
'add': "Tilføj Blue Curacao og Lemon sodavand",
'image': "images/blue_lagoon.png"
}, {
"name": "Electric Iced Tea Cocktail",
'ingredients': {
'vodka': 15,
'rum': 15,
'tequila': 15,
'gin': 15
},
'add': "Blue Curacao og Lemon sodavand",
'image': "images/electric_iced_tea.png"
}, {
"name": "Gin Hass",
'ingredients': {
'gin': 50
},
'add': "Tilføj Lemon sodavand, Mango mixer og lidt Lime mixer",
'image': "images/gin_hass.png"
}
]
drink_options = [
{"name": "Gin", "value": "gin", "type": "alcohol"},
{"name": "Rum", "value": "rum", "type": "alcohol"},
{"name": "Vodka", "value": "vodka", "type": "alcohol"},
{"name": "Tequila", "value": "tequila", "type": "alcohol"},
{"name": "Cointreau", "value": "cointreau", "type": "alcohol"},
{"name": "Tonic Water", "value": "tonic", "type": "mixer"},
{"name": "Coke", "value": "coke", "type": "soda"},
{"name": "Grenadine", "value": "grenadine", "type": "mixer"},
{"name": "Cranberry Juice", "value": "cj", "type": "mixer"},
{"name": "Orange Juice", "value": "oj", "type": "mixer"},
{"name": "Lemon", "value": "lemon", "type": "soda"},
]