diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-03-15 19:44:00 -0700 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2023-03-15 19:44:00 -0700 |
commit | 3fbb3ac2958f1784a6dc649bc1c46c8977b9d35b (patch) | |
tree | 1d22884abf0d97f0c276489eee2d4b4be0dcea03 /vamp_stuff/Modification_Files/Items/Misc | |
parent | Typo. (diff) | |
download | cataclysm-bn-mod_vampire-stuff-redone-3fbb3ac2958f1784a6dc649bc1c46c8977b9d35b.tar.xz |
Backport some of the optimizations and bugfixes from my work porting to DDA.
Diffstat (limited to 'vamp_stuff/Modification_Files/Items/Misc')
-rw-r--r-- | vamp_stuff/Modification_Files/Items/Misc/v_currency.json | 4 | ||||
-rw-r--r-- | vamp_stuff/Modification_Files/Items/Misc/v_materials.json | 20 |
2 files changed, 12 insertions, 12 deletions
diff --git a/vamp_stuff/Modification_Files/Items/Misc/v_currency.json b/vamp_stuff/Modification_Files/Items/Misc/v_currency.json index af7c4b1..9e14fd0 100644 --- a/vamp_stuff/Modification_Files/Items/Misc/v_currency.json +++ b/vamp_stuff/Modification_Files/Items/Misc/v_currency.json @@ -4,8 +4,8 @@ "id": "bloodcoin", "name": { "str": "Velvet Token" }, "description": "A well-made, handcrafted crimson coin produced from the blood of an unknown creature. Its one side is adorned in impressive etched decorations, and the other shows the image of a man, with undecipherable text below it.", - "price": "50 cent", - "price_postapoc": "1000 cent", + "price": 50, + "price_postapoc": 1000, "weight": "2 g", "volume": "2 ml", "to_hit": -3, diff --git a/vamp_stuff/Modification_Files/Items/Misc/v_materials.json b/vamp_stuff/Modification_Files/Items/Misc/v_materials.json index ee0dbd1..0a7b73e 100644 --- a/vamp_stuff/Modification_Files/Items/Misc/v_materials.json +++ b/vamp_stuff/Modification_Files/Items/Misc/v_materials.json @@ -6,9 +6,9 @@ "copy-from": "blood", "name": { "str": "blood", "str_pl": "blood" }, "description": "Blood, possibly that of a human. Disgusting!", - "weight": "265 g", + "weight": "262 g", "volume": "250 ml", - "price": "0 cent", + "price": 0, "material": [ "blood" ], "phase": "liquid", "symbol": "~", @@ -61,7 +61,7 @@ "description": "Dehydrated blood powder. Mix with water to make drinkable blood.", "weight": "3 g", "volume": "3 ml", - "price": "0 cent", + "price": 0, "material": [ "powder", "blood" ], "primary_material": "powder", "symbol": "'", @@ -90,7 +90,7 @@ "description": "A patch of fabric made from powdered blood. While initially known for its aesthetic qualities, blood leather has proven comparable to kevlar for use in body armor.", "weight": "250 g", "volume": "250 ml", - "price": "0 cent", + "price": 0, "material": [ "compactblood" ], "symbol": "#", "color": "red" @@ -103,7 +103,7 @@ "description": "A sticky glob of concentrated blood.", "weight": "250 g", "volume": "250 ml", - "price": "0 cent", + "price": 0, "material": [ "compactblood" ], "symbol": "o", "color": "red" @@ -116,7 +116,7 @@ "description": "A tiny blood pellet, sparkling like a sanguine ruby.", "weight": "10 g", "volume": "3 ml", - "price": "0 cent", + "price": 0, "material": [ "compactblood" ], "symbol": ".", "color": "red" @@ -129,7 +129,7 @@ "description": "Fine powder made from heating and refining a bloodrune. It generates a stable faint glow.", "weight": "750 g", "volume": "250 ml", - "price": "0 cent", + "price": 0, "material": [ "compactblood" ], "symbol": "~", "color": "red" @@ -142,7 +142,7 @@ "description": "A stone similar to a fist-sized ruby, the final remains of a slain vampire. It mimics a heartbeat with unreadable markings on the interior that appear and disappear like clockwork.", "weight": "750 g", "volume": "250 ml", - "price": "0 cent", + "price": 0, "material": [ "compactblood" ], "symbol": ".", "color": "red" @@ -155,7 +155,7 @@ "description": "A stone similar to a head-sized ruby, the final remains of a powerful vampire. It trembles of its own volition, as if the power inside is eager to escape.", "weight": "3000 g", "volume": "1750 ml", - "price": "0 cent", + "price": 0, "material": [ "compactblood" ], "symbol": ".", "color": "red" @@ -169,7 +169,7 @@ "description": "This is a sealed IV bag containing blood. Use to open.", "weight": "540 g", "volume": "550 ml", - "price": "0 cent", + "price": 0, "to_hit": -1, "material": [ "plastic", "blood" ], "symbol": ")", |