summaryrefslogtreecommitdiff
path: root/json/recipes
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2022-07-11 12:55:39 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2022-07-11 12:55:39 -0700
commit8b8a16b5a0da5f5882b6aebce7a279ac993348ed (patch)
treefcfcf9a82bf7b3174908c79fb0db1a879d0497eb /json/recipes
parentAdd primers as npc craftable. (diff)
downloadcataclysm-bn-mod_faction-camp-recipe-expansion-8b8a16b5a0da5f5882b6aebce7a279ac993348ed.tar.xz
Add drophammer tin cans, and make the mod hard depend on the recipe fixes mod.
Diffstat (limited to 'json/recipes')
-rw-r--r--json/recipes/basecamps/recipe_groups.json5
-rw-r--r--json/recipes/recipe_companion.json68
2 files changed, 69 insertions, 4 deletions
diff --git a/json/recipes/basecamps/recipe_groups.json b/json/recipes/basecamps/recipe_groups.json
index 3565d30..28d5e61 100644
--- a/json/recipes/basecamps/recipe_groups.json
+++ b/json/recipes/basecamps/recipe_groups.json
@@ -312,6 +312,7 @@
{ "id": "screwdriver_set_forged", "description": " Craft: Screwdriver Set" },
{ "id": "wrench", "description": " Craft: Wrench" },
{ "id": "hinge", "description": " Craft: Door Hinge" },
+ { "id": "can_food_unsealed", "description": " Craft: Tin Can, Small" },
{ "id": "can_medium_unsealed", "description": " Craft: Tin Can, Medium" },
{ "id": "jar_3l_glass", "description": " Craft: Glass Jar, 3L" },
{ "id": "bottle_glass", "description": " Craft: Glass Bottle, 0.75L" },
@@ -406,7 +407,9 @@
{ "id": "pipe_npc_drop", "description": " Craft: Pipe, Steel, Drop Hammer" },
{ "id": "rebar_npc_drop", "description": " Craft: Rebar, Drop Hammer" },
{ "id": "sheet_metal_npc_drop", "description": " Craft: Sheet Metal, Drop Hammer" },
- { "id": "wire_npc_drop", "description": " Craft: Wire, Drop Hammer" }
+ { "id": "wire_npc_drop", "description": " Craft: Wire, Drop Hammer" },
+ { "id": "can_food_unsealed_npc_drop", "description": " Craft: Tin Can, Small" },
+ { "id": "can_medium_unsealed_npc_drop", "description": " Craft: Tin Can, Medium" }
]
}
]
diff --git a/json/recipes/recipe_companion.json b/json/recipes/recipe_companion.json
index ef049b4..b1f0418 100644
--- a/json/recipes/recipe_companion.json
+++ b/json/recipes/recipe_companion.json
@@ -9,9 +9,71 @@
"difficulty": 1,
"time": "45 m",
"autolearn": false,
+ "using": [
+ [ "forging_standard", 1 ],
+ [ "steel_tiny", 1 ]
+ ],
"never_learn": true,
- "qualities": [ { "id": "ANVIL", "level": 3 }, { "id": "HAMMER", "level": 5 }, { "id": "CHISEL", "level": 3 } ],
- "tools": [ [ [ "tongs", -1 ] ], [ [ "swage", -1 ] ], [ [ "forge", 5 ], [ "oxy_torch", 1 ] ] ],
- "components": [ [ [ "steel_chunk", 1 ], [ "scrap", 3 ] ] ]
+ "qualities": [
+ { "id": "ANVIL", "level": 3 },-
+ { "id": "HAMMER", "level": 5 },
+ { "id": "CHISEL", "level": 3 }
+ ],
+ "tools": [
+ [ [ "swage", -1 ] ],
+ [ [ "tongs", -1 ] ],
+ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ]
+ ]
+ },
+ {
+ "type": "recipe",
+ "result": "can_food_unsealed",
+ "id_suffix": "npc_drop",
+ "category": "CC_OTHER",
+ "subcategory": "CSC_OTHER_CONTAINERS",
+ "skill_used": "fabrication",
+ "difficulty": 1,
+ "time": "8 m",
+ "count": 2,
+ "autolearn": false,
+ "never_learn": true,
+ "using": [
+ [ "forging_standard", 1 ],
+ [ "steel_tiny", 1 ]
+ ],
+ "qualities": [
+ { "id": "ANVIL", "level": 3 },
+ { "id": "HAMMER", "level": 5 },
+ { "id": "CHISEL", "level": 3 }
+ ],
+ "tools": [
+ [ [ "tongs", -1 ] ],
+ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ]
+ ]
+ }
+ {
+ "type": "recipe",
+ "result": "can_medium_unsealed",
+ "id_suffix": "npc_drop",
+ "category": "CC_OTHER",
+ "subcategory": "CSC_OTHER_CONTAINERS",
+ "skill_used": "fabrication",
+ "difficulty": 1,
+ "time": "12 m",
+ "autolearn": false,
+ "never_learn": true,
+ "using": [
+ [ "forging_standard", 1 ],
+ [ "steel_tiny", 1 ]
+ ],
+ "qualities": [
+ { "id": "ANVIL", "level": 3 },
+ { "id": "HAMMER", "level": 5 },
+ { "id": "CHISEL", "level": 3 }
+ ],
+ "tools": [
+ [ [ "tongs", -1 ] ],
+ [ [ "crucible", -1 ], [ "crucible_clay", -1 ] ]
+ ]
}
]