From 74f9de8099f7016e4e7e6833a3debfbb5154bf0e Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Sat, 24 Jul 2021 08:09:28 -0700 Subject: Add a recipe for producing thread from rags --- json/recipes/basecamps/recipe_groups.json | 1 + json/recipes/recipe_other.json | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 json/recipes/recipe_other.json diff --git a/json/recipes/basecamps/recipe_groups.json b/json/recipes/basecamps/recipe_groups.json index ddcd5d8..e528c24 100644 --- a/json/recipes/basecamps/recipe_groups.json +++ b/json/recipes/basecamps/recipe_groups.json @@ -197,6 +197,7 @@ { "id": "chem_manganese_dioxide", "description": " Craft: Manganese Dioxide" }, { "id": "plastic_chunk", "description": " Craft: Plastic, Chunk, from Bleach/Vinegar" }, { "id": "plastic_chunk_from_plastic_bags", "description": " Craft: Plastic, Chunk, from Plastic Bags" }, + { "id": "thread_from_rags", "description": " Craft: Thread, from Rags" }, { "id": "spike", "description": " Craft: Spike" }, { "id": "steel_chunk", "description": " Craft: Steel, Chunk" }, { "id": "steel_lump", "description": " Craft: Steel, Lump" }, diff --git a/json/recipes/recipe_other.json b/json/recipes/recipe_other.json new file mode 100644 index 0000000..8c55ff7 --- /dev/null +++ b/json/recipes/recipe_other.json @@ -0,0 +1,16 @@ +[ + { + "type": "recipe", + "result": "thread", + "id_suffix": "from_rags", + "category": "CC_OTHER", + "subcategory": "CSC_OTHER_MATERIALS", + "skill_used": "tailor", + "difficulty": 1, + "skills_required": [ "fabrication", 1 ], + "time": "60 m", + "autolearn": true, + "qualities": [ { "id": "CUT", "level": 1 } ], + "components": [ [ [ "rag", 1 ] ] ] + } +] -- cgit v1.2.1