-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrecipes.json
More file actions
3862 lines (3862 loc) · 133 KB
/
recipes.json
File metadata and controls
3862 lines (3862 loc) · 133 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
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
[
{
"recipe_name": "Sprouting Chinese Foxglove Chicken",
"category": "Dish",
"ingredients": [
"and black chicken",
"sweetmeats",
"Sprouting Chinese foxglove"
],
"effects": [
"occasional vomiting and dysentery",
"night sweating and lack of appetite",
"heaviness of body and qi shortage",
"inability to stand upright for long periods",
"deficiency and injury of bone and marrow",
"treats pain of the back and loins"
],
"steps": "[Of the] ingredients first take the chicken, pluck, remove the giblets and clean. Cut up finely. Combine the Chinese foxglove and the sugar together evenly. Put the mixture inside the intestinal cavity of the chicken. Put it into a copper pot. Then put the copper pot into a cauldron and steam. When the dish has been cooked completely, remove the chicken and eat. Do not use salt or vinegar. Eat the meat. When it is gone also drink the broth.",
"method": [
"Steam"
],
"effect_category": [
"Musculoskeletal Issues",
"General Health and Wellness"
]
},
{
"recipe_name": "Lamb Honey Paste",
"category": "Paste",
"ingredients": [
"juice of sprouting Chinese foxglove",
"juice of sprouting ginger",
"crystallized honey",
"cooked sheep’s marrow",
"Cooked sheep’s fat"
],
"effects": [
"hectic fever due to yin deficiency",
"withered lung",
"coughing",
"waist pain (lumbago)",
"treats xulao diseases"
],
"steps": "[Of] ingredients, first decoct the sheep’s fat and bring to a boil. Then add the sheep’s marrow. Bring to a boil again, then add the honey and [sprouting] Chinese foxglove and sprouting ginger juice. Stir constantly. Slowly simmer and bring repeatedly to a boil over a small fire to make a paste. Take a spoonful dissolved in warm liquor every day on an empty stomach. Or make it into a soup or a congee and eat it. This is also acceptable.",
"method": [
"Pan-fry",
"Simmer"
],
"effect_category": [
"General Health and Wellness",
"Musculoskeletal Issues",
"Respiratory Issues"
]
},
{
"recipe_name": "Sheep Entrails Gruel",
"category": "Thick soup",
"ingredients": [
"lesser galangal",
"prepared mandarin orange peel",
"salted fruits",
"long pepper",
"black pepper",
"cow’s [milk] cheese",
"heart and lung",
"kidney",
"stomach",
"Sheep’s liver"
],
"effects": [
"damage to bone and marrow",
"treats consumptive disease damage to the kidney"
],
"steps": "[Of] ingredients, first take the sheep entrails and boil slowly until done over a slow fire. Take the juice and strain clean. Combine with sheep entrails [other than the stomach] and herbs, and stuff everything into the sheep’s belly. Sew up the opening. Put into a thin silk bag. Boil again. When done add five spices. Eat regularly as desired.",
"method": [
"Boil"
],
"effect_category": [
"Gastrointestinal Issues",
"General Health and Wellness"
]
},
{
"recipe_name": "Sheep Bone Congee",
"category": "Conge",
"ingredients": [
"salt",
"fresh ginger",
"tsaoko cardamom",
"lesser galangal",
"prepared mandarin orange peel",
"Sheep’s bones"
],
"effects": [
"treats xulao diseases and debility of waist and knee"
],
"steps": "Decoct ingredients into a juice over a slow fire in three dou [of water]. Strain. When the liquid has cleared, make a congee in the conventional way. It is also possible to make a soup from the bones.",
"method": [
"Simmer"
],
"effect_category": [
"General Health and Wellness",
"Musculoskeletal Issues"
]
},
{
"recipe_name": "Sheep’s Spine Gruel",
"category": "Conge",
"ingredients": [
"long pepper",
"tsaoko cardamom",
"broomrape",
"Sheep’s spine"
],
"effects": [
"damage to waist and kidney",
"treats a condition of chronic lower burner primordial qi deficiency"
],
"steps": "Boil ingredients in water into a juice. Filter and remove the dregs. Add spring onions, and five spices. Make a flour gruel. Eat.",
"method": [
"Simmer"
],
"effect_category": [
"General Health and Wellness",
"Gastrointestinal Issues"
]
},
{
"recipe_name": "White Sheep Kidney Gruel",
"category": "Thick soup",
"ingredients": [
"tsaoko cardamom",
"long pepper",
"prepared mandarin orange peel",
"black pepper",
"sheep’s fat",
"broomrape",
"White sheep’s kidney"
],
"effects": [
"debility of waist and knee",
"degeneration of the yang ways",
"treats xulao diseases"
],
"steps": "Combine ingredients. Add spring onions, salt and sauce, and boil into a soup. Add flour qizi. Make into a gruel in the normal way and eat.",
"method": [
"Boil"
],
"effect_category": [
"General Health and Wellness",
"Others",
"Musculoskeletal Issues"
]
},
{
"recipe_name": "Pig Kidney Congee",
"category": "Conge",
"ingredients": [
"grain-of-paradise",
"prepared mandarin orange peel",
"tsaoko cardamom",
"non-glutinous rice",
"Pig kidney"
],
"effects": [
"debility and ache of waist and knee",
"cures kidney xulao damage"
],
"steps": "[Of] ingredients, first take the pig kidney, the prepared mandarin orange peel etc. and boil to make a juice. Strain and remove the dregs. Add a small amount of liquor. Then add the rice to make a congee. Eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Gastrointestinal Issues",
"Musculoskeletal Issues",
"Others"
]
},
{
"recipe_name": "Chinese Matrimony Vine Fruit and Sheep’s Kidney Congee",
"category": "Conge",
"ingredients": [
"mutton",
"spring onions",
"sheep’s kidney",
"Chinese matrimony vine fruits"
],
"effects": [
"the five kinds of impairments and the seven wounds",
"ache of waist and foot",
"cures yang qi degeneration"
],
"steps": "Combine four ingredients evenly. Add the five spices and boil down into a juice. Add rice and decoct into a congee. Eat on an empty stomach.",
"method": [
"Simmer",
"Boil"
],
"effect_category": [
"Heat-clearing",
"Musculoskeletal Issues",
"General Health and Wellness"
]
},
{
"recipe_name": "Deer’s Kidney Gruel",
"category": "Thick soup",
"ingredients": [
"Deer’s kidney"
],
"effects": [
"cures kidney deficiency and deafness"
],
"steps": "Surround ingredient with fermented black beans. Add three he of non-glutinous rice and boil [into a] congee. A gruel could also be made. Add the five spices. Eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Gastrointestinal Issues",
"Others"
]
},
{
"recipe_name": "Mutton Gruel",
"category": "Meat",
"ingredients": [
"spring onions",
"black pepper",
"long pepper",
"lesser galangal",
"prepared mandarin orange peel",
"tsaoko cardamom",
"Chinese radish",
"Mutton"
],
"effects": [
"cures kidney deficiency failing and debility of waist and foot"
],
"steps": "Boil ingredients in water to make a juice. Add salt and sauce and boil into a broth. Add wheat flour qizi. Eat. It can also be eaten by taking clear soup and making into a congee.",
"method": [
"Simmer"
],
"effect_category": [
"Gastrointestinal Issues",
"Musculoskeletal Issues"
]
},
{
"recipe_name": "Deer Feet Soup",
"category": "Soup",
"ingredients": [
"tsaoko cardamom",
"prepared mandarin orange peel",
"Deer feet"
],
"effects": [
"ache of waist and foot and inability to walk",
"cures the various wind deficiencies"
],
"steps": "Boil ingredients until thoroughly cooked. Take the meat and add the five spices. Eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Neurological and Mental Health",
"General Health and Wellness",
"Musculoskeletal Issues"
]
},
{
"recipe_name": "Deer Horn Liquor",
"category": "Dish",
"ingredients": [
"Deer horn"
],
"effects": [
"cures lumbago pain due to strain and acute back spasm"
],
"steps": "Soak ingredient in liquor for two nights. Drink on an empty stomach. It is effective immediately.",
"method": [],
"effect_category": [
"Musculoskeletal Issues"
]
},
{
"recipe_name": "Black Ox Marrow Decoction",
"category": "Pan-fry",
"ingredients": [
"crystallized honey",
"juice of sprouting Chinese foxglove",
"Black ox marrow"
],
"effects": [
"bone damage and fatigue from wasting",
"cures kidney asthenia"
],
"steps": "Combine three ingredients. Decoct into a paste. Dissolve in liquor and take on an empty stomach.",
"method": [
"Pan-fry"
],
"effect_category": [
"Gastrointestinal Issues",
"General Health and Wellness"
]
},
{
"recipe_name": "Fox Meat Soup",
"category": "Meat",
"ingredients": [
"kasni",
"lesser galangal",
"prepared mandarin orange peel",
"onions",
"grain-of-paradise",
"tsaoko cardamom",
"Fox meat"
],
"effects": [
"cures asthenia and evil qi of the five viscera"
],
"steps": "Boil ingredients in one dou of water until done. Remove the tsaoko cardamom, etc. Then add two qian of black pepper, one qian of turmeric, vinegar and the five spices. Flavor evenly. Eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"General Health and Wellness"
]
},
{
"recipe_name": "Black Chicken Soup",
"category": "Soup",
"ingredients": [
"tsaoko cardamom",
"black pepper",
"lesser galangal",
"prepared mandarin orange peel",
"Black chicken"
],
"effects": [
"evil qi of chest and abdomen",
"cures asthenia internal impairment caused by overstrain"
],
"steps": "Combine ingredients with onions, vinegar, and sauce and put into a jug. Seal the mouth. Let boil until done. Eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"General Health and Wellness",
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Ghee Liquor",
"category": "Dish",
"ingredients": [
"Ghee"
],
"effects": [
"cures asthenia and removes wind-wetness"
],
"steps": "Mix ingredient with a cup of liquor and drink warm. It is proven effective.",
"method": [],
"effect_category": [
"General Health and Wellness",
"Neurological and Mental Health"
]
},
{
"recipe_name": "Chinese Yam Tuo",
"category": "Dish",
"ingredients": [
"Chinese yams",
"grain-of-paradise",
"black pepper",
"lesser galangal",
"prepared mandarin orange peel",
"tsaoko cardamom",
"spring onions",
"Chinese radish",
"Sheep’s bone"
],
"effects": [
"damage to bone and marrow",
"cold ache of chest and abdomen",
"the five kinds of impairments and the seven kinds of wounds",
"cures the various deficiencies"
],
"steps": "Boil ingredients together and take the juice. Clarify. Strain and remove the gross parts. Cook two jin of flour and two jin of Chinese yams. When done grind up into a mash. Apply flour to make the tuo. Add the five spices and eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"General Health and Wellness",
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Chinese Yam Congee",
"category": "Conge",
"ingredients": [
"Chinese yams",
"Mutton"
],
"effects": [
"chronic chill of hectic fever due to yin-deficiency",
"cures xulao diseases"
],
"steps": "Add three he of rice to meat broth containing ingredients. Boil into a congee. Take on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"General Health and Wellness",
"Musculoskeletal Issues"
]
},
{
"recipe_name": "Sour Jujube Congee",
"category": "Conge",
"ingredients": [
"Sour jujubes"
],
"effects": [
"vexation and insomnia",
"cures asthenia of the viscera"
],
"steps": "Use water for ingredient, twist [in a bag] and obtain the juice. Add three he of rice. Boil into a congee. Take on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"General Health and Wellness"
]
},
{
"recipe_name": "Sprouting Chinese Foxglove Congee",
"category": "Conge",
"ingredients": [
"Juice of sprouting Chinese foxglove",
"sour jujubes",
"Sprouting Chinese foxglove juice"
],
"effects": [
"coughing up of blood",
"alternating episodes of chills and fevers",
"hectic fever",
"cures xulao disease wasting away",
"vexation causing insomnia",
"gradual emaciation",
"general fatigue",
"cures asthenia of hectic fever due to yin-deficiency"
],
"steps": "Decoct ingredients together by boiling in water. Bring to a boil several times. Then add three he of rice. Cook into a congee. Take on an empty stomach.",
"method": [
"Boil",
"Simmer",
"Boil"
],
"effect_category": [
"General Health and Wellness",
"Musculoskeletal Issues",
"Others",
"Respiratory Issues"
]
},
{
"recipe_name": "Chinese Flower Pepper Dough Gruel",
"category": "Noodles",
"ingredients": [
"flour",
"Chinese flower pepper"
],
"effects": [
"vomiting and inability to keep down food",
"pain of chest and abdomen stagnation",
"chronic chill qi",
"cures asthenia of spleen and stomach"
],
"steps": "Mix ingredients together uniformly. Add a little salt. Make flour dough strips on fermented black beans.63 Boil into a Gruel and eat.",
"method": [
"Boil"
],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Long Pepper Congee",
"category": "Conge",
"ingredients": [
"cassia",
"black pepper",
"Long pepper"
],
"effects": [
"inability to eat due to obstructed listlessness",
"intense chill-qi pain of chest and abdomen",
"cures asthenia of spleen and stomach"
],
"steps": "Make a fine powder of ingredients. Use three qian for each three large cups of water. Add half a he of fermented black beans. Boil together until cooked. Remove the dregs. Add three he of rice and make a congee. Eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Lesser Galangal Congee",
"category": "Conge",
"ingredients": [
"non-glutinous rice",
"Lesser galangal"
],
"effects": [
"abdominal mass indigestion",
"cures chill pain of chest and abdomen"
],
"steps": "[For] ingredient [i.e., the galangal] use three large cups of water. Boil the lesser galangal down to two cups. Remove the dregs. Add the rice, boil into a congee and eat. It is of proven efficacy.",
"method": [
"Pan-fry",
"Boil"
],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Evodia Fruit Congee",
"category": "Conge",
"ingredients": [
"Evodia fruits"
],
"effects": [
"cures chilled qi perversity of chest and abdomen"
],
"steps": "Make ingredient into a congee with three he of rice. Eat on an empty stomach.",
"method": [],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Dried Beef",
"category": "Meat",
"ingredients": [
"lesser galangal",
"grain-of-paradise",
"tsaoko cardamom",
"prepared mandarin orange peel",
"long pepper",
"black pepper",
"Beef"
],
"effects": [
"compulsive drinking and eating",
"cures chronic chill of spleen and stomach"
],
"steps": "Make a fine powder of ingredients. Combine evenly with the meat, five ho of sprouting ginger juice, one he of onion juice, four liang of salt. Let sit for two days, remove meat and dry over a fire until dried. Eat as desired.",
"method": [
"Braise",
"Bake"
],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Lotus Seed Congee",
"category": "Conge",
"ingredients": [
"Lotus seeds"
],
"effects": [
"cures disrepose of heart and will supplements the center and strengthens the will makes ear and eye quick and sharp"
],
"steps": "Cook ingredient. When done grind up into a paste-like substance. Make a congee with three he of non-glutinous rice. Eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"General Health and Wellness",
"Others"
]
},
{
"recipe_name": "Euryale Fruits Congee",
"category": "Conge",
"ingredients": [
"Euryale fruits"
],
"effects": [
"cures insufficiency of primary vitality qi strengthens the will makes sharp ear and eye"
],
"steps": "Cook ingredients. When done grind up into a paste-like substance. Boil into a congee with one he of non-glutinous rice. Eat.",
"method": [
"Boil"
],
"effect_category": [
"Musculoskeletal Issues",
"General Health and Wellness",
"Others"
]
},
{
"recipe_name": "Euryale Fruits Gruel Powder",
"category": "Rice noodles",
"ingredients": [
"sheep’s spine",
"Euryale fruits"
],
"effects": [
"violent illnesses increases primary vitality qi and strengthens heart and will makes ear and eye quick and sharp",
"pain of waist and knee gets rid of sudden",
"cures arthralgia chiefly caused by wetness-evil"
],
"steps": "[For] ingredient use one he of juice of sprouting ginger. Add the five spices. Flavor evenly. Eat on an empty stomach.",
"method": [],
"effect_category": [
"Others",
"Musculoskeletal Issues",
"General Health and Wellness"
]
},
{
"recipe_name": "Peach Seed Congee",
"category": "Conge",
"ingredients": [
"Peach seeds"
],
"effects": [
"rapid respiration",
"obstruction filling up of the diaphragm",
"abnormal-rising-of-lung-qi-cough",
"cures pain of chest and abdomen"
],
"steps": "Take the juice of the ingredient, combine with non-glutinous rice and make into congee. Eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Gastrointestinal Issues",
"Respiratory Issues"
]
},
{
"recipe_name": "Bream Gruel",
"category": "Thick soup",
"ingredients": [
"long pepper",
"grain-of-paradise",
"prepared mandarin orange peel",
"Chinese flower pepper",
"black pepper",
"large garlic",
"Large bream"
],
"effects": [
"leaking diarrhea from which one does not recover for a long time if is eaten there is immediate effect",
"cures asthenia of spleen and stomach"
],
"steps": "[Of] ingredients put onions, sauce, salt, spices, and garlic into the intestinal cavity of the fish and decoct. When done make a gruel. [Add] the five spices. Flavor evenly. Eat on an empty stomach.",
"method": [
"Boil",
"Pan-fry"
],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Roasted Yellow Flour",
"category": "Noodles",
"ingredients": [
"White flour"
],
"effects": [
"cures leaking diarrhea and looseness of intestine and stomach"
],
"steps": "Each day take a spoonful of ingredient mixed with warm water on an empty stomach.",
"method": [],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Cheese Flour",
"category": "Pancake",
"ingredients": [
"Cheese"
],
"effects": [
"reddish and whitish leaking diarrhea",
"cures asthenia of spleen and stomach"
],
"steps": "Mix ingredient with flour and cook. When done eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Broiled Yellow Chicken",
"category": "Dish",
"ingredients": [
"Yellow hen"
],
"effects": [
"cures asthenia-weakness of spleen and stomach diarrhea"
],
"steps": "[Of] ingredients, combine together evenly: salt, sauce, vinegar, fennel, fine Chinese flower pepper powder. Brush onto the chicken. Roast until dry and scorched on coals. Eat on an empty stomach.",
"method": [
"Broil"
],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Method for Cow’s Milk Decocted Long Pepper",
"category": "Pan-fry",
"ingredients": [],
"effects": [],
"steps": "During the Zhenguan period [of Tang, 627-50], Taizong [r. 627- 50] was suffering from dysentery. The various doctors were una- ble to treat it successfully. The emperor asked his courtiers [sayng] that whoever could cure the disease would be heavily rewarded. At that time there was a gentlemen with special ability who advanced this method. He employed cow’s milk to decoct long pepper. The emperor took it. It was immediately beneficial.",
"method": [],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Chinese Badger Meat Gruel",
"category": "Meat",
"ingredients": [
"tsaoko cardamoms",
"onions",
"Chinese badger meat"
],
"effects": [
"difficulty in urination",
"abdominal distension",
"surface qi syndrome",
"cures edema"
],
"steps": "Cook ingredients together using Chinese flower pepper and fermented black beans. When overcooked add one he of non-glutinous rice and make a gruel. Flavor evenly with the five spices. Take on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Genitourinary Issues",
"Others",
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Yellow Hen",
"category": "Dish",
"ingredients": [
"adzuki beans [“Red Small Beans”]",
"tsaoko cardamom",
"Yellow hen"
],
"effects": [
"cures abdomen water indigestion and edema"
],
"steps": "Cook ingredients together. When done eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Gastrointestinal Issues",
"Genitourinary Issues"
]
},
{
"recipe_name": "Green[-headed] Duck [Male Mallard] Gruel",
"category": "Thick soup",
"ingredients": [
"tsaoko cardamoms",
"Green-headed duck"
],
"effects": [
"cures the ten water swelling illnesses from which one does not recover"
],
"steps": "[For] ingredient put half a sheng of adzuki beans into the intestinal cavity of the duck. Cook. When done flavor with the five spices. Eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Genitourinary Issues"
]
},
{
"recipe_name": "Chinese Radish Congee",
"category": "Conge",
"ingredients": [
"Large Chinese radish"
],
"effects": [
"scorched tongue and dry mouth and frequent urination",
"cures diabetes"
],
"steps": "[As] ingredients take three he of non-glutinous rice and water and combine with the juice. Boil into a congee. Eat.",
"method": [
"Boil"
],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Pheasant Gruel",
"category": "Thick soup",
"ingredients": [
"Pheasant"
],
"effects": [
"cures diabetes and dry mouth and frequent urination"
],
"steps": "[To] ingredient add the five spices according to the normal method. Make a gruel-meat broth. Eat.",
"method": [],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Pigeon Gruel",
"category": "Thick soup",
"ingredients": [
"White pigeon"
],
"effects": [
"cures diabetes and excessive drinking of water"
],
"steps": "Cook ingredient with *tosu[n] [fat, grease]. When done eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Gastrointestinal Issues",
"Others"
]
},
{
"recipe_name": "Egg Yolk",
"category": "Dish",
"ingredients": [
"Egg yolk"
],
"effects": [
"cures urine that does not pass"
],
"steps": "Take ingredient. Do not take more than three times. It can also be eaten cooked.",
"method": [],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Chinese Mallow Gruel",
"category": "Thick soup",
"ingredients": [
"Mallow leaves"
],
"effects": [
"cures urine which is retained and does not pass"
],
"steps": "Boil ingredient into a gruel. Add the five spices. Eat on an empty stomach.",
"method": [
"Stir-fry",
"Simmer",
"Boil"
],
"effect_category": [
"Gastrointestinal Issues",
"General Health and Wellness",
"Others"
]
},
{
"recipe_name": "Carp Soup",
"category": "Soup",
"ingredients": [
"finely ground Chinese flower pepper",
"Large young carp",
"tsaoko cardamom",
"Chinese flower pepper",
"prepared mandarin orange peel",
"adzuki beans",
"Large carp"
],
"effects": [
"pacifies the womb if a person is ill with chronic abdominal mass he should not eat it",
"stops thirst",
"treats jaundice",
"jaundice and [evil] foot qi",
"cures diabetes and edema"
],
"steps": "[To] ingredients add the five spices and flavor evenly. Cook. When done eat on an empty stomach.",
"method": [
"Braise",
"Boil"
],
"effect_category": [
"Gastrointestinal Issues",
"Genitourinary Issues",
"Others"
]
},
{
"recipe_name": "Purslane [Portulaca oleracea] Congee",
"category": "Conge",
"ingredients": [
"Purslane"
],
"effects": [
"dripping discharge of urine",
"swelling of chest and abdomen",
"edema of head and face",
"cures [evil] foot qi"
],
"steps": "Boil ingredient into a congee combined with non-glutinous rice. Eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Others",
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Wheat Congee",
"category": "Conge",
"ingredients": [
"Wheat"
],
"effects": [
"cures diabetes and dry mouth"
],
"steps": "Boil ingredient into a congee. It can perhaps also be steamed as cooked food. Eat it on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Gastrointestinal Issues"
]
},
{
"recipe_name": "Donkey’s Head Gruel",
"category": "Thick soup",
"ingredients": [
"tsaoko cardamom",
"black pepper",
"Black donkey’s head"
],
"effects": [
"trouble in speaking",
"annoying pain of extremities",
"debility of hand and foot",
"cures apoplexy-vertigo"
],
"steps": "Cook ingredients until overcooked. Add the five spices in fermented black bean juice. Flavor with the spices. Flavor evenly. Eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Neurological and Mental Health",
"Musculoskeletal Issues"
]
},
{
"recipe_name": "Donkey’s Meat Soup",
"category": "Meat",
"ingredients": [
"Meat of a black donkey"
],
"effects": [
"cures wind mania and depression and pacifies heart qi"
],
"steps": "Cook ingredient until overcooked in fermented black beans. When done add the five spices. Eat on an empty stomach.",
"method": [
"Boil"
],
"effect_category": [
"Neurological and Mental Health",
"Others"
]
},
{
"recipe_name": "Fox Meat Gruel",
"category": "Meat",
"ingredients": [
"Fox meat"
],
"effects": [
"inappropriate [unmeasured] singing and laughing",
"indistinct speech",
"spiritual confusion",
"cures infantile convulsion epilepsy"
],