-
-
Notifications
You must be signed in to change notification settings - Fork 164
Expand file tree
/
Copy pathalcoholism.js
More file actions
123 lines (109 loc) · 3.25 KB
/
Copy pathalcoholism.js
File metadata and controls
123 lines (109 loc) · 3.25 KB
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
116
117
118
119
120
121
122
123
addIngredient("tequila", {
color: "#f4d59a",
innerColor: "#f9e9c1",
type: "liquid",
shape: "liquid",
keywords: "alcohol,liquid",
});
addIngredient("white wine", {
color: "#f6e27a",
innerColor: "#fff7cc",
type: "liquid",
shape: "liquid",
keywords: "alcohol,wine,white,liquid",
});
addIngredient("gin", {
color: "#d8eaf2",
innerColor: "#f0faff",
type: "liquid",
shape: "liquid",
keywords: "alcohol,gin,liquid",
});
addIngredient("tonic water", {
color: "#eafaf4",
innerColor: "#ffffff",
type: "liquid",
shape: "liquid",
keywords: "tonic,water,liquid",
});
addIngredient("rose", {
name: "rosé",
color: "#f9c5d1",
innerColor: "#ffe6ec",
type: "liquid",
shape: "liquid",
keywords: "alcohol,wine,rose,liquid",
});
addIngredient("champagne", {
color: "#f7e7ad",
innerColor: "#fff5cc",
type: "liquid",
shape: "liquid",
keywords: "alcohol,wine,sparkling,champagne,liquid",
});
addIngredient("campari", {
color: "#d8242f",
innerColor: "#f7544d",
type: "liquid",
shape: "liquid",
keywords: "alcohol,campari,liquid",
});
addIngredient("mojito", {
color: "#d0f6d5",
innerColor: "#b7f9c0",
type: "liquid",
shape: "liquid",
keywords: "alcohol.liquid",
});
addIngredient("dry vermouth", {
color: "#f0e7b6",
innerColor: "#fff7db",
type: "liquid",
shape: "liquid",
keywords: "alcohol,vermouth,dry,liquid",
});
addIngredient("olive juice", {
color: "#86b38c",
innerColor: "#7cc65d",
type: "liquid",
shape: "liquid",
keywords: "olive,juice,liquid",
});
addIngredient("margarita", {
color: "#ccd2ca",
innerColor: "#fff7cc",
type: "liquid",
shape: "liquid",
keywords: "alcohol",
});
addIngredient("contreau", {
color: "#e4a851",
innerColor: "#eb9b3b",
type: "liquid",
shape: "liquid",
keywords: "alcohol,orange",
});
addRecipe("gin+tonic_water","gin_and_tonic")
addRecipe("champagne+orange_juice","mimosas")
addRecipe("champagne+gin+lemon_juice","french_75")
addRecipe("white_wine+campari+seltzer","bicicletta")
addRecipe("whiskey+lemon_juice+wine","new_york_sour")
addRecipe("whiskey+citric_acid+wine","new_york_sour")
addRecipe("white_wine+seltzer","white_wine_spritzer")
addRecipe("white_wine+mojito","white_wine_mojito")
addRecipe("rum+dry_vermouth+campari","negroni")
addRecipe("gin+vodka?+dry_vermouth","martini")
addRecipe("vodka+gin?+dry_vermouth","martini")
addRecipe("martini+coffee","espresso_martini")
addRecipe("martini+coffee_ground","espresso_martini")
addRecipe("martini+olive_juice","dirty_martini")
addRecipe("martini+lemon_juice","lemon_drop")
addRecipe("martini+apple_juice","apple_martini")
addRecipe("martini+chocolate_milk","chocolate_martini")
addRecipe("gin+rose+lime_juice","gimlet")
addRecipe("rum+pineapple+coconut_milk","pina_colada")
addRecipe("vodka+latte","white_russian")
addRecipe("whiskey+lemon_juice+contreau","sidecar")
addRecipe("tequila+lime_juice+seltzer","tequila_lime_soda")
addRecipe("vodka+rum+gin+tequila+contreau+soda+lemon_juice","long_island_iced_tea")
addRecipe("vodka+tequila+negroni+gin+contreau+white_wine_mojito+rose+champagne+whiskey+margarita+beer+sake","ALCOHOLISM BOMB")