summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2022-08-16 21:06:00 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2022-08-16 21:06:00 -0700
commit8df45ee9e2547e9f3267e9c9611489762958d435 (patch)
tree1cd9c01d3cc8abad11f5a0af9e448232bcc4df7b
parentSwap the helmets from kevlar to rigid kevlar. (diff)
downloadcataclysm-bn-mod_survivorheadgear-crafting-8df45ee9e2547e9f3267e9c9611489762958d435.tar.xz
Add recipe for survivor cloak.
-rw-r--r--Readme.txt2
-rw-r--r--json/items/armor/cloaks.json3
-rw-r--r--json/recipes/armor/cloaks.json32
3 files changed, 36 insertions, 1 deletions
diff --git a/Readme.txt b/Readme.txt
index f44cacd..269b149 100644
--- a/Readme.txt
+++ b/Readme.txt
@@ -26,6 +26,7 @@ XL Heavy Survivor Hood
-Rebalancing:
Rebase on Cataclysm: Bright Nights
+Set the Helmets to have rigid kevlar.
Adjust the XL Survivor Helmet recipe to be based on the Medium Helmet, with roughly double materials.
Adjust the XL Survivor Hood recipe to be based on the Medium Hood, with roughly double materials.
Adjust the XL Heavy Survivor Hood recipe to be based on the Heavy Hood, with roughly double materials.
@@ -38,5 +39,6 @@ Buff the Survivior Helmet to be a better coverage army helmet.
Buff the Havy Survivior Helmet to be roughly a heavier, better coverage, and more durable army helmet.
+
-Notes:
Light and Medium Survivor Hoods seem fine in 0.E-3
diff --git a/json/items/armor/cloaks.json b/json/items/armor/cloaks.json
index a8fd335..22f9edc 100644
--- a/json/items/armor/cloaks.json
+++ b/json/items/armor/cloaks.json
@@ -3,6 +3,7 @@
"id": "cloak_survivor",
"looks_like": "cloak",
"type": "ARMOR",
+ "category": "armor",
"name": { "str": "survivor cloak" },
"description": "A Kevlar armored custom full-length cloak, lined with pouches and pockets. Comfortable, durable, and great for storage.",
"weight": "1960 g",
@@ -15,7 +16,7 @@
"color": "brown",
"covers": [ "torso", "arms", "legs" ],
"coverage": 65,
- "encumbrance": 2,
+ "encumbrance": 6,
"storage": "9 L",
"warmth": 10,
"material_thickness": 3,
diff --git a/json/recipes/armor/cloaks.json b/json/recipes/armor/cloaks.json
new file mode 100644
index 0000000..44b192e
--- /dev/null
+++ b/json/recipes/armor/cloaks.json
@@ -0,0 +1,32 @@
+[
+ {
+ "result": "cloak_leather",
+ "type": "recipe",
+ "category": "CC_ARMOR",
+ "subcategory": "CSC_ARMOR_SUIT",
+ "skill_used": "tailor",
+ "difficulty": 6,
+ "skills_required": [ "fabrication", 6 ],
+ "time": "1 h 10 m",
+ "autolearn": true,
+ "using": [ [ "sewing_standard", 150 ] ],
+ "components": [
+ [ [ "coat_rain", 1 ] ],
+ [ [ "cloak", 1 ], [ "cloak_leather", 1 ] ],
+ [ [ "kevlar", 1 ], [ "modularvest", 1 ], [ "kevlar_plate", 16 ] ],
+ [ [ "rag", 19 ] ],
+ [
+ [ "tacvest", 1 ],
+ [ "legrig", 1 ],
+ [ "vest", 1 ],
+ [ "tool_belt", 1 ],
+ [ "ragpouch", 4 ],
+ [ "leather_pouch", 2 ],
+ [ "dump_pouch", 1 ],
+ [ "purse", 2 ],
+ [ "fanny", 2 ]
+ ],
+ [ [ "duct_tape", 135 ] ]
+ ]
+ }
+]