summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjc_gargma <jc_gargma@iserlohn-fortress.net>2023-11-08 22:03:51 -0800
committerjc_gargma <jc_gargma@iserlohn-fortress.net>2023-11-08 22:03:51 -0800
commitefc2bc21273786f60f1d0938e7860b91236b31f4 (patch)
treefa190ff0288571c5655674d607b0bf9a9cce0d76
parentClean up numerous entries. (diff)
downloadcataclysm-bn-mod_revert-handgun-damage-buff-efc2bc21273786f60f1d0938e7860b91236b31f4.tar.xz
Add blunderbuss rounds.
-rw-r--r--json/items/handloaded_bullets.json64
1 files changed, 64 insertions, 0 deletions
diff --git a/json/items/handloaded_bullets.json b/json/items/handloaded_bullets.json
new file mode 100644
index 0000000..8b7d1e2
--- /dev/null
+++ b/json/items/handloaded_bullets.json
@@ -0,0 +1,64 @@
+[
+ {
+ "type": "AMMO",
+ "id": "blun_slug",
+ "price": 4500,
+ "price_postapoc": 50,
+ "name": { "str": "blunderbuss slug" },
+ "symbol": "=",
+ "color": "red",
+ "description": "A prepared blunderbuss shot of a large hunk of metal. Better for distance.",
+ "material": [ "paper", "powder" ],
+ "volume": "100 ml",
+ "weight": "3 g",
+ "bashing": 1,
+ "ammo_type": "blunderbuss",
+ "//": "Half the expected armor pernetration, additionally all blinderbuss rounds have an armor multiplier.",
+ "damage": { "damage_type": "bullet", "amount": 44, "armor_penetration": 8, "armor_multiplier": 2.5 },
+ "range": 12,
+ "dispersion": 60,
+ "recoil": 840,
+ "effects": [ "COOKOFF", "RECYCLED" ]
+ },
+ {
+ "type": "AMMO",
+ "id": "blun_shot",
+ "price": 4500,
+ "price_postapoc": 50,
+ "name": { "str": "blunderbuss shot" },
+ "symbol": "=",
+ "color": "red",
+ "description": "A prepared blunderbuss shot of marbles, pebbles, bearings, basically whatever is at hand. The homemade pellet spread and number makes up for the shoddy quality.",
+ "material": [ "paper", "powder" ],
+ "volume": "100 ml",
+ "weight": "2 g",
+ "bashing": 1,
+ "ammo_type": "blunderbuss",
+ "damage": { "damage_type": "bullet", "amount": 55, "armor_multiplier": 3.0 },
+ "range": 6,
+ "dispersion": 1000,
+ "recoil": 780,
+ "effects": [ "COOKOFF", "SHOT", "RECYCLED" ]
+ },
+ {
+ "type": "AMMO",
+ "id": "blun_flechette",
+ "price": 4500,
+ "price_postapoc": 50,
+ "name": { "str": "blunderbuss flechette" },
+ "symbol": "=",
+ "color": "red",
+ "description": "A prepared blunderbuss shot of homemade flechette made out of nails. Shreds armor.",
+ "material": [ "plastic", "powder" ],
+ "volume": "100 ml",
+ "weight": "3 g",
+ "bashing": 1,
+ "ammo_type": "blunderbuss",
+ "//": "Balanced as standard FMJ to allow lower damage but more penetration over shot.",
+ "damage": { "damage_type": "bullet", "amount": 44, "armor_penetration": 12, "armor_multiplier": 2.0 },
+ "range": 10,
+ "dispersion": 1000,
+ "recoil": 840,
+ "effects": [ "COOKOFF", "SHOT", "RECYCLED" ]
+ }
+]