diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-07-29 06:30:17 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2021-07-29 06:30:17 -0700 |
commit | f83788bd57bb5e03cbe8164e2be2519c35b35a4b (patch) | |
tree | dff932fb8291b747645399d73a9ff1a887f852eb /json/items/ammo/45colt.json | |
download | cataclysm-bn-mod_revert-handgun-damage-buff-f83788bd57bb5e03cbe8164e2be2519c35b35a4b.tar.xz |
Initial commit
Diffstat (limited to 'json/items/ammo/45colt.json')
-rw-r--r-- | json/items/ammo/45colt.json | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/json/items/ammo/45colt.json b/json/items/ammo/45colt.json new file mode 100644 index 0000000..b9a2446 --- /dev/null +++ b/json/items/ammo/45colt.json @@ -0,0 +1,48 @@ +[ + { + "id": "45colt_jhp", + "type": "AMMO", + "name": { "str_sp": ".45 Colt JHP" }, + "description": ".45 Colt ammunition with 250gr jacketed hollow point bullets. Originally designed for the Colt Single Action Army, and still used for modern reproduction revolvers. Originally a black powder cartridge, modern loads can make this round competitive in the new era.", + "weight": "12 g", + "volume": "190 ml", + "price": 200, + "price_postapoc": 800, + "flags": [ "IRREPLACEABLE_CONSUMABLE" ], + "material": [ "brass", "powder" ], + "symbol": "=", + "color": "yellow", + "count": 40, + "stack_size": 40, + "ammo_type": "45colt", + "casing": "45colt_casing", + "range": 16, + "damage": { "damage_type": "stab", "amount": 25, "armor_penetration": 2 }, + "dispersion": 50, + "recoil": 600, + "effects": [ "COOKOFF" ] + }, + { + "id": "reloaded_45colt_jhp", + "copy-from": "45colt_jhp", + "type": "AMMO", + "name": { "str_sp": ".45 Colt JHP, reloaded" }, + "proportional": { "price": 0.7, "damage": { "damage_type": "stab", "amount": 0.9 }, "dispersion": 1.1 }, + "extend": { "effects": [ "RECYCLED" ] }, + "delete": { "effects": [ "NEVER_MISFIRES" ], "flags": [ "IRREPLACEABLE_CONSUMABLE" ] } + }, + { + "id": "bp_45colt_jhp", + "copy-from": "45colt_jhp", + "type": "AMMO", + "name": { "str_sp": ".45 Colt JHP, black powder" }, + "proportional": { + "price": 0.3, + "damage": { "damage_type": "stab", "amount": 0.76, "armor_penetration": 0.5 }, + "recoil": 0.76, + "dispersion": 1.2 + }, + "extend": { "effects": [ "RECYCLED", "BLACKPOWDER", "MUZZLE_SMOKE" ] }, + "delete": { "effects": [ "NEVER_MISFIRES" ], "flags": [ "IRREPLACEABLE_CONSUMABLE" ] } + } +] |