summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2020-07-26 15:39:31 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2020-07-26 15:39:31 -0700
commit79b61cb7d032f83f83f12520c76d362a533ef8d1 (patch)
treed0673b3a8421168484b245c781276d4ecbb48fcb
downloadcataclysm-dda-mod_grenade-crafting-79b61cb7d032f83f83f12520c76d362a533ef8d1.tar.xz
Initial commit
-rw-r--r--json/recipes/recipe_obsolete.json7
-rw-r--r--json/recipes/weapons/explosive.json59
-rw-r--r--modinfo.json11
3 files changed, 77 insertions, 0 deletions
diff --git a/json/recipes/recipe_obsolete.json b/json/recipes/recipe_obsolete.json
new file mode 100644
index 0000000..7b3129f
--- /dev/null
+++ b/json/recipes/recipe_obsolete.json
@@ -0,0 +1,7 @@
+[
+ {
+ "type": "recipe",
+ "result": "grenade",
+ "obsolete": false
+ }
+]
diff --git a/json/recipes/weapons/explosive.json b/json/recipes/weapons/explosive.json
new file mode 100644
index 0000000..fad57a6
--- /dev/null
+++ b/json/recipes/weapons/explosive.json
@@ -0,0 +1,59 @@
+[
+ {
+ "result": "gasbomb",
+ "type" : "recipe",
+ "category": "CC_WEAPON",
+ "subcategory": "CSC_WEAPON_EXPLOSIVE",
+ "skill_used": "cooking",
+ "skills_required": [ "mechanics", 6 ],
+ "difficulty": 6,
+ "time": "30 m",
+ "book_learn": [ [ "textbook_anarch", 7 ] ],
+ "qualities" : [ { "id": "SCREW", "level": 1 } ],
+ "components": [
+ [ [ "bleach", 2 ] ],
+ [ [ "ammonia", 2 ] ],
+ [ [ "superglue", 1 ], [ "duct_tape", 75 ], [ "cordage", 1, "LIST" ] ],
+ [ [ "canister_empty", 1 ], [ "can_drink_unsealed", 1 ], [ "clay_canister", 1 ], [ "can_food_unsealed", 1 ] ]
+ ]
+ },
+ {
+ "result": "grenade_emp",
+ "type" : "recipe",
+ "category": "CC_WEAPON",
+ "subcategory": "CSC_WEAPON_EXPLOSIVE",
+ "skill_used": "electronics",
+ "difficulty": 6,
+ "time": "30 m",
+ "book_learn": [ [ "textbook_anarch", 7 ] ],
+ "using": [ [ "soldering_standard", 6 ] ],
+ "qualities" : [ { "id": "SCREW", "level": 1 } ],
+ "components": [
+ [ [ "power_supply", 1 ] ],
+ [ [ "amplifier", 1 ] ],
+ [ [ "cable", 5 ] ],
+ [ [ "antenna", 1 ] ],
+ [ [ "superglue", 1 ], [ "duct_tape", 75 ], [ "cordage", 1, "LIST" ] ],
+ [ [ "canister_empty", 1 ], [ "can_drink_unsealed", 1 ], [ "clay_canister", 1 ], [ "can_food_unsealed", 1 ] ]
+ ]
+ },
+ {
+ "result": "grenade",
+ "type" : "recipe",
+ "category": "CC_WEAPON",
+ "subcategory": "CSC_WEAPON_EXPLOSIVE",
+ "skill_used": "fabrication",
+ "skills_required": [ "mechanics", 6 ],
+ "difficulty": 6,
+ "time": "30 m",
+ "book_learn": [ [ "textbook_anarch", 7 ] ],
+ "qualities" : [ { "id": "SCREW", "level": 1 } ],
+ "components": [
+ [ [ "pilot_light", 1 ] ],
+ [ [ "sheet_metal_small", 6 ] ],
+ [ [ "chem_rdx", 200 ] ],
+ [ [ "superglue", 1 ], [ "duct_tape", 75 ], [ "cordage", 1, "LIST" ] ],
+ [ [ "canister_empty", 1 ], [ "can_drink_unsealed", 1 ], [ "clay_canister", 1 ], [ "can_food_unsealed", 1 ] ]
+ ]
+ }
+]
diff --git a/modinfo.json b/modinfo.json
new file mode 100644
index 0000000..6239cf6
--- /dev/null
+++ b/modinfo.json
@@ -0,0 +1,11 @@
+[
+ {
+ "type": "MOD_INFO",
+ "ident": "grenade_crafting",
+ "name": "Grenade Crafting",
+ "authors": ["jc_gargma"],
+ "description": "Restore the recipes for frag, emp, and tear gas grenades.",
+ "category": "rebalance",
+ "dependencies": [ "dda" ]
+ }
+]