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/38.json | |
download | cataclysm-bn-mod_revert-handgun-damage-buff-f83788bd57bb5e03cbe8164e2be2519c35b35a4b.tar.xz |
Initial commit
Diffstat (limited to 'json/items/ammo/38.json')
-rw-r--r-- | json/items/ammo/38.json | 101 |
1 files changed, 101 insertions, 0 deletions
diff --git a/json/items/ammo/38.json b/json/items/ammo/38.json new file mode 100644 index 0000000..23dc200 --- /dev/null +++ b/json/items/ammo/38.json @@ -0,0 +1,101 @@ +[ + { + "id": "38_special", + "type": "AMMO", + "name": { "str": ".38 Special" }, + "description": ".38 Special ammunition with 130gr FMJ bullets. The .38 Special round was extremely common among US police forces during the 20th century.", + "weight": "8 g", + "volume": "113 ml", + "price": 210, + "price_postapoc": 800, + "flags": [ "IRREPLACEABLE_CONSUMABLE" ], + "material": [ "brass", "powder" ], + "symbol": "=", + "color": "yellow", + "count": 40, + "stack_size": 40, + "ammo_type": "38", + "casing": "38_casing", + "range": 14, + "damage": { "damage_type": "stab", "amount": 22 }, + "dispersion": 30, + "recoil": 250, + "effects": [ "COOKOFF" ] + }, + { + "id": "38_fmj", + "copy-from": "38_special", + "type": "AMMO", + "name": { "str_sp": ".38 FMJ" }, + "description": ".38 Special ammunition with brass jacketed 130gr bullets. The .38 Special round has been known from its inception for its accuracy and low recoil.", + "relative": { "damage": { "damage_type": "stab", "amount": -2, "armor_penetration": 4 } } + }, + { + "id": "38_super", + "copy-from": "38_special", + "type": "AMMO", + "name": { "str_sp": ".38 Super" }, + "description": ".38 Super ammunition with 90gr JHP bullets. Designed in 1929, the .38 super cartridge was designed to penetrate body armor and vehicles.", + "price": 240, + "price_postapoc": 600, + "flags": [ "IRREPLACEABLE_CONSUMABLE" ], + "count": 20, + "relative": { "damage": { "damage_type": "stab", "amount": 5, "armor_penetration": 4 }, "dispersion": -10 }, + "proportional": { "recoil": 1.5 } + }, + { + "id": "reloaded_38_fmj", + "copy-from": "38_fmj", + "type": "AMMO", + "name": { "str_sp": ".38 FMJ, 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": "reloaded_38_special", + "copy-from": "38_special", + "type": "AMMO", + "name": { "str_sp": ".38 Special, 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": "reloaded_38_super", + "copy-from": "38_super", + "type": "AMMO", + "name": { "str_sp": ".38 Super, 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_38_fmj", + "copy-from": "38_fmj", + "type": "AMMO", + "name": { "str_sp": ".38 FMJ, 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" ] } + }, + { + "id": "bp_38_special", + "copy-from": "38_special", + "type": "AMMO", + "name": { "str_sp": ".38 Special, 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" ] } + } +] |