-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdrinks.json
2537 lines (2537 loc) · 57.6 KB
/
drinks.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": "Trinidad Sour",
"ingredients": [
{
"unit": "ml",
"amount": "45",
"ingredient": "Angostura Bitters"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Orgeat Syrup"
},
{
"unit": "ml",
"amount": "22.5",
"ingredient": "Fresh Lemon Juice"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Rye Whisky"
}
],
"method": "Pour all ingredients into a cocktail shaker, shake well with ice, strain into a chilled cocktail glass.",
"garnish": [
"N/A"
]
},
{
"name": "Alexander",
"ingredients": [
{
"unit": "ml",
"amount": "30",
"ingredient": "Cognac"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Crème de Cacao (Brown)"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Fresh Cream"
}
],
"method": "Pour all ingredients into cocktail shaker filled with ice cubes. Shake and strain into a chilled cocktail glass.",
"garnish": [
"Sprinkle fresh ground nutmeg on top."
]
},
{
"name": "Americano",
"ingredients": [
{
"unit": "ml",
"amount": "30",
"ingredient": "Bitter Campari"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Sweet Red Vermouth"
},
{
"unit": "splash",
"amount": "A",
"ingredient": "of Soda Water"
}
],
"method": "Mix the ingredients directly in an old fashioned glass filled with ice cubes. Add a splash of Soda Water. Stir gently.",
"garnish": [
"Garnish with half orange slice",
"a lemon zest."
]
},
{
"name": "Angel Face",
"ingredients": [
{
"unit": "",
"amount": "",
"ingredient": "INGREDIENTS"
}
],
"method": "30 ml Gin\n30 ml Apricot Brandy\n30 ml Calvados",
"garnish": [
"Pour all ingredients into cocktail shaker filled with ice cubes. Shake",
"strain into a chilled cocktail glass."
]
},
{
"name": "Aviation",
"ingredients": [
{
"unit": "ml",
"amount": "45",
"ingredient": "Gin"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Maraschino Luxardo"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Fresh Lemon Juice"
},
{
"unit": "bar spoon",
"amount": "1",
"ingredient": "Crème de Violette"
}
],
"method": "Add all ingredients into a cocktail shaker. Shake with cracked ice and strain into a chilled cocktail glass.",
"garnish": [
"Optional Maraschino Cherry."
]
},
{
"name": "Barracuda",
"ingredients": [
{
"unit": "ml",
"amount": "45",
"ingredient": "Gold Rum"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Galliano"
},
{
"unit": "ml",
"amount": "60",
"ingredient": "Fresh Pineapple Juice"
},
{
"unit": "dash",
"amount": "1",
"ingredient": "Fresh Lime Juice"
},
{
"unit": "",
"amount": "",
"ingredient": "Top up with Prosecco"
}
],
"method": "Pour all ingredients into cocktail shaker except the Prosecco, shake well with ice, strain into chilled highball glass filled with ice and top up with Prosecco.",
"garnish": [
"Pineapple",
"Cherry, optional mint sprig for additional aroma."
]
},
{
"name": "Bee’s Knees",
"ingredients": [
{
"unit": "ml",
"amount": "52.5",
"ingredient": "Dry Gin"
},
{
"unit": "teaspoon",
"amount": "2",
"ingredient": "Honey Syrup"
},
{
"unit": "ml",
"amount": "22.5",
"ingredient": "Fresh Lemon Juice"
},
{
"unit": "ml",
"amount": "22.5",
"ingredient": "Fresh Orange Juice"
}
],
"method": "Stir honey with lemon and orange juices until it dissolves, add gin and shake with ice. Strain into a chilled cocktail glass.",
"garnish": [
"Optionally garnish with a lemon or orange zest."
]
},
{
"name": "Bellini",
"ingredients": [
{
"unit": "ml",
"amount": "100",
"ingredient": "Prosecco"
},
{
"unit": "ml",
"amount": "50",
"ingredient": "White Peach Puree"
}
],
"method": "Pour peach puree into the mixing glass with ice, add the Prosecco wine. Stir gently and pour in a chilled flute glass.",
"garnish": [
"N/A"
]
},
{
"name": "Between the Sheets",
"ingredients": [
{
"unit": "ml",
"amount": "30",
"ingredient": "White Rum"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Cognac"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Triple Sec"
},
{
"unit": "ml",
"amount": "20",
"ingredient": "Fresh Lemon Juice"
}
],
"method": "Add all ingredients into a cocktail shaker. Shake with ice and strain into a chilled cocktail glass.",
"garnish": [
"N/A"
]
},
{
"name": "Black Russian",
"ingredients": [
{
"unit": "ml",
"amount": "50",
"ingredient": "Vodka"
},
{
"unit": "ml",
"amount": "20",
"ingredient": "Coffee Liqueur"
}
],
"method": "Pour the ingredients into the old fashioned glass filled with ice cubes. Stir gently.",
"garnish": [
"N/A"
]
},
{
"name": "Bloody Mary",
"ingredients": [
{
"unit": "ml",
"amount": "45",
"ingredient": "Vodka"
},
{
"unit": "ml",
"amount": "90",
"ingredient": "Tomato Juice"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Fresh Lemon Juice"
},
{
"unit": "dash",
"amount": "2",
"ingredient": "Worcestershire Sauce"
},
{
"unit": "",
"amount": "",
"ingredient": "Tabasco, Celery Salt, Pepper (Up to taste)"
}
],
"method": "Stir gently all the ingredients in a mixing glass with ice, pour into rocks glass.\nNote:\nIf requested served with ice, pour into highball glass.",
"garnish": [
"Celery, Lemon Wedge (Optional)"
]
},
{
"name": "Boulevardier",
"ingredients": [
{
"unit": "ml",
"amount": "45",
"ingredient": "Bourbon or Rye Whiskey"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Bitter Campari"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Sweet Red Vermouth"
}
],
"method": "Pour all ingredients into mixing glass with ice cubes. Stir well. Strain into a chilled cocktail glass.",
"garnish": [
"Garnish with orange zest, optionally a lemon zest."
]
},
{
"name": "Bramble",
"ingredients": [
{
"unit": "ml",
"amount": "50",
"ingredient": "Gin"
},
{
"unit": "ml",
"amount": "25",
"ingredient": "Fresh Lemon Juice"
},
{
"unit": "ml",
"amount": "12,5",
"ingredient": "Sugar Syrup"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Crème de Mûre"
}
],
"method": "Pour all ingredients into a cocktail shaker except the Crème de Mûre, shake well with ice, strain into chilled old fashioned glass filled with crushed ice, then pour the blackberry liqueur (Crème de Mûre) over the top of the drink, in a circular motion.",
"garnish": [
"Garnish optionally with a lemon slice",
"blackberries."
]
},
{
"name": "Brandy Crusta",
"ingredients": [
{
"unit": "ml",
"amount": "52,5",
"ingredient": "Brandy"
},
{
"unit": "ml",
"amount": "7,5",
"ingredient": "Maraschino Luxardo"
},
{
"unit": "bar spoon",
"amount": "1",
"ingredient": "Curacao"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Fresh Lemon Juice"
},
{
"unit": "bar spoon",
"amount": "1",
"ingredient": "Simple Syrup"
},
{
"unit": "dash",
"amount": "2",
"ingredient": "Aromatic Bitters"
}
],
"method": "Mix together all ingredients with ice cubes in a mixing glass and strain into prepared slim cocktail glass.",
"garnish": [
"Rub a slice of orange (or lemon) around the rim of the glass",
"dip it in pulverized white sugar, so that the sugar will adhere to the edge of the glass. Carefully curling place the orange/lemon peel around the inside of the glass."
]
},
{
"name": "Canchanchara",
"ingredients": [
{
"unit": "ml",
"amount": "60",
"ingredient": "Cuban Aguardiente"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Fresh Lime Juice"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Raw Honey"
},
{
"unit": "ml",
"amount": "50",
"ingredient": "Water"
}
],
"method": "Mix honey with water and lime juice and spread the mixture on the bottom and sides of the glass. Add cracked ice, and then the rum. End by energetically stirring from bottom to top.",
"garnish": [
"Lime wedge."
]
},
{
"name": "Caipirinha",
"ingredients": [
{
"unit": "ml",
"amount": "60",
"ingredient": "Cachaça"
},
{
"unit": "",
"amount": "",
"ingredient": "1 Lime cut into small wedges"
},
{
"unit": "",
"amount": "",
"ingredient": "4 Teaspoons White Cane Sugar"
}
],
"method": "Place lime and sugar into a double old fashioned glass and muddle gently. Fill the glass with cracked ice and add Cachaça. Stir gently to involve ingredients.\nNote:\nCAIPIROSKA – Instead of Cachaça use Vodka;",
"garnish": [
"N/A"
]
},
{
"name": "Casino",
"ingredients": [
{
"unit": "ml",
"amount": "40",
"ingredient": "Old Tom Gin"
},
{
"unit": "ml",
"amount": "10",
"ingredient": "Maraschino Luxardo"
},
{
"unit": "ml",
"amount": "10",
"ingredient": "Fresh Lemon Juice"
},
{
"unit": "dash",
"amount": "2",
"ingredient": "Orange Bitters"
}
],
"method": "Pour all ingredients into cocktails shaker, shake well with ice, strain into chilled rocks glass with ice.",
"garnish": [
"Garnish with lemon zest",
"a maraschino cherry."
]
},
{
"name": "Champagne Cocktail",
"ingredients": [
{
"unit": "ml",
"amount": "90",
"ingredient": "Chilled Champagne"
},
{
"unit": "ml",
"amount": "10",
"ingredient": "Cognac"
},
{
"unit": "dash",
"amount": "2",
"ingredient": "Angostura bitters"
},
{
"unit": "drop",
"amount": "Few",
"ingredient": "of Grand Marnier (optional)"
},
{
"unit": "",
"amount": "",
"ingredient": "1 sugar cube"
}
],
"method": "Place the sugar cube with 2 dashes of bitters in a large Champagne glass, add the cognac. Pour gently chilled Champagne.",
"garnish": [
"Garnish with orange zest",
"maraschino cherry."
]
},
{
"name": "Clover Club",
"ingredients": [
{
"unit": "ml",
"amount": "45",
"ingredient": "Gin"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Raspberry Syrup"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Fresh Lemon Juice"
},
{
"unit": "drop",
"amount": "Few",
"ingredient": "of Egg White"
}
],
"method": "Pour all ingredients into cocktails shaker, shake well with ice, strain into chilled cocktail glass.",
"garnish": [
"Fresh raspberries."
]
},
{
"name": "Corpse Reviver #2",
"ingredients": [
{
"unit": "ml",
"amount": "30",
"ingredient": "Gin"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Cointreau"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Lillet Blanc"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Fresh Lemon Juice"
},
{
"unit": "dash",
"amount": "1",
"ingredient": "Absinthe"
}
],
"method": "Pour all ingredients into shaker with ice. Shake well and strain in chilled cocktail glass.",
"garnish": [
"Garnish with orange zest"
]
},
{
"name": "Cosmopolitan",
"ingredients": [
{
"unit": "ml",
"amount": "40",
"ingredient": "Vodka Citron"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Cointreau"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Fresh Lime Juice"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Cranberry Juice"
}
],
"method": "Add all ingredients into a cocktail shaker filled with ice. Shake well and strain into a large cocktail glass.",
"garnish": [
"Garnish with a lemon twist."
]
},
{
"name": "Cuba Libre",
"ingredients": [
{
"unit": "ml",
"amount": "50",
"ingredient": "White Rum"
},
{
"unit": "ml",
"amount": "120ml Coca Cola"
},
{
"unit": "ml",
"amount": "10",
"ingredient": "Fresh Lime Juice"
}
],
"method": "Build all ingredients in a highball glass filled with ice.",
"garnish": [
"Garnish with lime wedge."
]
},
{
"name": "Daiquiri",
"ingredients": [
{
"unit": "ml",
"amount": "60",
"ingredient": "White Cuban Ron"
},
{
"unit": "ml",
"amount": "20",
"ingredient": "Fresh Lime Juice"
},
{
"unit": "bar spoon",
"amount": "2 Bar Spoons Superfine Sugar"
}
],
"method": "In a cocktail shaker add all ingredients. Stir well to dissolve the sugar. Add ice and shake. Strain into chilled cocktail glass.",
"garnish": [
"N/A"
]
},
{
"name": "Dark ‘n’ stormy",
"ingredients": [
{
"unit": "ml",
"amount": "60",
"ingredient": "Goslings Rum"
},
{
"unit": "ml",
"amount": "100",
"ingredient": "Ginger Beer"
}
],
"method": "In a highball glass filled with ice pour the ginger beer and top floating with the Rum.",
"garnish": [
"Garnish with a lime wedge or slice."
]
},
{
"name": "Dry Martini",
"ingredients": [
{
"unit": "ml",
"amount": "60",
"ingredient": "Gin"
},
{
"unit": "ml",
"amount": "10",
"ingredient": "Dry Vermouth"
}
],
"method": "Pour all ingredients into mixing glass with ice cubes. Stir well. Strain into chilled martini cocktail glass.",
"garnish": [
"Squeeze oil from lemon peel onto the drink, or garnish with green olives if requested."
]
},
{
"name": "Espresso Martini",
"ingredients": [
{
"unit": "ml",
"amount": "50",
"ingredient": "Vodka"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Kahlúa"
},
{
"unit": "ml",
"amount": "10",
"ingredient": "Sugar Syrup"
},
{
"unit": "",
"amount": "",
"ingredient": "1 strong Espresso"
}
],
"method": "Pour all ingredients into cocktail shaker, shake well with ice, strain into chilled cocktail glass.",
"garnish": [
"N/A"
]
},
{
"name": "Fernandito",
"ingredients": [
{
"unit": "ml",
"amount": "50",
"ingredient": "Fernet Branca"
},
{
"unit": "",
"amount": "",
"ingredient": "Fill up with Cola"
}
],
"method": "Pour the Fernet Branca into a double old fashioned glass with ice, fill the glass up with Cola. Gently stir.",
"garnish": [
"N/A"
]
},
{
"name": "French 75",
"ingredients": [
{
"unit": "ml",
"amount": "30",
"ingredient": "Gin"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Fresh Lemon Juice"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Sugar Syrup"
},
{
"unit": "ml",
"amount": "60",
"ingredient": "Champagne"
}
],
"method": "Pour all the ingredients, except Champagne, into a shaker. Shake well and strain into a Champagne flute. Top up with Champagne. Stir gently.",
"garnish": [
"N/A"
]
},
{
"name": "French Connection",
"ingredients": [
{
"unit": "ml",
"amount": "35",
"ingredient": "Cognac"
},
{
"unit": "ml",
"amount": "35",
"ingredient": "Amaretto"
}
],
"method": "Pour all ingredients directly into an old fashioned glass filled with ice cubes. Stir gently.",
"garnish": [
"N/A"
]
},
{
"name": "French Martini",
"ingredients": [
{
"unit": "ml",
"amount": "45",
"ingredient": "Vodka"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Raspberry Liqueur"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Fresh Pineapple Juice"
}
],
"method": "Pour all ingredients into cocktail shaker, shake well with ice, strain into chilled cocktail glass.",
"garnish": [
"Squeeze oil from lemon peel onto the drink."
]
},
{
"name": "Gin Fizz",
"ingredients": [
{
"unit": "ml",
"amount": "45",
"ingredient": "Gin"
},
{
"unit": "ml",
"amount": "30",
"ingredient": "Fresh Lemon Juice"
},
{
"unit": "ml",
"amount": "10",
"ingredient": "Simple Syrup"
},
{
"unit": "",
"amount": "",
"ingredient": "Splash of Soda Water"
}
],
"method": "Shake all ingredients with ice except soda water. Pour into thin tall Tumbler glass , top with a splash soda water.",
"garnish": [
"Garnish with a lemon slice, optional lemon zest."
]
},
{
"name": "Golden Dream",
"ingredients": [
{
"unit": "ml",
"amount": "20",
"ingredient": "Galliano"
},
{
"unit": "ml",
"amount": "20",
"ingredient": "Triple Sec"
},
{
"unit": "ml",
"amount": "20",
"ingredient": "Fresh Orange Juice"
},
{
"unit": "ml",
"amount": "10",
"ingredient": "Fresh Cream"
}
],
"method": "Pour all ingredients into shaker filled with ice. Shake briskly for few seconds. Strain into chilled cocktail glass.",
"garnish": [
"N/A"
]
},
{
"name": "Grasshopper",
"ingredients": [
{
"unit": "ml",
"amount": "20",
"ingredient": "Crème de Cacao (White)"
},
{
"unit": "ml",
"amount": "20",
"ingredient": "Crème de Menthe (Green)"
},
{
"unit": "ml",
"amount": "20",
"ingredient": "Fresh Cream"
}
],
"method": "Pour all ingredients into shaker filled with ice.\nShake briskly for few seconds. Strain into chilled cocktail glass.",
"garnish": [
"N/A, optional mint leaf"
]
},
{
"name": "Hanky Panky",
"ingredients": [
{
"unit": "ml",
"amount": "45",
"ingredient": "London Dry Gin"
},
{
"unit": "ml",
"amount": "45",
"ingredient": "Sweet Red Vermouth"
},
{
"unit": "ml",
"amount": "7.5",
"ingredient": "Fernet Branca"
}
],
"method": "Pour all ingredients into mixing glass with ice cubes. Stir well. Strain into chilled cocktail glass.",
"garnish": [
"Orange zest."
]
},
{
"name": "Hemingway Special",
"ingredients": [
{
"unit": "ml",
"amount": "60",
"ingredient": "Rum"
},
{
"unit": "ml",
"amount": "40",
"ingredient": "Grapefruit Juice"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Maraschino Luxardo"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Fresh Lime"
}
],
"method": "Pour all ingredients into a shaker with ice. Shake well and strain into a large cocktail glass.",
"garnish": [
"N/A"
]
},
{
"name": "Horse’s Neck",
"ingredients": [
{
"unit": "ml",
"amount": "40",
"ingredient": "Cognac"
},
{
"unit": "ml",
"amount": "120",
"ingredient": "Ginger Ale"
},
{
"unit": "",
"amount": "",
"ingredient": "Dash of Angostura Bitters (optional)"
}
],
"method": "Pour Cognac and ginger ale directly into a highball glass with ice cubes. Stir gently.\nIf preferred, add dashes of Angostura Bitter.",
"garnish": [
"Garnish with a rind of one lemon spiral."
]
},
{
"name": "Illegal",
"ingredients": [
{
"unit": "ml",
"amount": "30",
"ingredient": "Espadin Mezcal"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Jamaica Overproof White Rum"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Falernum"
},
{
"unit": "bar spoon",
"amount": "1",
"ingredient": "Maraschino Luxardo"
},
{
"unit": "ml",
"amount": "22.5",
"ingredient": "Fresh Lime Juice"
},
{
"unit": "ml",
"amount": "15",
"ingredient": "Simple Syrup"
},
{
"unit": "drop",
"amount": "Few",
"ingredient": "of Egg White (Optional)"
}
],
"method": "Pour all ingredients into the shaker. Shake vigorously with ice. Strain into a chilled cocktail glass, or “on the rocks” in a traditional clay or terracotta mug.",
"garnish": [
"N/A"
]
},
{