diff --git a/data/json/items/comestibles/seed.json b/data/json/items/comestibles/seed.json index 1d71bab46e4b..5d99995566b1 100644 --- a/data/json/items/comestibles/seed.json +++ b/data/json/items/comestibles/seed.json @@ -812,5 +812,17 @@ "grow": "14 days" }, "extend": { "flags": [ "CAN_PLANT_UNDERGROUND" ] } + }, + { + "type": "COMESTIBLE", + "id": "seed_mycus_fruit", + "copy-from": "seed_fruit", + "name": { "str_sp": "mycus fruit seedpod" }, + "description": "A cluster of stony seeds entangled in a net of fine gray mycelium. If planted on a tree trunk or dedicated mushroom rack, great things could grow from it.", + "color": "light_gray", + "calories": 35, + "use_action": "MYCUS", + "seed_data": { "plant_name": "mycus fruit", "required_terrain_flag": "MUSHROOM_PLANTABLE", "fruit": "mycus_fruit", "grow": "7 days" }, + "extend": { "flags": [ "MYCUS_OK", "CAN_PLANT_UNDERGROUND" ] } } ] diff --git a/data/json/recipes/food/seeds.json b/data/json/recipes/food/seeds.json index f1efcbe69186..cc14ebade6da 100644 --- a/data/json/recipes/food/seeds.json +++ b/data/json/recipes/food/seeds.json @@ -730,5 +730,19 @@ "qualities": [ { "id": "CUT", "level": 1 } ], "components": [ [ [ "celery", 1 ] ] ], "flags": [ "ALLOW_ROTTEN" ] + }, + { + "result": "seed_mycus_fruit", + "type": "recipe", + "category": "CC_FOOD", + "subcategory": "CSC_FOOD_SEEDS", + "skill_used": "survival", + "difficulty": 4, + "time": "5 m", + "//": "Todo: Lock recipe behind obtaining Mycus threshold", + "autolearn": true, + "qualities": [ { "id": "CUT", "level": 1 } ], + "components": [ [ [ "mycus_fruit", 1 ] ] ], + "flags": [ "ALLOW_ROTTEN" ] } ] diff --git a/data/mods/No_Fungi/recipes.json b/data/mods/No_Fungi/recipes.json index 7aaf7acfde34..c4775d7308db 100644 --- a/data/mods/No_Fungi/recipes.json +++ b/data/mods/No_Fungi/recipes.json @@ -3,5 +3,10 @@ "type": "recipe", "result": "brew_mycus_wine", "obsolete": true + }, + { + "type": "recipe", + "result": "seed_mycus_fruit", + "obsolete": true } ]