Skip to content

Commit

Permalink
Add wild plant seeds (#58557)
Browse files Browse the repository at this point in the history
* Add wild plant seeds

* Style fix
  • Loading branch information
AtomicFox556 committed Jun 22, 2022
1 parent 98b941c commit bcd8b3b
Show file tree
Hide file tree
Showing 2 changed files with 140 additions and 0 deletions.
92 changes: 92 additions & 0 deletions data/json/items/comestibles/seed.json
Original file line number Diff line number Diff line change
Expand Up @@ -593,6 +593,98 @@
"charges": 2,
"seed_data": { "plant_name": "burdock", "fruit": "raw_burdock", "grow": "91 days" }
},
{
"type": "COMESTIBLE",
"id": "seed_japanese_knotweed",
"copy-from": "seed",
"name": { "str_sp": "Japanese knotweed stems" },
"description": "Some Japanese knotweed stems, prepared for planting.",
"charges": 2,
"seed_data": {
"plant_name": "Japanese knotweed",
"fruit": "japanese_knotweed_stem",
"byproducts": [ "withered" ],
"grow": "91 days"
}
},
{
"type": "COMESTIBLE",
"id": "seed_jerusalem_artichoke",
"copy-from": "seed",
"name": { "str_sp": "Jerusalem artichoke seeds" },
"description": "Some Jerusalem artichoke seeds.",
"charges": 2,
"seed_data": { "plant_name": "Jerusalem artichoke", "fruit": "jerusalem_artichoke", "byproducts": [ "withered" ], "grow": "91 days" }
},
{
"type": "COMESTIBLE",
"id": "seed_maianthemum_stellatum",
"copy-from": "seed",
"name": { "str_sp": "starry false Solomon's seal seeds" },
"description": "Some starry false Solomon's seal seeds.",
"charges": 2,
"seed_data": {
"plant_name": "starry false Solomon's seal",
"fruit": "m_stellatum_berries",
"byproducts": [ "withered" ],
"grow": "91 days"
}
},
{
"type": "COMESTIBLE",
"id": "seed_wild_sarsaparilla",
"copy-from": "seed",
"name": { "str_sp": "wild sarsaparilla seeds" },
"description": "Some wild sarsaparilla seeds.",
"charges": 2,
"seed_data": {
"plant_name": "wild sarsaparilla",
"fruit": "wild_sarsaparilla_root",
"byproducts": [ "withered" ],
"grow": "91 days"
}
},
{
"type": "COMESTIBLE",
"id": "seed_mayapple",
"copy-from": "seed",
"name": { "str_sp": "mayapple seeds" },
"description": "Some mayapple seeds.",
"charges": 2,
"seed_data": { "plant_name": "mayapple", "fruit": "mayapple", "byproducts": [ "withered" ], "grow": "91 days" }
},
{
"type": "COMESTIBLE",
"id": "seed_wintergreen",
"copy-from": "seed",
"name": { "str_sp": "wintergreen seeds" },
"description": "Some wintergreen seeds.",
"charges": 2,
"seed_data": {
"plant_name": "wintergreen",
"fruit": "wintergreen_berry",
"byproducts": [ "wintergreen_leaves", "withered" ],
"grow": "91 days"
}
},
{
"type": "COMESTIBLE",
"id": "seed_groundnut",
"copy-from": "seed",
"name": { "str_sp": "groundnut seeds" },
"description": "Some groundnut seeds.",
"charges": 2,
"seed_data": { "plant_name": "groundnut", "fruit": "groundnut", "byproducts": [ "withered" ], "grow": "91 days" }
},
{
"type": "COMESTIBLE",
"id": "seed_wild_garlic",
"copy-from": "seed",
"name": { "str_sp": "wild garlic seeds" },
"description": "Some wild garlic seeds.",
"charges": 2,
"seed_data": { "plant_name": "wild garlic", "fruit": "wild_garlic", "byproducts": [ "withered" ], "grow": "91 days" }
},
{
"type": "COMESTIBLE",
"id": "seed_raw_bamboo",
Expand Down
48 changes: 48 additions & 0 deletions data/json/recipes/food/seed.json
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,54 @@
"copy-from": "seed_extraction_cutting",
"components": [ [ [ "raw_burdock", 4 ] ] ]
},
{
"result": "seed_japanese_knotweed",
"type": "recipe",
"copy-from": "seed_extraction_base",
"components": [ [ [ "japanese_knotweed_stem", 1 ] ] ]
},
{
"result": "seed_jerusalem_artichoke",
"type": "recipe",
"copy-from": "seed_extraction_cutting",
"components": [ [ [ "jerusalem_artichoke", 1 ] ] ]
},
{
"result": "seed_maianthemum_stellatum",
"type": "recipe",
"copy-from": "seed_extraction_cutting",
"components": [ [ [ "m_stellatum_berries", 1 ] ] ]
},
{
"result": "seed_wild_sarsaparilla",
"type": "recipe",
"copy-from": "seed_extraction_cutting",
"components": [ [ [ "wild_sarsaparilla_root", 1 ] ] ]
},
{
"result": "seed_mayapple",
"type": "recipe",
"copy-from": "seed_extraction_cutting",
"components": [ [ [ "mayapple", 1 ] ] ]
},
{
"result": "seed_wintergreen",
"type": "recipe",
"copy-from": "seed_extraction_cutting",
"components": [ [ [ "wintergreen_berry", 1 ] ] ]
},
{
"result": "seed_groundnut",
"type": "recipe",
"copy-from": "seed_extraction_cutting",
"components": [ [ [ "groundnut", 1 ] ] ]
},
{
"result": "seed_wild_garlic",
"type": "recipe",
"copy-from": "seed_extraction_cutting",
"components": [ [ [ "wild_garlic", 1 ] ] ]
},
{
"result": "seed_rhubarb",
"type": "recipe",
Expand Down

0 comments on commit bcd8b3b

Please sign in to comment.