summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2021-07-24 08:09:28 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2021-07-24 08:09:28 -0700
commit74f9de8099f7016e4e7e6833a3debfbb5154bf0e (patch)
tree577a659db396b50962b37a647eba058e967d33f1
parentAdd copper tubes (diff)
downloadcataclysm-dda-mod_faction-camp-recipe-expansion-74f9de8099f7016e4e7e6833a3debfbb5154bf0e.tar.xz
Add a recipe for producing thread from rags
-rw-r--r--json/recipes/basecamps/recipe_groups.json1
-rw-r--r--json/recipes/recipe_other.json16
2 files changed, 17 insertions, 0 deletions
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 ] ] ]
+ }
+]