diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-06-01 14:55:34 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-06-01 14:55:34 -0700 |
commit | 28bac7eb11c4ce6896d7e9b38f7cb0ae379ff1e4 (patch) | |
tree | 92af6c641601d16f18e229e215c244fcf3db718a /json/items | |
parent | Upgrade 4.6mm to not misfire (diff) | |
download | cataclysm-bn-mod_hk-loadout-28bac7eb11c4ce6896d7e9b38f7cb0ae379ff1e4.tar.xz |
Fix 000shot armor penetration for the new damage syntax
Move 000slug dispersion to relative.
Increase price of 000shot. (+50% compared to 00shot)
Reduce post-apoc price of 000shot. (2x normal price due to rarity)
Diffstat (limited to 'json/items')
-rw-r--r-- | json/items/ammo/000shot.json | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/json/items/ammo/000shot.json b/json/items/ammo/000shot.json index e28eff6..b0a7de8 100644 --- a/json/items/ammo/000shot.json +++ b/json/items/ammo/000shot.json @@ -34,8 +34,8 @@ "description": "A shell filled with metal pellets. Extremely damaging, plus the spread makes it very accurate at short range. Favored by SWAT forces.", "weight": "32 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 3500, + "price": 750, + "price_postapoc": 1500, "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "plastic", "powder" ], "symbol": "=", @@ -57,10 +57,10 @@ "type": "AMMO", "name": { "str": "000 flechette shell" }, "description": "A shotgun shell filled with tiny steel darts. Extremely damaging, plus the spread makes it very accurate at short range. Slices through most forms of armor with ease.", - "price": 2000, - "price_postapoc": 10000, + "price": 3000, + "price_postapoc": 6000, "count": 10, - "relative": { "damage": { "damage_type": "stab", "amount": -5 } } + "relative": { "damage": { "damage_type": "stab", "amount": -5, "armor_penetration": 15 } } }, { "id": "shot_000_slug", @@ -69,10 +69,9 @@ "type": "AMMO", "name": { "str": "000 shotgun slug" }, "description": "A heavy metal slug used with shotguns to give them the range capabilities of a rifle. Extremely damaging but rather inaccurate.", - "price": 400, - "price_postapoc": 4500, - "dispersion": 100, - "relative": { "range": 12, "armor_penetration": 8 }, + "price": 600, + "price_postapoc": 1200, + "relative": { "range": 12, "damage": { "damage_type": "stab", "armor_penetration": 8 }, "dispersion": 100 }, "proportional": { "recoil": 1.4 }, "delete": { "effects": [ "SHOT" ] } } |