From afc9e1f9a5a33c480ecaded6e18eaa020a8818d7 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Mon, 11 Jul 2022 16:03:19 -0700 Subject: Rebalance explosives using more realistic values. --- json/items/tool/explosive.json | 27 +++++++++++++++++++++++++-- json/items/tool/traps.json | 28 ++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+), 2 deletions(-) create mode 100644 json/items/tool/traps.json (limited to 'json/items/tool') diff --git a/json/items/tool/explosive.json b/json/items/tool/explosive.json index 13cf58a..e74b7dc 100644 --- a/json/items/tool/explosive.json +++ b/json/items/tool/explosive.json @@ -6,6 +6,29 @@ "copy-from": "can_bomb_act", "name": { "str": "can bomb (active)", "str_pl": "can bombs (active)" } }, + { + "id": "c4", + "type": "TOOL", + "category": "weapons", + "name": { "str": "M112 explosive" }, + "description": "This is block of US military M112 composition-4 explosive. A label reads: \"Highly explosive, use with extreme caution!\" It comes with a small timer.", + "weight": "570 g", + "volume": "543 ml", + "price": 9000, + "price_postapoc": 2000, + "to_hit": -4, + "material": [ "plastic" ], + "symbol": ";", + "color": "light_gray", + "use_action": "C4" + }, + { + "id": "c4armed", + "type": "TOOL", + "category": "weapons", + "copy-from": "c4armed", + "name": { "str": "M112 explosive (armed)", "str_pl": "M112 explosives (armed)" } + }, { "id": "EMPbomb_act", "type": "TOOL", @@ -53,14 +76,14 @@ "type": "TOOL", "category": "weapons", "copy-from": "grenade", - "name": { "str": "fragmentation grenade" } + "name": { "str": "M67 fragmentation grenade" } }, { "id": "grenade_act", "type": "TOOL", "category": "weapons", "copy-from": "grenade_act", - "name": { "str": "fragmentation grenade (active)", "str_pl": "fragmentation grenades (active)" } + "name": { "str": "M67 fragmentation grenade (active)", "str_pl": "M67 fragmentation grenades (active)" } }, { "id": "makeshift_grenade", diff --git a/json/items/tool/traps.json b/json/items/tool/traps.json new file mode 100644 index 0000000..ea2b4d1 --- /dev/null +++ b/json/items/tool/traps.json @@ -0,0 +1,28 @@ +[ + { + "id": "landmine", + "//": "Rebalanced under the assumption this is intended to be the US M14 mine due to the lack of blast radius and reduced lethality compared to a grenade.", + "type": "GENERIC", + "category": "tools", + "name": { "str": "M14 land mine" }, + "description": "This is a US military M14 anti-personnel mine that is triggered when stepped upon.", + "weight": "108 g", + "volume": "704 ml", + "price": 5000, + "price_postapoc": 500, + "to_hit": -1, + "bashing": 6, + "material": "plastic", + "symbol": ";", + "color": "dark_gray", + "use_action": { + "type": "place_trap", + "bury_question": "Bury the land mine?", + "bury": { "trap": "tr_landmine_buried", "moves": 275, "practice": 7, "done_message": "You bury the land mine." }, + "trap": "tr_landmine", + "moves": 200, + "practice": 4, + "done_message": "You set the land mine." + } + } +] -- cgit v1.2.1