summaryrefslogtreecommitdiff
path: root/json/uncraft/weapon
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2021-07-27 13:57:06 -0700
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2021-07-27 13:57:06 -0700
commit226f316cb308524b3bcf986147396d98ac3c620f (patch)
treec9aad3dbaab37056b10026c219833371fc570beb /json/uncraft/weapon
parentAdd recipes for rubber powder, rubber slug, impact fuze, delayed fuze (diff)
downloadcataclysm-dda-mod_grenade-crafting-226f316cb308524b3bcf986147396d98ac3c620f.tar.xz
Clean up the landmine and smoke grenade recipes to be more military.
Clean up the frag/incendiary grenade uncrafts. Clean up the landmine uncraft.
Diffstat (limited to 'json/uncraft/weapon')
-rw-r--r--json/uncraft/weapon/explosive.json43
1 files changed, 43 insertions, 0 deletions
diff --git a/json/uncraft/weapon/explosive.json b/json/uncraft/weapon/explosive.json
new file mode 100644
index 0000000..b9f719b
--- /dev/null
+++ b/json/uncraft/weapon/explosive.json
@@ -0,0 +1,43 @@
+[
+ {
+ "type": "uncraft",
+ "result": "grenade",
+ "skill_used": "fabrication",
+ "difficulty": 3,
+ "time": "1 m 30 s",
+ "qualities": [ { "id": "SCREW", "level": 1 } ],
+ "components": [
+ [ [ "delay_fuze", 1 ] ],
+ [ [ "sheet_metal_small", 1 ] ],
+ [ [ "chem_compositionb", 32 ] ],
+ [ [ "canister_empty", 1 ] ]
+ ]
+ },
+ {
+ "type": "uncraft",
+ "result": "grenade_inc",
+ "skill_used": "fabrication",
+ "difficulty": 3,
+ "time": "1 m 30 s",
+ "qualities": [ { "id": "SCREW", "level": 1 } ],
+ "components": [
+ [ [ "delay_fuze", 1 ] ],
+ [ [ "incendiary", 150 ] ],
+ [ [ "canister_empty", 1 ] ]
+ ]
+ },
+ {
+ "type": "uncraft",
+ "result": "landmine",
+ "skill_used": "fabrication",
+ "difficulty": 4,
+ "time": "3 m",
+ "qualities": [ { "id": "SCREW", "level": 1 } ],
+ "components": [
+ [ [ "impact_fuze", 1 ] ],
+ [ [ "sheet_metal_small", 2 ] ],
+ [ [ "chem_compositionb", 75 ] ],
+ [ [ "canister_empty", 1 ] ]
+ ]
+ }
+]