From 8f410bf9594585c9140f5f5b99b7be24fb8deba3 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Thu, 9 Nov 2023 09:44:36 -0800 Subject: Rebalance atgm, homemade-rocket, and rpg ammo. --- json/items/ammo/atgm.json | 9 +++++++++ json/items/ammo/homemade-rocket.json | 10 ++++++++++ json/items/ammo/rpg.json | 34 ++++++++++++++++++++++++++++++++++ 3 files changed, 53 insertions(+) create mode 100644 json/items/ammo/atgm.json create mode 100644 json/items/ammo/homemade-rocket.json create mode 100644 json/items/ammo/rpg.json diff --git a/json/items/ammo/atgm.json b/json/items/ammo/atgm.json new file mode 100644 index 0000000..873a8db --- /dev/null +++ b/json/items/ammo/atgm.json @@ -0,0 +1,9 @@ +[ + { + "id": "atgm_heat", + "copy-from": "atgm_heat", + "type": "AMMO", + "name": { "str": "152mm ATGM HEAT" }, + "damage": { "damage_type": "stab", "amount": 2400, "armor_penetration": 600 } + } +] diff --git a/json/items/ammo/homemade-rocket.json b/json/items/ammo/homemade-rocket.json new file mode 100644 index 0000000..65d2dd1 --- /dev/null +++ b/json/items/ammo/homemade-rocket.json @@ -0,0 +1,10 @@ +[ + { + "id": "explosive_hm_rocket", + "copy-from": "explosive_hm_rocket", + "type": "AMMO", + "name": { "str": "explosive homemade rocket" }, + "damage": { "damage_type": "stab", "amount": 500, "armor_penetration": 10 }, + "effects": [ "COOKOFF", "TRAIL", "EXPLOSIVE" ] + } +] diff --git a/json/items/ammo/rpg.json b/json/items/ammo/rpg.json new file mode 100644 index 0000000..1113ed9 --- /dev/null +++ b/json/items/ammo/rpg.json @@ -0,0 +1,34 @@ +[ + { + "id": "RPG-7_ammo", + "copy-from": "RPG-7_ammo", + "type": "AMMO", + "name": { "str": "PG-7VL RPG-7 rocket" }, + "damage": { "damage_type": "stab", "amount": 3000, "armor_penetration": 750 }, + "effects": [ "COOKOFF", "TRAIL", "NEVER_MISFIRES", "EXPLOSIVE_BIG" ] + }, + { + "id": "RPG-7_pg7vr", + "copy-from": "RPG-7_pg7vr", + "type": "AMMO", + "name": { "str": "PG-7VR RPG-7 rocket" }, + "damage": { "damage_type": "stab", "amount": 3250, "armor_penetration": 1450 }, + "effects": [ "COOKOFF", "TRAIL", "NEVER_MISFIRES", "EXPLOSIVE_BIG", "FRAG_BIG" ] + }, + { + "id": "RPG-7_tbg7v", + "copy-from": "RPG-7_tbg7v", + "type": "AMMO", + "name": { "str": "TBG-7V RPG-7 rocket" }, + "damage": { "damage_type": "stab", "amount": 150, "armor_penetration": 10 }, + "effects": [ "COOKOFF", "TRAIL", "NEVER_MISFIRES", "EXPLOSIVE_TINY", "FRAG_BIG", "PYROPHORIC" ] + }, + { + "id": "RPG-7_og7v", + "copy-from": "RPG-7_og7v", + "type": "AMMO", + "name": { "str": "OG-7V RPG-7 rocket" }, + "damage": { "damage_type": "stab", "amount": 80, "armor_penetration": 10 }, + "effects": [ "COOKOFF", "TRAIL", "NEVER_MISFIRES", "EXPLOSIVE_SMALL", "FRAG" ] + } +] -- cgit v1.2.1