-
Notifications
You must be signed in to change notification settings - Fork 50
/
recipes.json
1287 lines (1287 loc) · 40.8 KB
/
recipes.json
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
[
{ "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": "Syrup",
"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": "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": "Vermouth",
"label": "Dry vermouth" },
{ "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": "Whiskey",
"label": "Bourbon or rye whiskey" },
{ "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": "Vermouth",
"label": "Dry vermouth" },
{ "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": "Syrup",
"label": "Grenadine" },
{ "unit": "cl",
"amount": 1,
"ingredient": "Syrup",
"label": "Sugar syrup" },
{ "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": "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": "Whiskey",
"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": "Whiskey",
"label": "Rye whiskey" },
{ "unit": "cl",
"amount": 2,
"ingredient": "Vermouth",
"label": "Red vermouth" },
{ "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 liqueur",
"label": "White Créme de Cacao" },
{ "unit": "cl",
"amount": 3,
"ingredient": "Créme liqueur",
"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": "Syrup",
"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": "Whiskey",
"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 liqueur",
"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 liqueur",
"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": "Syrup",
"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" },
{ "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" },
{ "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" },
{ "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": "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" },
{ "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": "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": "Syrup",
"label": "Grenadine" },
{ "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 liqueur",
"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": "Whiskey",
"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": "Vermouth",
"label": "Dry vermouth" },