Skip to content

Commit

Permalink
Add dandelion and chamomile tea bags and recipes (#43241)
Browse files Browse the repository at this point in the history
  • Loading branch information
levkropp authored Nov 27, 2020
1 parent 134fbf0 commit 3e93e5b
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 5 deletions.
4 changes: 3 additions & 1 deletion data/json/itemgroups/Food/food.json
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,9 @@
{ "item": "tea_bag", "prob": 20, "container-item": "box_tea", "charges-min": 1, "charges-max": 10 },
{ "item": "tea_fruit_bag", "prob": 10, "container-item": "box_tea", "charges-min": 1, "charges-max": 10 },
{ "item": "tea_green_bag", "prob": 10, "container-item": "box_tea", "charges-min": 1, "charges-max": 10 },
{ "item": "herbal_tea_bag", "prob": 5, "container-item": "box_tea", "charges-min": 1, "charges-max": 10 }
{ "item": "tea_bag_chamomile", "prob": 10, "container-item": "box_tea", "charges-min": 1, "charges-max": 10 },
{ "item": "herbal_tea_bag", "prob": 5, "container-item": "box_tea", "charges-min": 1, "charges-max": 10 },
{ "item": "tea_bag_dandelion", "prob": 5, "container-item": "box_tea", "charges-min": 1, "charges-max": 10 }
]
}
]
2 changes: 1 addition & 1 deletion data/json/items/comestibles/drink.json
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@
"symbol": "~",
"quench": 44,
"healthy": 1,
"calories": 2,
"calories": 9,
"description": "A healthy beverage made from herbs steeped in boiling water.",
"price": 100,
"price_postapoc": 25,
Expand Down
19 changes: 17 additions & 2 deletions data/json/items/comestibles/other.json
Original file line number Diff line number Diff line change
Expand Up @@ -826,8 +826,23 @@
"type": "COMESTIBLE",
"name": { "str": "herbal tea bag" },
"copy-from": "tea_bag",
"color": "green",
"description": "Paper sachet with dried wild herbs inside. Put it into boiling water to make some healthy warm drink."
"calories": 9,
"description": "A paper sachet with dried wild herbs inside. Put it into boiling water to make a cup of herbal tea."
},
{
"id": "tea_bag_dandelion",
"type": "COMESTIBLE",
"name": { "str": "dandelion tea bag" },
"copy-from": "tea_bag",
"calories": 26,
"description": "A paper sachet with dried dandelion roots inside. Put it into boiling water to make a cup of dandelion tea."
},
{
"id": "tea_bag_chamomile",
"type": "COMESTIBLE",
"name": { "str": "chamomile tea bag" },
"copy-from": "tea_bag",
"description": "A paper sachet with dried chamomile inside. Put it into boiling water to make a cup of chamomile tea."
},
{
"id": "instant_coffee",
Expand Down
32 changes: 31 additions & 1 deletion data/json/recipes/recipe_food.json
Original file line number Diff line number Diff line change
Expand Up @@ -1544,6 +1544,36 @@
"tools": [ [ [ "water_boiling_heat", 2, "LIST" ] ] ],
"components": [ [ [ "tea_fruit_bag", 1 ] ], [ [ "water", 1 ], [ "water_clean", 1 ] ] ]
},
{
"type": "recipe",
"result": "herbal_tea",
"id_suffix": "from_tea_bag",
"activity_level": "NO_EXERCISE",
"copy-from": "tea",
"qualities": [ { "id": "BOIL", "level": 1 } ],
"tools": [ [ [ "water_boiling_heat", 2, "LIST" ] ] ],
"components": [ [ [ "herbal_tea_bag", 1 ] ], [ [ "water", 1 ], [ "water_clean", 1 ] ] ]
},
{
"type": "recipe",
"result": "dandelion_tea",
"id_suffix": "from_tea_bag",
"activity_level": "NO_EXERCISE",
"copy-from": "tea",
"qualities": [ { "id": "BOIL", "level": 1 } ],
"tools": [ [ [ "water_boiling_heat", 2, "LIST" ] ] ],
"components": [ [ [ "tea_bag_dandelion", 1 ] ], [ [ "water", 1 ], [ "water_clean", 1 ] ] ]
},
{
"type": "recipe",
"result": "chamomile_tea",
"id_suffix": "from_tea_bag",
"activity_level": "NO_EXERCISE",
"copy-from": "tea",
"qualities": [ { "id": "BOIL", "level": 1 } ],
"tools": [ [ [ "water_boiling_heat", 2, "LIST" ] ] ],
"components": [ [ [ "tea_bag_chamomile", 1 ] ], [ [ "water", 1 ], [ "water_clean", 1 ] ] ]
},
{
"type": "recipe",
"activity_level": "NO_EXERCISE",
Expand All @@ -1557,7 +1587,7 @@
"batch_time_factors": [ 80, 4 ],
"qualities": [ { "id": "BOIL", "level": 1 } ],
"tools": [ [ [ "water_boiling_heat", 2, "LIST" ] ] ],
"components": [ [ [ "wild_herbs", 10 ], [ "herbal_tea_bag", 1 ] ], [ [ "water", 1 ], [ "water_clean", 1 ] ] ]
"components": [ [ [ "wild_herbs", 1 ] ], [ [ "water", 1 ], [ "water_clean", 1 ] ] ]
},
{
"type": "recipe",
Expand Down

0 comments on commit 3e93e5b

Please sign in to comment.