From 495b4c78701c9ae8c9be1579d61720f48e934300 Mon Sep 17 00:00:00 2001 From: jc_gargma Date: Wed, 15 Mar 2023 20:36:00 -0700 Subject: Backport fixes/optimizations found when porting to DDA. --- ammo.json | 40 +++++++++++++++++++++++----------------- 1 file changed, 23 insertions(+), 17 deletions(-) (limited to 'ammo.json') diff --git a/ammo.json b/ammo.json index 1711425..3029a5f 100644 --- a/ammo.json +++ b/ammo.json @@ -1,45 +1,51 @@ [ { + "id": "throwing_knife", "type": "GENERIC", + "category": "weapons", + "price": 5200, + "price_postapoc": 500, + "name": { "str": "throwing knife", "str_pl": "throwing knives" }, + "symbol": ";", + "color": "light_gray", + "description": "A thin and flat knife made for throwing. Its ineffective cutting edge and odd shape makes it unsuitable for use as a tool.", + "material": [ "steel" ], + "volume": "250 ml", + "weight": "268 g", + "to_hit": -2, + "bashing": 1, + "cutting": 10, + "thrown_damage": [ { "damage_type": "stab", "amount": 14 } ], + "flags": [ "SHEATH_KNIFE" ] + }, + { "id": "assassins_throwing_dagger", + "copy-from": "throwing_knife", + "type": "GENERIC", "category": "weapons", - "price": "90 USD", + "price": 9000, + "price_postapoc": 900, "name": { "str": "assassin's throwing knife" }, "symbol": "/", "color": "light_gray", "description": "A nimble blade meant for ranged assassination, but makes an improvised cutlery tool in a pinch. It's very lightweight and silent and can be used on both zombies and games involving apples.", "material": [ "steel", "leather" ], - "volume": "250 ml", "weight": "350 g", "cutting": 21, "to_hit": 2, - "flags": [ "SHEATH_KNIFE" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 10 ] ], "thrown_damage": [ { "damage_type": "stab", "amount": 25 } ] }, { - "type": "GENERIC", - "id": "throwing_knife", - "category": "weapons", + "id": "makeshift_throwing_knife", "copy-from": "throwing_knife", - "name": { "str": "throwing knife", "str_pl": "throwing knives" }, - "flags": [ "SHEATH_KNIFE" ] - }, - { "type": "GENERIC", - "id": "makeshift_throwing_knife", "category": "weapons", - "price": "52 USD", "name": { "str": "makeshift throwing knife" }, - "symbol": ";", - "color": "light_gray", "description": "A crude and simple throwing knife made from a sharpened piece of salvaged steel with cloth wrapped around it. It's better than throwing rocks, at least.", - "material": [ "steel" ], - "volume": "250 ml", "weight": "150 g", "bashing": 0, "cutting": 7, - "flags": [ "SHEATH_KNIFE" ], "thrown_damage": [ { "damage_type": "stab", "amount": 10 } ] } ] -- cgit v1.2.1