summaryrefslogtreecommitdiff
path: root/recipes-fix.json
blob: fedad5c22c1a084ab672eabf1c7cab3bb3ddebe7 (plain)
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
[
  { "name": "Vesper",
    "glass": "martini",
    "category": "Before Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 6,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 0.75,
        "ingredient": "Lillet Blonde" }
    ],
    "garnish": "Lemon twist",
    "preparation": "Shake and strain into a chilled cocktail glass." },
  { "name": "Bacardi",
    "glass": "martini",
    "category": "Before Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "White rum",
        "label": "Bacardi White Rum" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Lime juice" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Grenadine",
        "label": "Grenadine" }
    ],
    "preparation": "Shake with ice cubes. Strain into chilled cocktail glass." },
  { "name": "Negroni",
    "glass": "old-fashioned",
    "category": "Before Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Campari" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Sweet vermouth",
        "label": "Sweet red vermouth" }
    ],
    "garnish": "Half an orange slice",
    "preparation": "Build into old-fashioned glass filled with ice. Stir gently." },
  { "name": "Rose",
    "glass": "martini",
    "ingredients": [
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Kirsch" },
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Dry vermouth",
        "label": "Dry vermouth" },
      { "ingredient": "Strawberry syrup" },
      { "special": "3 dashes Strawberry syrup" }
    ],
    "preparation": "Stir all ingredients with ice and strain into a cocktail glass." },
  { "name": "Old Fashioned",
    "glass": "old-fashioned",
    "category": "Before Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Bourbon",
        "label": "Bourbon or rye whiskey" },
      { "ingredient": "Angostura bitters" },
      { "special": "2 dashes Angostura Bitters" },
      { "special": "1 sugar cube" },
      { "special": "Few dashes plain water" }
    ],
    "garnish": "Orange slice and cherry",
    "preparation": "Place sugar cube in old-fashioned glass and saturate with bitters, add a dash of plain water. Muddle until dissolve. Fill the glass with ice cubes and add whisky." },
  { "name": "Tuxedo",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Gin",
        "label": "Old Tom Gin" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Dry vermouth",
        "label": "Dry vermouth" },
      { "ingredient": "Maraschino" },
      { "ingredient": "Absinthe" },
      { "ingredient": "Orange bitters" },
      { "special": "1/2 bar spoon Maraschino" },
      { "special": "1/4 bar spoon Absinthe" },
      { "special": "3 dashes Orange Bitters" }
    ],
    "garnish": "Cherry and lemon twist",
    "preparation": "Stir all ingredients with ice and strain into cocktail glass." },
  { "name": "Mojito",
    "glass": "collins",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4,
        "ingredient": "White rum",
        "label": "White Cuban Rum" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Lime juice" },
      { "special": "6 Mint sprigs" },
      { "special": "2 teaspoons white sugar" },
      { "special": "Soda water" }
    ],
    "garnish": "Mint leaves and lemon slice",
    "preparation": "Muddle mint sprigs with sugar and lime juice. Add splash of soda water and fill glass with cracked ice. Pour rum and top with soda water. Serve with straw." },
  { "name": "Horse's Neck",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Cognac" },
      { "unit": "cl",
        "amount": 12,
        "ingredient": "Ginger ale" },
      { "special": "Dash of Angostura bitters (optional)" }
    ],
    "garnish": "Lemon twist",
    "preparation": "Build into highball glass with ice cubes. Stir gently. If required, add dashes of Angostura bitters." },
  { "name": "Planter's Punch",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Dark rum" },
      { "unit": "cl",
        "amount": 3.5,
        "ingredient": "Orange juice" },
      { "unit": "cl",
        "amount": 3.5,
        "ingredient": "Pineapple juice" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Lemon juice" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Grenadine",
        "label": "Grenadine" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Syrup",
        "label": "Sugar syrup" },
      { "ingredient": "Angostura bitters" },
      { "special": "3 to 4 dashes Angostura bitters" }
    ],
    "garnish": "Pineapple slice and a cherry",
    "preparation": "Pour all ingredients, except the bitters, into shaker filled with ice. Shake. Pour into large glass, filled with ice. Add Angostura bitters, “on top”." },
  { "name": "Sea Breeze",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 12,
        "ingredient": "Cranberry juice" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Grapefruit juice" }
    ],
    "garnish": "Lime wedge",
    "preparation": "Build all ingredients in a rock glass filled with ice." },
  { "name": "Pisco Sour",
    "glass": "old-fashioned",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Pisco" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Lemon juice" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Syrup",
        "label": "Sugar syrup" },
      { "special": "1 raw egg white (small egg)" }
    ],
    "preparation": "Shake and strain into a chilled champagne flute. Dash some Angostura bitters on top." },
  { "name": "Long Island Iced Tea",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Tequila" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "White rum" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Triple Sec" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 2.5,
        "ingredient": "Lemon juice" },
      { "unit": "cl",
        "amount": 3.0,
        "ingredient": "Syrup",
        "label": "Gomme syrup" },
      { "special": "1 dash of Cola" }
    ],
    "garnish": "Lemon twist",
    "preparation": "Add all ingredients into highball glass filled with ice. Stir gently. Serve with straw." },
  { "name": "Clover Club",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Raspberry syrup",
        "label": "Raspberry syrup" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lemon juice" },
      { "special": "Few drops of Egg White" }
    ],
    "preparation": "Shake with ice cubes. Strain into cocktail glass." },
  { "name": "Angel Face",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Apricot brandy" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Calvados" }
    ],
    "preparation": "Shake with ice cubes. Strain into a cocktail glass." },
  { "name": "Mimosa",
    "glass": "champagne-flute",
    "category": "Sparkling Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 7.5,
        "ingredient": "Champagne" },
      { "unit": "cl",
        "amount": 7.5,
        "ingredient": "Orange juice" }
    ],
    "garnish": "Optional orange twist",
    "preparation": "Pour orange juice into flute and gently pour Champagne. Stir gently. Note: Buck's Fizz is a very similar cocktail but made of two parts champagne to one part orange juice." },
  { "name": "Whiskey Sour",
    "glass": "old-fashioned",
    "category": "Before Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Bourbon",
        "label": "Bourbon whiskey" },
      { "unit": "cl",
        "amount": 3.0,
        "ingredient": "Lemon juice" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Syrup",
        "label": "Sugar syrup" }
    ],
    "garnish": "Half an orange slice and cherry",
    "preparation": "Dash egg white (Optional: if used shake little harder to foam up the egg white). Pour all ingredients into cocktail shaker filled with ice. Shake. Strain into cocktail glass. If served ‘On the rocks’, strain ingredients into old-fashioned glass filled with ice." },
  { "name": "Screwdriver",
    "glass": "highball",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 5,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 10,
        "ingredient": "Orange juice" }
    ],
    "garnish": "Orange slice",
    "preparation": "Build into a highball glass filled with ice. Stir gently." },
  { "name": "Cuba Libre",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 5,
        "ingredient": "White rum" },
      { "unit": "cl",
        "amount": 12,
        "ingredient": "Cola" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Lime juice" }
    ],
    "garnish": "Lime wedge",
    "preparation": "Build all ingredients in a highball glass filled with ice." },
  { "name": "Manhattan",
    "glass": "martini",
    "category": "Before Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 5,
        "ingredient": "Rye",
        "label": "Rye whiskey" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Sweet vermouth",
        "label": "Red vermouth" },
      { "ingredient": "Angostura bitters" },
      { "special": "1 dash Angostura Bitters" }
    ],
    "garnish": "Cherry",
    "preparation": "Stir in mixing glass with ice cubes. Strain into chilled cocktail glass." },
  { "name": "Porto Flip",
    "glass": "martini",
    "category": "After Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Cognac" },
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Red Port" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Egg yolk" }
    ],
    "preparation": "Shake with ice cubes. Strain into cocktail glass. Sprinkle with fresh ground nutmeg." },
  { "name": "Gin Fizz",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Lemon juice" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Syrup",
        "label": "Sugar syrup" },
      { "unit": "cl",
        "amount": 8,
        "ingredient": "Soda water" }
    ],
    "garnish": "Lemon slice",
    "preparation": "Shake all ingredients with ice cubes, except soda water. Pour into tumbler. Top with soda water." },
  { "name": "Espresso Martini",
    "glass": "martini",
    "category": "After Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 5,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Coffee liqueur",
        "label": "Kahlúa" },
      { "special": "Sugar syrup (according to individual preference of sweetness)" },
      { "special": "1 short strong Espresso" }
    ],
    "preparation": "Shake and strain into a chilled cocktail glass." },
  { "name": "Margarita",
    "glass": "margarita",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 3.5,
        "ingredient": "Tequila" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Triple Sec",
        "label": "Cointreau" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lime juice" }
    ],
    "preparation": "Shake with ice cubes. Strain into cocktail glass rimmed with salt (note:Fruit Margarita - blend selected fruit with the above recipe)." },
  { "name": "French 75",
    "glass": "champagne-tulip",
    "category": "Sparkling Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lemon juice" },
      { "special": "2 dashes Sugar syrup" },
      { "unit": "cl",
        "amount": 6,
        "ingredient": "Champagne" }
    ],
    "preparation": "Shake with ice cubes, except for champagne. Strain into a champagne flute. Top up with champagne. Stir gently." },
  { "name": "Yellow Bird",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 3,
        "ingredient": "White rum" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Galliano" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Triple Sec" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lime juice" }
    ],
    "preparation": "Shake and strain into a chilled cocktail glass." },
  { "name": "Pina Colada",
    "glass": "hurricane",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 3,
        "ingredient": "White rum" },
      { "unit": "cl",
        "amount": 9,
        "ingredient": "Pineapple juice" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Coconut milk" }
    ],
    "garnish": "Pineapple slice and a cherry",
    "preparation": "Blend all the ingredients with ice in a electric blender, pour into a large goblet or Hurricane glass and serve with straws." },
  { "name": "Aviation",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Cherry liqueur",
        "label": "Maraschino" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lemon juice" }
    ],
    "preparation": "Shake and strain into a chilled cocktail glass." },
  { "name": "Bellini",
    "glass": "champagne-flute",
    "category": "Sparkling Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 10,
        "ingredient": "Prosecco" },
      { "unit": "cl",
        "amount": 5,
        "ingredient": "Peach puree" }
    ],
    "preparation": "Pour peach puree into chilled glass and add sparkling wine. Stir gently. Variations: Puccini (fresh mandarin juice), Rossini (fresh strawberry puree), Tintoretto (fresh pomegranate juice)" },
  { "name": "Grasshopper",
    "glass": "martini",
    "category": "After Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Créme de Cacao",
        "label": "White Créme de Cacao" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Créme de Menthe",
        "label": "Green Créme de Menthe" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Cream" }
    ],
    "preparation": "Shake with ice cubes. Strain into chilled cocktail glass." },
  { "name": "Tequila Sunrise",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Tequila" },
      { "unit": "cl",
        "amount": 9,
        "ingredient": "Orange juice" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Grenadine",
        "label": "Grenadine" }
    ],
    "garnish": "Orange slice and a cherry",
    "preparation": "Build tequila and orange juice into highball with ice cubes. Add a splash of grenadine to create sunrise effect. Do not stir." },
  { "name": "Daiquiri",
    "glass": "martini",
    "category": "Before Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "White rum" },
      { "unit": "cl",
        "amount": 2.5,
        "ingredient": "Lime juice" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Syrup",
        "label": "Simple syrup" }
    ],
    "preparation": "Shake and strain into a cocktail glass." },
  { "name": "Rusty Nail",
    "glass": "old-fashioned",
    "category": "After Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Scotch",
        "label": "Scotch whisky" },
      { "unit": "cl",
        "amount": 2.5,
        "ingredient": "Drambuie" }
    ],
    "garnish": "Lemon twist",
    "preparation": "Build into old-fashioned glass filled with ice. Stir gently." },
  { "name": "B52",
    "glass": "shot",
    "category": "After Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Coffee liqueur",
        "label": "Kahlúa" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Cream liqueur",
        "label": "Baileys Irish Cream" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Triple Sec",
        "label": "Grand Marnier" }
    ],
    "preparation": "Layer ingredients one at a time starting with Kahlúa, followed by Baileys Irish Cream and top with Grand Marnier. Flame the Grand Marnier, serve while the flame is still on, accompanied with a straw on side plate." },
  { "name": "Stinger",
    "glass": "martini",
    "category": "After Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 5,
        "ingredient": "Cognac" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Créme de Menthe",
        "label": "White Créme de Menthe" }
    ],
    "preparation": "Stir in mixing glass with ice cubes. Strain into a cocktail glass." },
  { "name": "Golden Dream",
    "glass": "martini",
    "category": "After Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Galliano" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Triple Sec" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Orange juice" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Cream" }
    ],
    "preparation": "Shake with ice cubes. Strain into chilled cocktail glass." },
  { "name": "God Mother",
    "glass": "old-fashioned",
    "ingredients": [
      { "unit": "cl",
        "amount": 3.5,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 3.5,
        "ingredient": "DiSaronno" }
    ],
    "preparation": "Build into old fashioned glass filled with ice cubes. Stir gently." },
  { "name": "Spritz Veneziano",
    "glass": "old-fashioned",
    "category": "Sparkling Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 6,
        "ingredient": "Prosecco" },
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Aperol" },
      { "special": "Splash of Soda water" }
    ],
    "garnish": "Half an orange slice",
    "preparation": "Build into an old-fashioned glass filled with ice. Top with a splash of soda water." },
  { "name": "Bramble",
    "glass": "old-fashioned",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lemon juice" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Syrup",
        "label": "Sugar syrup" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Blackberry liqueur" }
    ],
    "garnish": "Lemon slice and two blackberries",
    "preparation": "Build over crushed ice, in a rock glass. Stir, then pour the blackberry liqueur over the top of the drink in a circular fashion." },
  { "name": "Alexander",
    "glass": "martini",
    "ingredients": [
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Cognac" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Créme de Cacao",
        "label": "Brown Créme de Cacao" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Cream" }
    ],
    "preparation": "Shake and strain into a chilled cocktail glass. Sprinkle with fresh ground nutmeg." },
  { "name": "Lemon Drop Martini",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 2.5,
        "ingredient": "Vodka",
        "label": "Citron Vodka" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Triple Sec" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lemon juice" }
    ],
    "garnish": "Lemon slice",
    "preparation": "Shake and strain into a chilled cocktail glass rimmed with sugar." },
  { "name": "French Martini",
    "glass": "martini",
    "category": "Before Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Raspberry liqueur" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Pineapple juice" }
    ],
    "preparation": "Stir in mixing glass with ice cubes. Strain into chilled cocktail glass. Squeeze oil from lemon peel onto the drink." },
  { "name": "Black Russian",
    "glass": "old-fashioned",
    "category": "After Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 5,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Coffee liqueur" }
    ],
    "preparation": "Build into old fashioned glass filled with ice cubes. Stir gently. Note: for White Russian, float fresh cream on the top and stir gently." },
  { "name": "Bloody Mary",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 9,
        "ingredient": "Tomato juice" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lemon juice" },
      { "special": "2 to 3 dashes of Worcestershire Sauce" },
      { "special": "Tabasco" },
      { "special": "Celery salt" },
      { "special": "Pepper" }
    ],
    "garnish": "Celery and optionally lemon wedge",
    "preparation": "Stir gently, pour all ingredients into highball glass." },
  { "name": "Mai-tai",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4,
        "ingredient": "White rum" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Dark rum" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Triple Sec",
        "label": "Orange Curaçao" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Orgeat",
        "label": "Orgeat syrup" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Lime juice" }
    ],
    "garnish": "Pineapple spear, mint leaves and lime wedge",
    "preparation": "Shake and strain into highball glass. Serve with straw." },
  { "name": "Barracuda",
    "glass": "margarita",
    "category": "Sparkling Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Dark rum",
        "label": "Gold rum" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Galliano" },
      { "unit": "cl",
        "amount": 6,
        "ingredient": "Pineapple juice" },
      { "ingredient": "Prosecco" },
      { "special": "1 dash Lime juice" },
      { "special": "Top with Prosecco" }
    ] },
  { "name": "Sex on the Beach",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Peach schnapps" },
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Cranberry juice" },
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Orange juice" }
    ],
    "garnish": "Orange slice",
    "preparation": "Build all ingredients in a highball glass filled with ice." },
  { "name": "Monkey Gland",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 5,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Orange juice" },
      { "ingredient": "Absinthe" },
      { "ingredient": "Grenadine" },
      { "special": "2 drops Absinthe" },
      { "special": "2 drops Grenadine" }
    ],
    "preparation": "Shake and strain into a chilled cocktail glass." },
  { "name": "Derby",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 6,
        "ingredient": "Gin" },
      { "ingredient": "Peach bitters" },
      { "special": "2 drops Peach Bitters" },
      { "special": "2 Fresh mint leaves" }
    ],
    "garnish": "Mint leaves",
    "preparation": "Stir in mixing glass with ice cubes. Strain into a cocktail glass." },
  { "name": "Sidecar",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 5,
        "ingredient": "Cognac" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Triple Sec" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Lemon juice" }
    ],
    "preparation": "Shake with ice cubes. Strain into cocktail glass." },
  { "name": "Irish Coffee",
    "glass": "hot-drink",
    "category": "Hot Drink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Irish whiskey",
        "label": "Irish whiskey" },
      { "unit": "cl",
        "amount": 9,
        "ingredient": "Hot coffee" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Cream" },
      { "special": "1 teaspoon of brown sugar" }
    ],
    "preparation": "Warm the Irish whiskey over a burner. Pour into the glass (for hot drink) hot coffee, and add a teaspoon of sugar. Float Cream on top." },
  { "name": "Sazerac",
    "glass": "old-fashioned",
    "category": "After Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 5,
        "ingredient": "Cognac" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Absinthe" },
      { "ingredient": "Peychaud's bitters" },
      { "special": "1 sugar cube" },
      { "special": "2 dashes Peychaud’s bitters" }
    ],
    "garnish": "Lemon twist",
    "preparation": "Rinse a chilled old-fashioned glass with the absinthe, add crushed ice and set it aside. Stir the remaining ingredients over ice and set it aside. Discard the ice and any excess absinthe from the prepared glass, and strain the drink into the glass. Note: The original recipe changed after the American Civil War, rye whiskey substituted cognac as it became hard to obtain." },
  { "name": "Americano",
    "glass": "old-fashioned",
    "category": "Before Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Campari" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Sweet vermouth",
        "label": "Red vermouth" },
      { "special": "A splash of soda water" }
    ],
    "garnish": "Half an orange slice",
    "preparation": "Build into old fashioned glass filled with ice cubes. Add a splash of soda water." },
  { "name": "Singapore Sling",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Cherry liqueur" },
      { "unit": "cl",
        "amount": 0.75,
        "ingredient": "Triple Sec",
        "label": "Cointreau" },
      { "unit": "cl",
        "amount": 0.75,
        "ingredient": "DOM Bénédictine" },
      { "unit": "cl",
        "amount": 12.0,
        "ingredient": "Pineapple juice" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lime juice" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Grenadine",
        "label": "Grenadine" },
      { "ingredient": "Angostura bitters" },
      { "special": "1 dash Angostura bitters" }
    ],
    "garnish": "Pineapple slice and a cherry",
    "preparation": "Shake with ice cubes. Strain into highball glass." },
  { "name": "French Connection",
    "glass": "old-fashioned",
    "ingredients": [
      { "unit": "cl",
        "amount": 3.5,
        "ingredient": "Cognac" },
      { "unit": "cl",
        "amount": 3.5,
        "ingredient": "DiSaronno" }
    ],
    "preparation": "Build into old fashioned glass filled with ice cubes. Stir gently." },
  { "name": "Moscow Mule",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 12,
        "ingredient": "Ginger beer" },
      { "unit": "cl",
        "amount": 0.5,
        "ingredient": "Lime juice" },
      { "special": "1 slice lime in a highball glass" }
    ],
    "garnish": "Lime slice",
    "preparation": "Combine the vodka and ginger beer. Add lime juice." },
  { "name": "John Collins",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Lemon juice" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Syrup",
        "label": "Sugar syrup" },
      { "unit": "cl",
        "amount": 6,
        "ingredient": "Soda water" }
    ],
    "garnish": "Lemon slice and a cherry",
    "preparation": "Build into highball glass filled with ice. Stir gently. Add a dash of Angostura bitters. (Note: Use Old Tom Gin for Tom Collins)" },
  { "name": "Kir",
    "glass": "white-wine",
    "category": "Before Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 9,
        "ingredient": "Dry white wine" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Créme de Cassis",
        "label": "Créme de Cassis" }
    ],
    "preparation": "Pour Créme de Cassis into glass, top up with white wine. For Kir Royal: Use champagne instead of white wine." },
  { "name": "Mint Julep",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 6,
        "ingredient": "Bourbon",
        "label": "Bourbon whiskey" },
      { "special": "4 fresh mint sprigs" },
      { "special": "1 teaspoon powdered sugar" },
      { "special": "2 teaspoons water" }
    ],
    "garnish": "Mint sprig",
    "preparation": "In a highball glass gently muddle the mint, sugar and water. Fill the glass with cracked ice, add Bourbon and stir well until the glass is frost." },
  { "name": "Tommy's Margarita",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Tequila" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lime juice" },
      { "special": "2 bar spoons of Agave nectar" }
    ],
    "preparation": "Shake and strain into a chilled cocktail glass." },
  { "name": "Paradise",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 3.5,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Apricot brandy" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Orange juice" }
    ],
    "preparation": "Shake with ice cubes. Strain into chilled cocktail glass." },
  { "name": "Dirty Martini",
    "glass": "martini",
    "category": "Before Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 6,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Dry vermouth",
        "label": "Dry vermouth" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Olive juice" }
    ],
    "garnish": "Green olive",
    "preparation": "Stir in mixing glass with ice cubes. Strain into chilled martini glass." },
  { "name": "Champagne Cocktail",
    "glass": "champagne-flute",
    "category": "Sparkling Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 9,
        "ingredient": "Champagne" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Cognac" },
      { "ingredient": "Angostura bitters" },
      { "special": "2 dashes Angostura Bitters" },
      { "special": "1 sugar cube" }
    ],
    "garnish": "Orange slice and a cherry",
    "preparation": "Add dash of Angostura bitter onto sugar cube and drop it into champagne flute. Add cognac followed by pouring gently chilled champagne." },
  { "name": "Mary Pickford",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 6,
        "ingredient": "White rum" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Cherry liqueur",
        "label": "Maraschino" },
      { "unit": "cl",
        "amount": 6,
        "ingredient": "Pineapple juice" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Grenadine",
        "label": "Grenadine" }
    ],
    "preparation": "Shake and strain into a chilled large cocktail glass." },
  { "name": "Hemingway Special",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 6,
        "ingredient": "White rum" },
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Grapefruit juice" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Cherry liqueur",
        "label": "Maraschino" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lime juice" }
    ],
    "preparation": "Shake with ice cubes. Strain into a double cocktail glass." },
  { "name": "Dark 'n' Stormy",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 6,
        "ingredient": "Dark rum" },
      { "unit": "cl",
        "amount": 10,
        "ingredient": "Ginger beer" }
    ],
    "garnish": "Lime wedge",
    "preparation": "Build into highball glass filled with ice. Add rum first and top it with ginger beer." },
  { "name": "Ramos Fizz",
    "glass": "highball",
    "category": "Longdrink",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lime juice" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lemon juice" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Syrup",
        "label": "Sugar syrup" },
      { "unit": "cl",
        "amount": 6,
        "ingredient": "Cream" },
      { "ingredient": "Orange flower water" },
      { "special": "1 Egg white" },
      { "special": "3 dashes Orange flower water" },
      { "special": "2 drops Vanilla extract" },
      { "special": "Soda water" }
    ],
    "preparation": "Pour all ingredients (except soda) in a mixing glass, dry shake (no ice) for two minutes, add ice and hard shake for another minute. Strain into a highball glass without ice, top with soda." },
  { "name": "Russian Spring Punch",
    "glass": "highball",
    "category": "Sparkling Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 2.5,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 2.5,
        "ingredient": "Lemon juice" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Créme de Cassis",
        "label": "Créme de Cassis" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Syrup",
        "label": "Sugar syrup" }
    ],
    "garnish": "Lemon slice and a blackberry",
    "preparation": "Shake the ingredients and pour into highball glass. Top with Sparkling wine." },
  { "name": "God Father",
    "glass": "old-fashioned",
    "ingredients": [
      { "unit": "cl",
        "amount": 3.5,
        "ingredient": "Scotch",
        "label": "Scotch whisky" },
      { "unit": "cl",
        "amount": 3.5,
        "ingredient": "DiSaronno" }
    ],
    "preparation": "Build into old fashioned glass filled with ice cubes. Stir gently." },
  { "name": "Cosmopolitan",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Vodka",
        "label": "Citron Vodka" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Triple Sec",
        "label": "Cointreau" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Lime juice" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Cranberry juice" }
    ],
    "garnish": "Lime slice",
    "preparation": "Shake with ice cubes. Strain into a large cocktail glass." },
  { "name": "Dry Martini",
    "glass": "martini",
    "category": "Before Dinner Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 6,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Dry vermouth",
        "label": "Dry vermouth" }
    ],
    "preparation": "Stir in mixing glass with ice cubes. Strain into chilled martini glass. Squeeze oil from lemon peel onto the drink, or garnish with olive." },
  { "name": "Between the Sheets",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 3,
        "ingredient": "White rum" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Cognac" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Triple Sec" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Lemon juice" }
    ],
    "preparation": "Shake with ice cubes. Strain into chilled cocktail glass." },
  { "name": "Casino",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Gin",
        "label": "Old Tom Gin" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Cherry liqueur",
        "label": "Maraschino" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Orange bitters" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Lemon juice" }
    ],
    "garnish": "Lemon twist and a cherry",
    "preparation": "Shake with ice cubes. Strain into chilled cocktail glass." },
  { "name": "Caipirinha",
    "glass": "old-fashioned",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 5,
        "ingredient": "Cachaca" },
      { "special": "half fresh lime cut into 4 wedges" },
      { "special": "2 teaspoon sugar" }
    ],
    "preparation": "Place lime and sugar in old fashion glass and muddle. Fill glass with ice and Cachaca (note:Caipiroska- use Vodka instead of Cachaca)." },
  { "name": "Vampiro",
    "glass": "highball",
    "ingredients": [
      { "unit": "cl",
        "amount": 5,
        "ingredient": "Tequila",
        "label": "Silver Tequila" },
      { "unit": "cl",
        "amount": 7,
        "ingredient": "Tomato juice" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Orange juice" },
      { "unit": "cl",
        "amount": 1,
        "ingredient": "Lime juice" },
      { "special": "1 teaspoon clear honey" },
      { "special": "Half slice onion finely chopped" },
      { "special": "Few slices fresh red hot chili peppers" },
      { "special": "Few drops Worcestershire sauce" },
      { "special": "Salt" }
    ],
    "garnish": "Lime wedge and a green or red chili",
    "preparation": "Shake with ice cubes. Strain into a highball glass, filled with ice." },
  { "name": "Kamikaze",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Triple Sec" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Lime juice" }
    ],
    "preparation": "Shake and strain into a chilled cocktail glass." },
  { "name": "White Lady",
    "glass": "martini",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4,
        "ingredient": "Gin" },
      { "unit": "cl",
        "amount": 3,
        "ingredient": "Triple Sec" },
      { "unit": "cl",
        "amount": 2,
        "ingredient": "Lemon juice" }
    ],
    "preparation": "Shake with ice cubes. Strain into large cocktail glass." },
  { "name": "Harvey Wallbanger",
    "glass": "highball",
    "category": "All Day Cocktail",
    "ingredients": [
      { "unit": "cl",
        "amount": 4.5,
        "ingredient": "Vodka" },
      { "unit": "cl",
        "amount": 1.5,
        "ingredient": "Galliano" },
      { "unit": "cl",
        "amount": 9,
        "ingredient": "Orange juice" }
    ],
    "garnish": "Orance slice and a cherry",
    "preparation": "Build vodka and orange juice into a highball glass filled with ice. Stir gently and float Galliano on top." }
]