From 9251ce402a6b6844d9bba73687495135bb5f583f Mon Sep 17 00:00:00 2001 From: Antti Riikonen Date: Tue, 23 Apr 2024 16:01:44 +0300 Subject: [PATCH 1/6] Incompatible tools only pop out from workstations, not from other vehicle parts on the same tile (#73170) * Check vehicle part for incompatible tools instead of vehicle position * don't use auto in iteration --- src/vehicle_use.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vehicle_use.cpp b/src/vehicle_use.cpp index bdf35b4f800f6..4be65521317e5 100644 --- a/src/vehicle_use.cpp +++ b/src/vehicle_use.cpp @@ -2107,9 +2107,10 @@ void vehicle::build_interact_menu( veh_menu &menu, const tripoint &p, bool with_ builtin_tool_types.insert( tool_type ); } + std::vector &stored_tools = vp_toolstation->part().tools; std::vector tools_to_remove; // Tool is incompatible if it's not in allowed types and isn't a pseudo tool - for( const auto &[tool_item, _] : vp.get_tools() ) { + for( const item &tool_item : stored_tools ) { const itype_id &tool_type = tool_item.typeId(); if( builtin_tool_types.find( tool_type ) != builtin_tool_types.end() ) { continue; @@ -2127,7 +2128,6 @@ void vehicle::build_interact_menu( veh_menu &menu, const tripoint &p, bool with_ you.add_or_drop_with_msg( tool_to_remove ); } - std::vector &stored_tools = vp_toolstation->part().tools; stored_tools.erase( std::remove_if( stored_tools.begin(), stored_tools.end(), [&tools_to_remove]( const item & item_to_remove ) { From aa93ac3594a3239e5f5d6ebca6227a91242d7fad Mon Sep 17 00:00:00 2001 From: Anton Simakov <67688115+GuardianDll@users.noreply.github.com> Date: Tue, 23 Apr 2024 15:03:17 +0200 Subject: [PATCH 2/6] Replace `price` and `price_postapoc` int with string (#73195) * price to kUSD * price to USD * price to cent * fix proportion * fix the rest of errors * revert shopkeeper_price_rules using string * revert price_rules using string * fix proportional --- data/json/artifact/artifact_item_types.json | 10 +- data/json/items/ammo.json | 286 +++---- data/json/items/ammo/10mm.json | 12 +- data/json/items/ammo/12mm.json | 4 +- data/json/items/ammo/20x66mm.json | 24 +- data/json/items/ammo/22.json | 10 +- data/json/items/ammo/223.json | 20 +- data/json/items/ammo/270win.json | 4 +- data/json/items/ammo/300.json | 4 +- data/json/items/ammo/3006.json | 4 +- data/json/items/ammo/300blk.json | 4 +- data/json/items/ammo/303.json | 4 +- data/json/items/ammo/308.json | 4 +- data/json/items/ammo/30carbine.json | 8 +- data/json/items/ammo/32.json | 8 +- data/json/items/ammo/338lapua.json | 4 +- data/json/items/ammo/357mag.json | 4 +- data/json/items/ammo/357sig.json | 4 +- data/json/items/ammo/36paper.json | 4 +- data/json/items/ammo/38.json | 8 +- data/json/items/ammo/380.json | 8 +- data/json/items/ammo/38super.json | 8 +- data/json/items/ammo/40.json | 4 +- data/json/items/ammo/40x46mm.json | 24 +- data/json/items/ammo/410shot.json | 4 +- data/json/items/ammo/44.json | 4 +- data/json/items/ammo/44paper.json | 4 +- data/json/items/ammo/45.json | 8 +- data/json/items/ammo/450bushmaster.json | 8 +- data/json/items/ammo/454.json | 4 +- data/json/items/ammo/4570.json | 12 +- data/json/items/ammo/458wm.json | 4 +- data/json/items/ammo/45colt.json | 4 +- data/json/items/ammo/46.json | 4 +- data/json/items/ammo/50.json | 8 +- data/json/items/ammo/500.json | 4 +- data/json/items/ammo/50_beowulf.json | 8 +- data/json/items/ammo/50ae.json | 4 +- data/json/items/ammo/545x39.json | 8 +- data/json/items/ammo/57.json | 6 +- data/json/items/ammo/66mm.json | 8 +- data/json/items/ammo/762.json | 8 +- data/json/items/ammo/762R.json | 4 +- data/json/items/ammo/762x25.json | 8 +- data/json/items/ammo/77mm_jap.json | 4 +- data/json/items/ammo/84x246mm.json | 12 +- data/json/items/ammo/8x40mm.json | 4 +- data/json/items/ammo/9mm.json | 12 +- data/json/items/ammo/9x18.json | 12 +- data/json/items/ammo/atgm.json | 4 +- data/json/items/ammo/barb.json | 2 +- data/json/items/ammo/blank.json | 4 +- data/json/items/ammo/cannon.json | 4 +- data/json/items/ammo/chemical_spray.json | 12 +- data/json/items/ammo/exodii.json | 24 +- data/json/items/ammo/flintlock.json | 8 +- data/json/items/ammo/nail.json | 8 +- data/json/items/ammo/paintball.json | 4 +- data/json/items/ammo/shot.json | 28 +- data/json/items/ammo/signal_flare.json | 4 +- data/json/items/ammo/sling-ready_grenade.json | 16 +- data/json/items/ammo/weldgas.json | 28 +- data/json/items/appliances.json | 44 +- data/json/items/armor/ammo_pouch.json | 142 ++-- data/json/items/armor/arms_armor.json | 112 +-- data/json/items/armor/ballistic_armor.json | 36 +- data/json/items/armor/bandolier.json | 52 +- data/json/items/armor/belts.json | 36 +- .../armor/bespoke_armor/custom_bodysuits.json | 34 +- .../armor/bespoke_armor/custom_boots.json | 28 +- .../armor/bespoke_armor/custom_gloves.json | 32 +- .../armor/bespoke_armor/custom_headgear.json | 30 +- .../armor/bespoke_armor/custom_legs.json | 12 +- .../armor/bespoke_armor/custom_overcoats.json | 20 +- .../armor/bespoke_armor/custom_storage.json | 32 +- .../armor/bespoke_armor/custom_underwear.json | 4 +- .../armor/bespoke_armor/cuttingroom.json | 52 +- .../items/armor/bespoke_armor/utility.json | 12 +- data/json/items/armor/boots.json | 262 +++--- data/json/items/armor/brigandine.json | 48 +- data/json/items/armor/cardboard.json | 16 +- data/json/items/armor/cloaks.json | 72 +- data/json/items/armor/coats.json | 272 +++---- data/json/items/armor/combat_exoskeleton.json | 4 +- .../items/armor/combat_exoskeleton_armor.json | 16 +- data/json/items/armor/exotic.json | 48 +- data/json/items/armor/eyewear.json | 120 +-- data/json/items/armor/gambesons.json | 74 +- data/json/items/armor/gloves.json | 188 ++--- data/json/items/armor/hats.json | 152 ++-- data/json/items/armor/head_attachments.json | 64 +- data/json/items/armor/helmets.json | 162 ++-- data/json/items/armor/holster.json | 64 +- data/json/items/armor/hoods.json | 28 +- data/json/items/armor/integrated.json | 168 ++-- data/json/items/armor/jewelry.json | 382 ++++----- data/json/items/armor/legs_armor.json | 140 ++-- data/json/items/armor/legs_clothes.json | 196 ++--- data/json/items/armor/masks.json | 62 +- data/json/items/armor/misc.json | 72 +- data/json/items/armor/pets_cow_armor.json | 40 +- data/json/items/armor/pets_dog_armor.json | 28 +- data/json/items/armor/pets_horse_armor.json | 44 +- data/json/items/armor/robofac_armor.json | 32 +- data/json/items/armor/scarfs.json | 144 ++-- data/json/items/armor/sheath.json | 52 +- data/json/items/armor/storage.json | 256 +++--- data/json/items/armor/suits_clothes.json | 78 +- data/json/items/armor/suits_protection.json | 134 +-- data/json/items/armor/swimming.json | 116 +-- data/json/items/armor/torso_armor.json | 160 ++-- data/json/items/armor/torso_clothes.json | 212 ++--- data/json/items/armor/undergarment.json | 140 ++-- data/json/items/battery.json | 70 +- data/json/items/bionics.json | 394 ++++----- data/json/items/biosignatures.json | 8 +- data/json/items/book/abstract.json | 38 +- data/json/items/book/archery.json | 10 +- data/json/items/book/barter.json | 12 +- data/json/items/book/bashing.json | 8 +- data/json/items/book/chemistry.json | 76 +- data/json/items/book/computer.json | 32 +- data/json/items/book/cooking.json | 110 +-- data/json/items/book/cutting.json | 12 +- data/json/items/book/dodge.json | 10 +- data/json/items/book/driving.json | 16 +- data/json/items/book/electronics.json | 62 +- data/json/items/book/fabrication.json | 144 ++-- data/json/items/book/firstaid.json | 36 +- data/json/items/book/gun.json | 12 +- data/json/items/book/launcher.json | 8 +- data/json/items/book/lockpick.json | 4 +- data/json/items/book/maps.json | 4 +- data/json/items/book/martial.json | 68 +- data/json/items/book/mechanics.json | 36 +- data/json/items/book/melee.json | 8 +- data/json/items/book/misc.json | 124 +-- data/json/items/book/misc_philosophy.json | 10 +- data/json/items/book/misc_scifi.json | 14 +- data/json/items/book/misc_sports.json | 16 +- data/json/items/book/pistol.json | 8 +- data/json/items/book/rifle.json | 12 +- data/json/items/book/shotgun.json | 8 +- data/json/items/book/smg.json | 8 +- data/json/items/book/speech.json | 20 +- data/json/items/book/spiritual.json | 16 +- data/json/items/book/stabbing.json | 12 +- data/json/items/book/survival.json | 44 +- data/json/items/book/swimming.json | 8 +- data/json/items/book/tailor.json | 40 +- data/json/items/book/throw.json | 8 +- data/json/items/book/traps.json | 28 +- data/json/items/book/unarmed.json | 8 +- data/json/items/book/young.json | 12 +- data/json/items/chemicals_and_resources.json | 404 ++++----- data/json/items/classes/magazine.json | 2 +- data/json/items/comestibles/alcohol.json | 262 +++--- data/json/items/comestibles/bread.json | 12 +- data/json/items/comestibles/brewing.json | 106 +-- data/json/items/comestibles/carnivore.json | 216 ++--- data/json/items/comestibles/casseroles.json | 20 +- data/json/items/comestibles/cereal.json | 4 +- data/json/items/comestibles/dairy.json | 70 +- data/json/items/comestibles/drink.json | 286 +++---- data/json/items/comestibles/drink_other.json | 64 +- data/json/items/comestibles/egg.json | 96 +-- data/json/items/comestibles/frozen.json | 44 +- data/json/items/comestibles/fruit_dishes.json | 36 +- data/json/items/comestibles/junkfood.json | 92 +-- data/json/items/comestibles/meat_dishes.json | 190 ++--- data/json/items/comestibles/med.json | 68 +- data/json/items/comestibles/mre.json | 16 +- data/json/items/comestibles/mushroom.json | 20 +- data/json/items/comestibles/mutagen.json | 24 +- data/json/items/comestibles/nuts.json | 46 +- data/json/items/comestibles/offal_dishes.json | 8 +- data/json/items/comestibles/other.json | 152 ++-- data/json/items/comestibles/protein.json | 12 +- data/json/items/comestibles/raw_fruit.json | 168 ++-- data/json/items/comestibles/raw_grain.json | 98 +-- data/json/items/comestibles/raw_veggy.json | 162 ++-- data/json/items/comestibles/sandwich.json | 134 +-- data/json/items/comestibles/seed.json | 40 +- data/json/items/comestibles/soup.json | 92 +-- data/json/items/comestibles/spice.json | 8 +- data/json/items/comestibles/veggy_dishes.json | 216 ++--- data/json/items/comestibles/wheat.json | 66 +- data/json/items/containers/containers.json | 536 ++++++------ data/json/items/containers/conversions.json | 20 +- data/json/items/containers/generic.json | 10 +- data/json/items/containers/lab.json | 4 +- data/json/items/containers/military.json | 18 +- data/json/items/corpses/corpses.json | 6 +- data/json/items/corpses/dead_exodii.json | 8 +- data/json/items/corpses/dead_yrax.json | 2 +- data/json/items/corpses/inactive_bots.json | 140 ++-- data/json/items/electronics.json | 14 +- data/json/items/fluff.json | 314 +++---- data/json/items/fuel.json | 76 +- data/json/items/furniture/decorative.json | 4 +- data/json/items/furniture/seating.json | 24 +- data/json/items/furniture/storage.json | 2 +- data/json/items/generic.json | 764 +++++++++--------- data/json/items/generic/bathroom_house.json | 50 +- data/json/items/generic/bedding.json | 50 +- data/json/items/generic/casing.json | 8 +- data/json/items/generic/currency.json | 152 ++-- data/json/items/generic/dining_kitchen.json | 66 +- data/json/items/generic/mail.json | 20 +- data/json/items/generic/skulls.json | 4 +- data/json/items/generic/spares.json | 92 +-- data/json/items/generic/storage.json | 8 +- data/json/items/generic/string.json | 4 +- data/json/items/generic/toys_and_sports.json | 62 +- data/json/items/gun/10mm.json | 44 +- data/json/items/gun/12mm.json | 4 +- data/json/items/gun/20x66mm.json | 12 +- data/json/items/gun/22.json | 36 +- data/json/items/gun/223.json | 84 +- data/json/items/gun/270win.json | 4 +- data/json/items/gun/300.json | 16 +- data/json/items/gun/3006.json | 24 +- data/json/items/gun/300BLK.json | 12 +- data/json/items/gun/303.json | 8 +- data/json/items/gun/308.json | 60 +- data/json/items/gun/30carbine.json | 4 +- data/json/items/gun/32.json | 12 +- data/json/items/gun/338lapua.json | 16 +- data/json/items/gun/357sig.json | 10 +- data/json/items/gun/36paper.json | 4 +- data/json/items/gun/38.json | 28 +- data/json/items/gun/380.json | 28 +- data/json/items/gun/38super.json | 8 +- data/json/items/gun/40.json | 32 +- data/json/items/gun/40x46mm.json | 22 +- data/json/items/gun/40x53mm.json | 4 +- data/json/items/gun/410shot.json | 6 +- data/json/items/gun/44.json | 16 +- data/json/items/gun/44paper.json | 4 +- data/json/items/gun/45.json | 48 +- data/json/items/gun/450bushmaster.json | 4 +- data/json/items/gun/454.json | 4 +- data/json/items/gun/4570.json | 12 +- data/json/items/gun/458wm.json | 4 +- data/json/items/gun/45colt.json | 12 +- data/json/items/gun/46.json | 4 +- data/json/items/gun/460.json | 4 +- data/json/items/gun/50.json | 20 +- data/json/items/gun/500.json | 4 +- data/json/items/gun/545x39.json | 8 +- data/json/items/gun/57.json | 20 +- data/json/items/gun/66mm.json | 4 +- data/json/items/gun/762.json | 34 +- data/json/items/gun/762R.json | 12 +- data/json/items/gun/762x25.json | 8 +- data/json/items/gun/77mm_jap.json | 4 +- data/json/items/gun/84x246mm.json | 12 +- data/json/items/gun/8x40mm.json | 24 +- data/json/items/gun/9mm.json | 142 ++-- data/json/items/gun/9x18.json | 4 +- data/json/items/gun/artisan_guns.json | 8 +- data/json/items/gun/atgm.json | 4 +- data/json/items/gun/bio.json | 12 +- data/json/items/gun/blunderbuss.json | 4 +- data/json/items/gun/cannon.json | 4 +- data/json/items/gun/chemical_spray.json | 4 +- data/json/items/gun/combination.json | 4 +- data/json/items/gun/exodii.json | 20 +- data/json/items/gun/flammable.json | 8 +- data/json/items/gun/flintlock.json | 20 +- data/json/items/gun/nail.json | 8 +- data/json/items/gun/paintball.json | 4 +- data/json/items/gun/robofac_gun.json | 88 +- data/json/items/gun/shot.json | 94 +-- data/json/items/gun/signal_flare.json | 4 +- data/json/items/gun/ups.json | 22 +- data/json/items/gunmod/accessories.json | 28 +- data/json/items/gunmod/barrel.json | 12 +- data/json/items/gunmod/brass_catcher.json | 4 +- data/json/items/gunmod/conversions.json | 94 +-- data/json/items/gunmod/grip.json | 12 +- data/json/items/gunmod/laser_gunmods.json | 20 +- data/json/items/gunmod/loading_port.json | 4 +- data/json/items/gunmod/mechanism.json | 36 +- data/json/items/gunmod/mount.json | 32 +- data/json/items/gunmod/muzzle.json | 32 +- data/json/items/gunmod/rail.json | 16 +- data/json/items/gunmod/sights.json | 54 +- data/json/items/gunmod/sling.json | 8 +- data/json/items/gunmod/stock.json | 56 +- data/json/items/gunmod/underbarrel.json | 94 +-- data/json/items/handloaded_bullets.json | 16 +- data/json/items/id_cards.json | 38 +- data/json/items/items_holiday.json | 18 +- data/json/items/magazine/10mm.json | 44 +- data/json/items/magazine/12mm.json | 4 +- data/json/items/magazine/20x60mm.json | 12 +- data/json/items/magazine/22.json | 52 +- data/json/items/magazine/223.json | 74 +- data/json/items/magazine/300.json | 8 +- data/json/items/magazine/3006.json | 20 +- data/json/items/magazine/303.json | 4 +- data/json/items/magazine/308.json | 86 +- data/json/items/magazine/30carbine.json | 8 +- data/json/items/magazine/32.json | 12 +- data/json/items/magazine/338lapua.json | 12 +- data/json/items/magazine/357mag.json | 4 +- data/json/items/magazine/357sig.json | 8 +- data/json/items/magazine/38.json | 12 +- data/json/items/magazine/380.json | 28 +- data/json/items/magazine/38super.json | 8 +- data/json/items/magazine/40.json | 48 +- data/json/items/magazine/40mm.json | 4 +- data/json/items/magazine/410shot.json | 8 +- data/json/items/magazine/44.json | 8 +- data/json/items/magazine/45.json | 68 +- data/json/items/magazine/450bushmaster.json | 8 +- data/json/items/magazine/454.json | 4 +- data/json/items/magazine/46.json | 8 +- data/json/items/magazine/460.json | 8 +- data/json/items/magazine/50.json | 12 +- data/json/items/magazine/500.json | 4 +- data/json/items/magazine/50ae.json | 4 +- data/json/items/magazine/50beowulf.json | 4 +- data/json/items/magazine/545x39.json | 12 +- data/json/items/magazine/57.json | 12 +- data/json/items/magazine/66mm.json | 4 +- data/json/items/magazine/762.json | 56 +- data/json/items/magazine/762R.json | 12 +- data/json/items/magazine/762x25.json | 12 +- data/json/items/magazine/77mm_jap.json | 4 +- data/json/items/magazine/8x40mm.json | 24 +- data/json/items/magazine/9mm.json | 312 +++---- data/json/items/magazine/9x18.json | 4 +- data/json/items/magazine/chemical_spray.json | 4 +- data/json/items/magazine/exodii.json | 12 +- data/json/items/magazine/filter.json | 16 +- data/json/items/magazine/liquid.json | 8 +- .../items/magazine/methanol_fuelcell.json | 16 +- data/json/items/magazine/nail.json | 2 +- data/json/items/magazine/shot.json | 28 +- data/json/items/magazine/weldgas.json | 8 +- data/json/items/melee/bludgeons.json | 364 ++++----- data/json/items/melee/knives_kitchen.json | 28 +- data/json/items/melee/misc.json | 12 +- .../json/items/melee/spears_and_polearms.json | 206 ++--- data/json/items/melee/swords_and_blades.json | 262 +++--- data/json/items/melee/unarmed_weapons.json | 22 +- data/json/items/mutagen_ingredients.json | 4 +- data/json/items/newspaper.json | 84 +- data/json/items/ranged/archery.json | 98 +-- data/json/items/ranged/atlatl.json | 16 +- data/json/items/ranged/ballista.json | 8 +- data/json/items/ranged/crossbows.json | 60 +- data/json/items/ranged/energy.json | 8 +- data/json/items/ranged/launchers.json | 12 +- data/json/items/ranged/pneumatic.json | 8 +- data/json/items/ranged/slings.json | 16 +- data/json/items/ranged/spearguns.json | 28 +- data/json/items/ranged/throwing.json | 44 +- data/json/items/relics/altered_items.json | 28 +- data/json/items/resources/alien.json | 78 +- .../json/items/resources/appliance_parts.json | 20 +- data/json/items/resources/chemicals.json | 44 +- data/json/items/resources/fasteners.json | 24 +- data/json/items/resources/glass.json | 16 +- .../items/resources/home_improvement.json | 28 +- data/json/items/resources/metal.json | 278 +++---- data/json/items/resources/misc.json | 60 +- data/json/items/resources/plastic.json | 48 +- data/json/items/resources/stone.json | 16 +- data/json/items/resources/tailoring.json | 194 ++--- data/json/items/resources/wood.json | 64 +- data/json/items/robot_parts.json | 42 +- data/json/items/software.json | 28 +- data/json/items/tool/cables.json | 16 +- data/json/items/tool/container.json | 8 +- data/json/items/tool/cooking.json | 196 ++--- data/json/items/tool/deployable.json | 74 +- data/json/items/tool/electronics.json | 88 +- data/json/items/tool/entry_tools.json | 28 +- data/json/items/tool/explosives.json | 200 ++--- data/json/items/tool/fire.json | 68 +- data/json/items/tool/firefighting.json | 32 +- data/json/items/tool/fishing.json | 40 +- data/json/items/tool/handloading.json | 12 +- data/json/items/tool/integrated.json | 16 +- data/json/items/tool/knives.json | 28 +- data/json/items/tool/landscaping.json | 74 +- data/json/items/tool/lighting.json | 96 +-- data/json/items/tool/masonry.json | 12 +- data/json/items/tool/med.json | 98 +-- data/json/items/tool/metalworking.json | 112 +-- data/json/items/tool/misc.json | 184 ++--- data/json/items/tool/musical_instruments.json | 72 +- data/json/items/tool/pets.json | 52 +- data/json/items/tool/radio_tools.json | 24 +- data/json/items/tool/raincatchers.json | 24 +- data/json/items/tool/science.json | 250 +++--- data/json/items/tool/shelters.json | 24 +- data/json/items/tool/smoking.json | 16 +- data/json/items/tool/stationery.json | 44 +- data/json/items/tool/stoneworking.json | 10 +- data/json/items/tool/tailoring.json | 62 +- data/json/items/tool/toiletries.json | 60 +- data/json/items/tool/traps.json | 52 +- data/json/items/tool/unfoldable.json | 4 +- data/json/items/tool/woodworking.json | 54 +- data/json/items/tool/workshop.json | 298 +++---- data/json/items/tool_armor.json | 390 ++++----- data/json/items/toolmod.json | 2 +- data/json/items/toy.json | 40 +- data/json/items/vehicle/alternator.json | 20 +- data/json/items/vehicle/animals.json | 8 +- data/json/items/vehicle/armor.json | 8 +- data/json/items/vehicle/battery.json | 36 +- data/json/items/vehicle/boat.json | 36 +- data/json/items/vehicle/cargo.json | 32 +- data/json/items/vehicle/controls.json | 52 +- data/json/items/vehicle/engine.json | 104 +-- data/json/items/vehicle/engineering.json | 24 +- data/json/items/vehicle/farming.json | 12 +- data/json/items/vehicle/frames.json | 24 +- data/json/items/vehicle/fuel_storage.json | 4 +- data/json/items/vehicle/lights.json | 24 +- data/json/items/vehicle/manual.json | 4 +- data/json/items/vehicle/mills.json | 16 +- data/json/items/vehicle/motors.json | 28 +- data/json/items/vehicle/noise.json | 16 +- data/json/items/vehicle/plating.json | 40 +- data/json/items/vehicle/rams.json | 4 +- data/json/items/vehicle/rigs.json | 4 +- data/json/items/vehicle/rotor.json | 8 +- data/json/items/vehicle/seating.json | 20 +- data/json/items/vehicle/solar.json | 32 +- data/json/items/vehicle/tables.json | 8 +- data/json/items/vehicle/turrets.json | 4 +- data/json/items/vehicle/utilities.json | 56 +- data/json/items/vehicle/wheel.json | 154 ++-- data/json/mapgen/crater.json | 2 +- .../monster_special_attacks/monster_gun.json | 4 +- .../void_spider_mechanics.json | 4 +- .../npcs/exodii/exodii_merchant_talk.json | 4 +- .../isolated_road_item_groups.json | 4 +- data/json/npcs/scrap_trader/scrap_trader.json | 2 +- data/json/vehicleparts/modular_tools.json | 4 +- data/json/vehicleparts/utilities.json | 4 +- data/mods/Aftershock/items/ammo.json | 12 +- data/mods/Aftershock/items/ammo/10mm.json | 6 +- data/mods/Aftershock/items/ammo/25mm.json | 2 +- data/mods/Aftershock/items/ammo/5x50.json | 10 +- data/mods/Aftershock/items/ammo/7.50mm.json | 4 +- .../mods/Aftershock/items/ammo/flashbulb.json | 4 +- data/mods/Aftershock/items/ammo/foam.json | 4 +- .../Aftershock/items/ammo/metal_rail.json | 8 +- data/mods/Aftershock/items/armor.json | 44 +- .../items/armor/civilian_blue_collar.json | 4 +- .../armor/exosuit/exosuit_components.json | 2 +- .../items/armor/exosuit/exosuit_melee.json | 4 +- .../items/armor/exosuit/exosuit_tool.json | 4 +- .../mods/Aftershock/items/armor/jetpacks.json | 4 +- .../items/armor/military_armor.json | 4 +- data/mods/Aftershock/items/armor_helmets.json | 12 +- data/mods/Aftershock/items/bioparts.json | 12 +- data/mods/Aftershock/items/books.json | 30 +- .../Aftershock/items/cast_spell_items.json | 2 +- data/mods/Aftershock/items/cbms.json | 92 +-- .../items/comestibles/alienfood.json | 68 +- .../items/comestibles/bug_brew.json | 16 +- .../items/comestibles/cheap_food.json | 4 +- .../items/comestibles/comestibles.json | 4 +- data/mods/Aftershock/items/containers.json | 4 +- data/mods/Aftershock/items/corpses.json | 34 +- .../items/crafting_scrap/abstract_scrap.json | 20 +- .../crafting_scrap/heat_transfer_scrap.json | 8 +- data/mods/Aftershock/items/currency.json | 4 +- data/mods/Aftershock/items/ethereal.json | 4 +- .../Aftershock/items/frankenstein_items.json | 2 +- data/mods/Aftershock/items/grenades.json | 8 +- data/mods/Aftershock/items/gun/25mm.json | 2 +- data/mods/Aftershock/items/gun/5x50.json | 8 +- data/mods/Aftershock/items/gun/7.50mm.json | 10 +- data/mods/Aftershock/items/gun/8x40mm.json | 4 +- data/mods/Aftershock/items/gun/advanced.json | 2 +- data/mods/Aftershock/items/gun/foam.json | 4 +- data/mods/Aftershock/items/gun/laser.json | 8 +- .../mods/Aftershock/items/gun/projectile.json | 6 +- .../Aftershock/items/gunmods/shotguns.json | 8 +- .../mods/Aftershock/items/gunmods/sights.json | 4 +- data/mods/Aftershock/items/id_cards.json | 12 +- data/mods/Aftershock/items/inactiverobot.json | 68 +- data/mods/Aftershock/items/items.json | 46 +- data/mods/Aftershock/items/lore_items.json | 4 +- data/mods/Aftershock/items/magazine/10mm.json | 6 +- data/mods/Aftershock/items/magazine/25mm.json | 2 +- data/mods/Aftershock/items/magazine/5x50.json | 8 +- .../Aftershock/items/magazine/7.50mm.json | 10 +- .../Aftershock/items/magazine/8x40mm.json | 4 +- .../mods/Aftershock/items/magazine/alien.json | 2 +- data/mods/Aftershock/items/magazine/foam.json | 4 +- data/mods/Aftershock/items/mutagen.json | 8 +- data/mods/Aftershock/items/robotparts.json | 18 +- data/mods/Aftershock/items/tool_armor.json | 4 +- data/mods/Aftershock/items/tools.json | 44 +- data/mods/Aftershock/items/vehicle_items.json | 2 +- data/mods/Aftershock/items/weapons.json | 50 +- data/mods/Aftershock/mobs/robots.json | 4 +- .../mods/Aftershock/mutations/integrated.json | 12 +- data/mods/Aftershock/vehicles/part_items.json | 6 +- data/mods/Backrooms/artifacts.json | 4 +- data/mods/Backrooms/items.json | 4 +- .../BlazeIndustries/items/gun/grenade.json | 4 +- data/mods/BlazeIndustries/items/items.json | 6 +- .../items/vehicle/blaze_engine.json | 24 +- .../items/vehicle/blaze_gun.json | 8 +- .../items/vehicle/blaze_other.json | 12 +- .../items/vehicle/blaze_solar.json | 4 +- .../BlazeIndustries/vehicles/part_items.json | 2 +- .../BombasticPerks/perkdata/frankenstein.json | 4 +- .../perkdata/holdout_pocket.json | 4 +- .../BombasticPerks/perkdata/openpalm.json | 4 +- .../BombasticPerks/perkdata/thick_skull.json | 4 +- .../CrazyCataclysm/crazy_aperturepotato.json | 2 +- data/mods/CrazyCataclysm/crazy_items.json | 34 +- data/mods/Defense_Mode/items.json | 4 +- data/mods/DinoMod/items/books.json | 4 +- data/mods/DinoMod/items/carnivore.json | 24 +- data/mods/DinoMod/items/containers.json | 4 +- data/mods/DinoMod/items/egg.json | 12 +- data/mods/DinoMod/items/helmets.json | 12 +- data/mods/DinoMod/items/mutagen.json | 12 +- .../DinoMod/items/mutagen_ingredients.json | 16 +- data/mods/DinoMod/items/mutation_armor.json | 4 +- data/mods/DinoMod/items/pets.json | 8 +- data/mods/DinoMod/items/pets_bear_armor.json | 44 +- .../DinoMod/items/pets_elephant_armor.json | 44 +- .../DinoMod/items/pets_ostrich_armor.json | 44 +- data/mods/Generic_Guns/ammo/shot.json | 2 +- .../Generic_Guns/firearms/pistol_magnum.json | 6 +- data/mods/Generic_Guns/magazines/grenade.json | 2 +- data/mods/Limb_WIP/armor/arm_prosthetics.json | 32 +- .../mods/Limb_WIP/armor/legs_prosthetics.json | 24 +- data/mods/Limb_WIP/armor/limb_armor.json | 16 +- data/mods/Limb_WIP/bionics.json | 10 +- data/mods/MMA/martial.json | 2 +- .../Spells/attunements/Artificer.json | 4 +- .../Spells/attunements/Crusader.json | 8 +- data/mods/Magiclysm/bionics.json | 2 +- data/mods/Magiclysm/items/alchemy_items.json | 40 +- data/mods/Magiclysm/items/archery.json | 12 +- data/mods/Magiclysm/items/armor.json | 8 +- data/mods/Magiclysm/items/bionics.json | 4 +- .../Magiclysm/items/black_dragon_items.json | 32 +- data/mods/Magiclysm/items/books.json | 16 +- data/mods/Magiclysm/items/books_lore.json | 6 +- .../Magiclysm/items/cast_spell_items.json | 60 +- .../items/caster_level_boosters.json | 38 +- data/mods/Magiclysm/items/comestibles.json | 16 +- data/mods/Magiclysm/items/constructs.json | 16 +- data/mods/Magiclysm/items/currency.json | 4 +- data/mods/Magiclysm/items/enchanted.json | 16 +- .../mods/Magiclysm/items/enchanted_belts.json | 6 +- .../mods/Magiclysm/items/enchanted_boots.json | 4 +- .../Magiclysm/items/enchanted_bracers.json | 2 +- .../Magiclysm/items/enchanted_cloaks.json | 8 +- .../Magiclysm/items/enchanted_clothes.json | 26 +- .../Magiclysm/items/enchanted_gunmods.json | 8 +- .../mods/Magiclysm/items/enchanted_masks.json | 2 +- .../mods/Magiclysm/items/enchanted_melee.json | 34 +- data/mods/Magiclysm/items/enchanted_misc.json | 16 +- .../Magiclysm/items/enchanted_ranged.json | 16 +- .../mods/Magiclysm/items/enchanted_rings.json | 8 +- .../Magiclysm/items/enchanted_tokens.json | 2 +- .../Magiclysm/items/enchanted_unarmed.json | 4 +- .../mods/Magiclysm/items/enchanted_wands.json | 74 +- data/mods/Magiclysm/items/ethereal_items.json | 84 +- data/mods/Magiclysm/items/fuel.json | 4 +- data/mods/Magiclysm/items/furniture.json | 8 +- data/mods/Magiclysm/items/generic.json | 10 +- .../Magiclysm/items/herbs_and_flowers.json | 28 +- data/mods/Magiclysm/items/mana_crystals.json | 4 +- data/mods/Magiclysm/items/melee.json | 10 +- data/mods/Magiclysm/items/metals.json | 10 +- data/mods/Magiclysm/items/mutagen.json | 2 +- data/mods/Magiclysm/items/obsolete.json | 8 +- data/mods/Magiclysm/items/recipe_books.json | 34 +- data/mods/Magiclysm/items/spell_scrolls.json | 4 +- data/mods/Magiclysm/items/spellbooks.json | 140 ++-- data/mods/Magiclysm/items/tools.json | 10 +- data/mods/Magiclysm/items/vehicle/frames.json | 6 +- .../items/vehicle/vehicle_parts.json | 2 +- data/mods/Magiclysm/items/weapons.json | 4 +- .../Defense_Mode/monster_corpse.json | 8 +- .../Magiclysm/vehicles/summoned_vehicles.json | 2 +- .../mods/Megafauna/items/animal_products.json | 12 +- data/mods/Megafauna/items/tool/shelters.json | 8 +- data/mods/MindOverMatter/items/ammo.json | 6 +- .../mods/MindOverMatter/items/armor/belt.json | 8 +- .../mods/MindOverMatter/items/armor/head.json | 8 +- data/mods/MindOverMatter/items/books.json | 4 +- data/mods/MindOverMatter/items/chemicals.json | 4 +- .../MindOverMatter/items/comestibles.json | 28 +- .../items/files_and_post_it.json | 8 +- data/mods/MindOverMatter/items/medical.json | 12 +- data/mods/MindOverMatter/items/misc.json | 4 +- .../items/psions_summon_items.json | 168 ++-- .../mods/MindOverMatter/items/schematics.json | 2 +- .../items/teleporter_start_items.json | 8 +- .../items/tools/crafting_tools.json | 8 +- .../MindOverMatter/items/tools/lighting.json | 12 +- .../MindOverMatter/items/tools/travel.json | 8 +- data/mods/MindOverMatter/items/weapons.json | 12 +- .../My_Sweet_Cataclysm/sweet_comestibles.json | 4 +- data/mods/My_Sweet_Cataclysm/sweet_flesh.json | 18 +- data/mods/My_Sweet_Cataclysm/sweet_items.json | 6 +- data/mods/No_Hope/items.json | 34 +- data/mods/No_Hope/necropolis/misc.json | 4 +- data/mods/TEST_DATA/appliance.json | 16 +- data/mods/TEST_DATA/bionics.json | 6 +- data/mods/TEST_DATA/items.json | 520 ++++++------ data/mods/TEST_DATA/metal.json | 4 +- data/mods/TEST_DATA/pocket_mods_test.json | 8 +- data/mods/TEST_DATA/weapons.json | 2 +- .../items/comestibles/other.json | 4 +- .../items/comestibles/carnivore.json | 12 +- .../TropiCataclysm/items/comestibles/egg.json | 8 +- .../items/comestibles/raw_veggy.json | 4 +- data/mods/Xedra_Evolved/items/alchemy.json | 16 +- data/mods/Xedra_Evolved/items/ammo.json | 12 +- .../mods/Xedra_Evolved/items/armor/armor.json | 58 +- .../Xedra_Evolved/items/armor/changeling.json | 20 +- .../Xedra_Evolved/items/armor/headgear.json | 8 +- .../Xedra_Evolved/items/armor/integrated.json | 100 +-- .../items/artifact_grade_items.json | 4 +- data/mods/Xedra_Evolved/items/book_lore.json | 20 +- .../Xedra_Evolved/items/books_deduction.json | 16 +- data/mods/Xedra_Evolved/items/carnivore.json | 16 +- data/mods/Xedra_Evolved/items/cbms.json | 10 +- data/mods/Xedra_Evolved/items/clothes.json | 4 +- data/mods/Xedra_Evolved/items/cold_iron.json | 18 +- .../items/comestibles/goblin_fruits.json | 8 +- .../items/comestibles/raw_fruit.json | 10 +- data/mods/Xedra_Evolved/items/containers.json | 8 +- data/mods/Xedra_Evolved/items/corpses.json | 2 +- data/mods/Xedra_Evolved/items/dreamsmith.json | 4 +- data/mods/Xedra_Evolved/items/drugs.json | 18 +- .../Xedra_Evolved/items/ethereal_items.json | 30 +- .../Xedra_Evolved/items/gun_magazine.json | 16 +- data/mods/Xedra_Evolved/items/guns.json | 12 +- .../items/hedge_magic_items.json | 12 +- .../Xedra_Evolved/items/inventor/gun.json | 24 +- data/mods/Xedra_Evolved/items/melee.json | 8 +- data/mods/Xedra_Evolved/items/mutagen.json | 12 +- .../Xedra_Evolved/items/notes_and_news.json | 8 +- data/mods/Xedra_Evolved/items/pets.json | 8 +- data/mods/Xedra_Evolved/items/range.json | 6 +- data/mods/Xedra_Evolved/items/resources.json | 50 +- .../spell_learning_items_classless.json | 8 +- .../spell_learning_items_dreamer.json | 56 +- .../spell_learning_items_dreamsmith.json | 4 +- .../spell_learning_items_eater.json | 68 +- .../spell_learning_items_inventor.json | 4 +- .../spellbooks_hedge.json | 10 +- data/mods/Xedra_Evolved/items/tools.json | 40 +- .../Xedra_Evolved/items/vehicle_parts.json | 2 +- .../monsters/monsterattacks.json | 8 +- .../Xedra_Evolved/player/renfield_cbms.json | 2 +- data/mods/innawood/items/electronics.json | 8 +- data/mods/innawood/items/lighting.json | 4 +- .../innawood/items/medical_primitive.json | 4 +- data/mods/innawood/items/misc.json | 6 +- data/mods/innawood/items/tool_tailoring.json | 20 +- data/mods/innawood/items/tool_workshop.json | 4 +- data/mods/innawood/items/vehicle_battery.json | 8 +- data/mods/innawood/mining/items/ore.json | 20 +- doc/ARMOR_BALANCE_AND_DESIGN.md | 20 +- doc/JSON_INFO.md | 6 +- doc/JSON_INHERITANCE.md | 2 +- doc/MODDING.md | 2 +- doc/NPCs.md | 2 +- doc/POSTAPOC_PRICE_GUIDE.md | 18 +- 681 files changed, 12774 insertions(+), 12774 deletions(-) diff --git a/data/json/artifact/artifact_item_types.json b/data/json/artifact/artifact_item_types.json index f9808d23ddf52..5e026e2b1b583 100644 --- a/data/json/artifact/artifact_item_types.json +++ b/data/json/artifact/artifact_item_types.json @@ -246,8 +246,8 @@ "description": "A sinister mask made of a smooth green stone. It is the only one of its kind.\nIt may have unknown powers; try activating them.", "weight": "750 g", "volume": "750 ml", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "stone" ], "symbol": "[", @@ -324,8 +324,8 @@ }, "symbol": "7", "description": "A harp made of black wood. Faint hypnotic notes ring in the air each time you touch it. It is the only one of its kind.\nIt may have unknown powers; try activating them.", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "material": [ { "type": "wood", "portion": 19 }, { "type": "steel" } ], "volume": "6750 ml", "longest_side": "97 cm", @@ -341,7 +341,7 @@ "weight": "504 g", "volume": "500 ml", "longest_side": "25 cm", - "price": 3000, + "price": "30 USD", "material": [ "wood", "steel" ], "symbol": ";", "color": "light_gray", diff --git a/data/json/items/ammo.json b/data/json/items/ammo.json index 0ecd58dbd2744..ece4fed043cfd 100644 --- a/data/json/items/ammo.json +++ b/data/json/items/ammo.json @@ -3,8 +3,8 @@ "type": "AMMO", "id": "battery", "category": "spare_parts", - "price": 12000, - "price_postapoc": 2, + "price": "120 USD", + "price_postapoc": "2 cent", "name": { "str_sp": "battery" }, "symbol": "=", "color": "yellow", @@ -152,7 +152,7 @@ "type": "TOOL", "id": "betavoltaic", "category": "spare_parts", - "price": 10000, + "price": "100 USD", "name": { "str": "betavoltaic cell" }, "symbol": "=", "color": "green", @@ -166,8 +166,8 @@ "type": "TOOL", "id": "RTG_coffee", "category": "spare_parts", - "price": 20000, - "price_postapoc": 2000, + "price": "200 USD", + "price_postapoc": "20 USD", "name": { "str": "radioisotope thermoelectric generator" }, "symbol": "=", "color": "green", @@ -181,8 +181,8 @@ "type": "AMMO", "id": "aluminum_foil", "category": "spare_parts", - "price": 648, - "price_postapoc": 10, + "price": "6 USD 48 cent", + "price_postapoc": "10 cent", "name": { "str_sp": "aluminum foil" }, "symbol": "=", "color": "light_gray", @@ -197,8 +197,8 @@ { "type": "AMMO", "id": "money", - "price": 1, - "price_postapoc": 0, + "price": "1 cent", + "price_postapoc": "0 cent", "//": "= one cent, gives correct prices for cash cards", "name": { "str": "cent" }, "symbol": "=", @@ -212,8 +212,8 @@ "type": "AMMO", "id": "thread", "category": "spare_parts", - "price": 5000, - "price_postapoc": 25, + "price": "50 USD", + "price_postapoc": "25 cent", "name": { "str_sp": "thread" }, "symbol": "=", "color": "light_gray", @@ -231,8 +231,8 @@ "type": "AMMO", "id": "sinew", "category": "spare_parts", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "name": { "str": "sinew" }, "symbol": "=", "color": "light_red", @@ -249,8 +249,8 @@ "type": "AMMO", "id": "plant_fibre", "category": "spare_parts", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "name": { "str_sp": "plant fiber" }, "symbol": "=", "color": "light_green", @@ -267,8 +267,8 @@ "type": "AMMO", "id": "yarn", "category": "spare_parts", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "name": { "str_sp": "yarn" }, "symbol": "=", "color": "white", @@ -285,8 +285,8 @@ "type": "AMMO", "id": "soap", "category": "chems", - "price": 300, - "price_postapoc": 100, + "price": "3 USD", + "price_postapoc": "1 USD", "name": { "str": "soap bar" }, "symbol": "=", "color": "white", @@ -301,8 +301,8 @@ "type": "AMMO", "id": "moisturizer", "category": "chems", - "price": 300, - "price_postapoc": 100, + "price": "3 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "moisturizer" }, "symbol": "m", "color": "white", @@ -382,7 +382,7 @@ "id": "duct_tape", "category": "spare_parts", "price": "6 USD", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "name": { "str_sp": "duct tape" }, "symbol": "=", "color": "light_gray", @@ -405,8 +405,8 @@ "color": "white", "name": { "str_sp": "rolling paper" }, "description": "A thin paper strip intended for the rolling of cigarettes.", - "price": 150, - "price_postapoc": 25, + "price": "1 USD 50 cent", + "price_postapoc": "25 cent", "material": [ "paper" ], "weight": "1 g", "volume": "100ml", @@ -419,8 +419,8 @@ "type": "AMMO", "id": "cable", "category": "spare_parts", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "name": { "str": "copper wire" }, "symbol": "=", "color": "dark_gray", @@ -436,8 +436,8 @@ "type": "AMMO", "id": "copper_wire", "category": "spare_parts", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "name": { "str": "raw copper wire" }, "symbol": "=", "color": "dark_gray", @@ -453,8 +453,8 @@ "type": "AMMO", "id": "plut_cell", "category": "spare_parts", - "price": 150000, - "price_postapoc": 1250, + "price": "1 kUSD 500 USD", + "price_postapoc": "12 USD 50 cent", "name": { "str": "plutonium fuel cell" }, "symbol": "=", "color": "green", @@ -471,8 +471,8 @@ "type": "AMMO", "id": "uran_cell", "category": "spare_parts", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "name": { "str": "uranium fuel cell" }, "symbol": "=", "looks_like": "cobalt_60", @@ -490,8 +490,8 @@ "type": "AMMO", "id": "plut_slurry_dense", "category": "spare_parts", - "price": 250, - "price_postapoc": 0, + "price": "2 USD 50 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "plutonium slurry" }, "symbol": "=", "color": "green", @@ -508,8 +508,8 @@ "type": "AMMO", "id": "plut_slurry", "category": "spare_parts", - "price": 250, - "price_postapoc": 0, + "price": "2 USD 50 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "watery plutonium slurry" }, "symbol": "=", "color": "green", @@ -585,8 +585,8 @@ { "type": "AMMO", "id": "pebble_clay", - "price": 150, - "price_postapoc": 10, + "price": "1 USD 50 cent", + "price_postapoc": "10 cent", "name": { "str": "clay pellet" }, "symbol": "=", "color": "brown", @@ -606,8 +606,8 @@ { "type": "AMMO", "id": "marble", - "price": 200, - "price_postapoc": 10, + "price": "2 USD", + "price_postapoc": "10 cent", "name": { "str": "marble" }, "symbol": "=", "color": "light_gray", @@ -627,8 +627,8 @@ { "type": "AMMO", "id": "bearing", - "price": 100, - "price_postapoc": 250, + "price": "1 USD", + "price_postapoc": "2 USD 50 cent", "name": { "str": "ball bearing" }, "symbol": "=", "color": "dark_gray", @@ -648,8 +648,8 @@ { "type": "AMMO", "id": "bb", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "name": { "str": "BB" }, "symbol": "=", "color": "light_gray", @@ -670,8 +670,8 @@ "type": "AMMO", "id": "feather", "category": "spare_parts", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "name": { "str": "feather" }, "symbol": "=", "color": "brown", @@ -688,8 +688,8 @@ "type": "AMMO", "id": "down_feather", "category": "spare_parts", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "name": { "str": "down feather" }, "symbol": "=", "color": "brown", @@ -705,8 +705,8 @@ { "type": "AMMO", "id": "120mm_HEAT", - "price": 999999, - "price_postapoc": 1000, + "price": "9 kUSD 999 USD 99 cent", + "price_postapoc": "10 USD", "name": { "str_sp": "120mm HEAT" }, "symbol": "=", "color": "dark_gray", @@ -724,8 +724,8 @@ { "type": "AMMO", "id": "plasma", - "price": 80000, - "price_postapoc": 1000, + "price": "800 USD", + "price_postapoc": "10 USD", "name": { "str": "solid hydrogen canister" }, "symbol": "=", "color": "light_gray", @@ -744,8 +744,8 @@ "type": "AMMO", "id": "gunpowder", "category": "chems", - "price": 500, - "price_postapoc": 2000, + "price": "5 USD", + "price_postapoc": "20 USD", "name": { "str_sp": "mixed smokeless gunpowder" }, "symbol": "=", "color": "dark_gray", @@ -764,8 +764,8 @@ "type": "AMMO", "id": "gunpowder_shotgun", "copy-from": "gunpowder", - "price": 3000, - "price_postapoc": 2500, + "price": "30 USD", + "price_postapoc": "25 USD", "name": { "str_sp": "smokeless shotgun powder" }, "description": "Firearm-quality gunpowder intended for use in shotgun shells." }, @@ -773,8 +773,8 @@ "type": "AMMO", "id": "gunpowder_pistol", "copy-from": "gunpowder", - "price": 3000, - "price_postapoc": 2500, + "price": "30 USD", + "price_postapoc": "25 USD", "name": { "str_sp": "smokeless pistol powder" }, "description": "Firearm-quality gunpowder intended for use in pistol ammunition." }, @@ -782,8 +782,8 @@ "type": "AMMO", "id": "gunpowder_magnum_pistol", "copy-from": "gunpowder", - "price": 3000, - "price_postapoc": 2500, + "price": "30 USD", + "price_postapoc": "25 USD", "name": { "str_sp": "smokeless magnum powder" }, "description": "Firearm-quality gunpowder intended for use in magnum pistol ammunition." }, @@ -791,8 +791,8 @@ "type": "AMMO", "id": "gunpowder_rifle", "copy-from": "gunpowder", - "price": 3000, - "price_postapoc": 2500, + "price": "30 USD", + "price_postapoc": "25 USD", "name": { "str_sp": "smokeless rifle powder" }, "description": "Firearm-quality gunpowder intended for use in rifle ammunition." }, @@ -800,8 +800,8 @@ "type": "AMMO", "id": "gunpowder_large_rifle", "copy-from": "gunpowder", - "price": 3000, - "price_postapoc": 2500, + "price": "30 USD", + "price_postapoc": "25 USD", "name": { "str_sp": "smokeless overbore rifle powder" }, "description": "Firearm-quality gunpowder intended for use in large rifle ammunition." }, @@ -809,8 +809,8 @@ "type": "AMMO", "id": "gunpowder_artillery", "copy-from": "gunpowder", - "price": 3000, - "price_postapoc": 2500, + "price": "30 USD", + "price_postapoc": "25 USD", "name": { "str_sp": "artillery propellant" }, "description": "Single base smokeless gunpowder intended for use in artillery propelling charges." }, @@ -818,8 +818,8 @@ "type": "AMMO", "id": "oxy_powder", "category": "chems", - "price": 3000, - "price_postapoc": 1000, + "price": "30 USD", + "price_postapoc": "10 USD", "name": { "str_sp": "oxidizer powder" }, "symbol": "=", "color": "white", @@ -836,8 +836,8 @@ "type": "AMMO", "id": "lye_powder", "category": "chems", - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "lye powder" }, "symbol": "=", "color": "white", @@ -853,8 +853,8 @@ "type": "AMMO", "id": "shotgun_primer", "category": "spare_parts", - "price": 3000, - "price_postapoc": 2000, + "price": "30 USD", + "price_postapoc": "20 USD", "name": { "str": "shotgun primer" }, "symbol": "=", "color": "dark_gray", @@ -870,8 +870,8 @@ "type": "AMMO", "id": "smpistol_primer", "category": "spare_parts", - "price": 4000, - "price_postapoc": 1000, + "price": "40 USD", + "price_postapoc": "10 USD", "name": { "str": "small pistol primer" }, "symbol": "=", "color": "dark_gray", @@ -887,8 +887,8 @@ "type": "AMMO", "id": "lgpistol_primer", "category": "spare_parts", - "price": 6000, - "price_postapoc": 2000, + "price": "60 USD", + "price_postapoc": "20 USD", "name": { "str": "large pistol primer" }, "symbol": "=", "color": "dark_gray", @@ -904,8 +904,8 @@ "type": "AMMO", "id": "smrifle_primer", "category": "spare_parts", - "price": 6000, - "price_postapoc": 1000, + "price": "60 USD", + "price_postapoc": "10 USD", "name": { "str": "small rifle primer" }, "symbol": "=", "color": "dark_gray", @@ -921,8 +921,8 @@ "type": "AMMO", "id": "lgrifle_primer", "category": "spare_parts", - "price": 8000, - "price_postapoc": 2000, + "price": "80 USD", + "price_postapoc": "20 USD", "name": { "str": "large rifle primer" }, "symbol": "=", "color": "dark_gray", @@ -938,8 +938,8 @@ "type": "AMMO", "id": "rubber_slug", "category": "spare_parts", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "name": { "str": "rubber slug" }, "symbol": "=", "color": "dark_gray", @@ -954,8 +954,8 @@ "type": "AMMO", "id": "chunk_rubber", "category": "spare_parts", - "price": 75, - "price_postapoc": 2, + "price": "75 cent", + "price_postapoc": "2 cent", "name": { "str": "chunk of rubber", "str_pl": "chunks of rubber" }, "symbol": "*", "color": "dark_gray", @@ -970,8 +970,8 @@ "type": "AMMO", "id": "copper", "category": "spare_parts", - "price": 1000, - "price_postapoc": 800, + "price": "10 USD", + "price_postapoc": "8 USD", "name": { "str_sp": "copper" }, "symbol": "=", "color": "yellow", @@ -987,8 +987,8 @@ "type": "AMMO", "id": "medical_tape", "category": "spare_parts", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "medical tape" }, "symbol": "=", "color": "white", @@ -1004,8 +1004,8 @@ "id": "charcoal", "category": "spare_parts", "//0": "about a dollar per kg of charcoal commercially. fetches $0.001 per chunk to survivors", - "price": 4, - "price_postapoc": 5, + "price": "4 cent", + "price_postapoc": "5 cent", "name": { "str_sp": "charcoal" }, "container": "box_small", "symbol": "=", @@ -1026,7 +1026,7 @@ "category": "spare_parts", "name": { "str": "carbon electrode rod" }, "description": "This carbon electrode is basically made from wood and sugar, and it actually works.", - "price_postapoc": 50, + "price_postapoc": "50 cent", "material": [ "charcoal" ], "ammo_type": "charcoal", "symbol": "=", @@ -1040,8 +1040,8 @@ "id": "coal_lump", "category": "spare_parts", "//0": "about a $0.15 per kg of coal commercially. fetches $0.001 per chunk to survivors", - "price": 5, - "price_postapoc": 20, + "price": "5 cent", + "price_postapoc": "20 cent", "name": { "str_sp": "coal" }, "symbol": "=", "color": "dark_gray", @@ -1074,8 +1074,8 @@ "type": "AMMO", "id": "ampoule", "category": "drugs", - "price": 50000, - "price_postapoc": 5000, + "price": "500 USD", + "price_postapoc": "50 USD", "name": { "str": "RA21E medical ampoule" }, "symbol": "=", "color": "cyan", @@ -1091,8 +1091,8 @@ "type": "AMMO", "id": "stimpack_ammo", "category": "drugs", - "price": 30000, - "price_postapoc": 5000, + "price": "300 USD", + "price_postapoc": "50 USD", "name": { "str": "RA10K stimulant module" }, "symbol": "=", "color": "cyan", @@ -1108,8 +1108,8 @@ "type": "AMMO", "id": "liq_bandage", "category": "drugs", - "price": 200, - "price_postapoc": 40, + "price": "2 USD", + "price_postapoc": "40 cent", "name": { "str_sp": "liquid bandage" }, "symbol": "=", "color": "white", @@ -1125,9 +1125,9 @@ "type": "AMMO", "id": "rebreather_filler_soda_lime", "category": "spare_parts", - "price": 13, + "price": "13 cent", "//": "About 10 USD per kilogram in current prices. Density is 2.48 g/cm3, rounded down to account for its granularity, weight is given per 1 minute of scrubbing", - "price_postapoc": 10, + "price_postapoc": "10 cent", "name": { "str_sp": "rebreather scrubbing filler" }, "material": [ "powder_nonflam" ], "symbol": "=", @@ -1142,8 +1142,8 @@ "type": "AMMO", "id": "rebreather_filler_ko2", "category": "spare_parts", - "price": 24, - "price_postapoc": 30, + "price": "24 cent", + "price_postapoc": "30 cent", "name": { "str_sp": "rebreather oxygen regenerator filler" }, "material": [ "powder" ], "symbol": "=", @@ -1161,8 +1161,8 @@ "id": "gasfilter_s", "category": "tool_magazine", "material": [ "charcoal" ], - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "name": { "str": "filter mask cartridge" }, "symbol": "=", "color": "light_gray", @@ -1177,8 +1177,8 @@ "id": "gasfilter_m", "category": "tool_magazine", "material": [ "charcoal" ], - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "name": { "str": "gas mask cartridge" }, "symbol": "=", "color": "light_gray", @@ -1192,8 +1192,8 @@ "type": "AMMO", "id": "nicotine_liquid", "category": "drugs", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "nicotine liquid" }, "symbol": "=", "color": "yellow", @@ -1222,8 +1222,8 @@ { "type": "AMMO", "id": "spiked_rocket", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "name": { "str": "spiked homemade rocket" }, "symbol": ",", "color": "dark_gray", @@ -1241,8 +1241,8 @@ { "type": "AMMO", "id": "explosive_hm_rocket", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "name": { "str": "explosive homemade rocket" }, "symbol": ",", "color": "dark_gray", @@ -1260,8 +1260,8 @@ { "type": "AMMO", "id": "incendiary_hm_rocket", - "price": 1300, - "price_postapoc": 100, + "price": "13 USD", + "price_postapoc": "1 USD", "name": { "str": "incendiary homemade rocket" }, "symbol": ",", "color": "red", @@ -1280,8 +1280,8 @@ "type": "AMMO", "id": "unfinished_charcoal", "category": "spare_parts", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "unfinished charcoal" }, "symbol": "=", "color": "brown", @@ -1300,8 +1300,8 @@ "//": "An individual lamella is roughly 3cm x 6cm x 1mm in size.", "weight": "14 g", "volume": "100 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "lc_steel" ], "symbol": ",", "color": "light_gray", @@ -1318,8 +1318,8 @@ "//": "An individual lamella is roughly 3cm x 6cm x 1mm in size.", "weight": "14 g", "volume": "100 ml", - "price": 1000, - "price_postapoc": 60, + "price": "10 USD", + "price_postapoc": "60 cent", "material": [ "ch_steel" ], "symbol": ",", "color": "light_gray", @@ -1331,8 +1331,8 @@ "type": "AMMO", "id": "chain_link", "category": "spare_parts", - "price": 150, - "price_postapoc": 50, + "price": "1 USD 50 cent", + "price_postapoc": "50 cent", "name": { "str": "chain link" }, "symbol": "=", "color": "light_gray", @@ -1348,8 +1348,8 @@ "id": "lc_chain_link", "category": "spare_parts", "//": "link weighs 1/3 gram or so, make 425 per 150 gram wire to account for loss", - "price": 150, - "price_postapoc": 50, + "price": "1 USD 50 cent", + "price_postapoc": "50 cent", "name": { "str": "mild steel chain link" }, "symbol": "=", "color": "light_gray", @@ -1392,8 +1392,8 @@ "type": "AMMO", "id": "nitrox", "category": "chems", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "name": { "str_sp": "nitrox" }, "symbol": "=", "color": "white", @@ -1409,8 +1409,8 @@ "type": "AMMO", "id": "extinguishing_agent", "category": "chems", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "name": { "str_sp": "extinguishing agent" }, "symbol": "%", "color": "white", @@ -1427,8 +1427,8 @@ "type": "AMMO", "id": "teargas_spray", "category": "chems", - "price": 500, - "price_postapoc": 500, + "price": "5 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "tear gas spray" }, "symbol": "%", "color": "white", @@ -1449,8 +1449,8 @@ "description": "Flammable material, finely divided for easy combustion.", "weight": "10 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "wood" ], "flags": [ "NO_SALVAGE", "TINDER" ], "symbol": "=", @@ -1463,8 +1463,8 @@ { "type": "AMMO", "id": "RPG_die", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "name": { "str": "RPG die", "str_pl": "RPG dice" }, "symbol": "=", "color": "light_gray", @@ -1485,8 +1485,8 @@ { "type": "AMMO", "id": "metal_RPG_die", - "price": 50, - "price_postapoc": 10, + "price": "50 cent", + "price_postapoc": "10 cent", "name": { "str": "metal RPG die", "str_pl": "metal RPG dice" }, "symbol": "=", "color": "light_gray", @@ -1513,8 +1513,8 @@ "weight": "300 g", "volume": "38 ml", "//": "300g / 8.8g/ml = ~34.1ml. Add 10% to take an uneven chunk into account = 37.5ml rounded upwards to 38ml.", - "price": 169, - "price_postapoc": 100, + "price": "1 USD 69 cent", + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "bronze" ], "symbol": ",", @@ -1605,8 +1605,8 @@ { "type": "AMMO", "id": "airgun_pellet_target", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "name": { "str": "air rifle target pellet" }, "symbol": "=", "color": "light_gray", @@ -1626,8 +1626,8 @@ { "type": "AMMO", "id": "airgun_pellet_hunting", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "name": { "str": "air rifle hunting pellet" }, "symbol": "=", "color": "light_gray", diff --git a/data/json/items/ammo/10mm.json b/data/json/items/ammo/10mm.json index be5110c8c6c74..40ef241716ea4 100644 --- a/data/json/items/ammo/10mm.json +++ b/data/json/items/ammo/10mm.json @@ -8,8 +8,8 @@ "weight": "17 g", "volume": "117 ml", "longest_side": "32 mm", - "price": 400, - "price_postapoc": 800, + "price": "4 USD", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -59,8 +59,8 @@ "type": "AMMO", "name": { "str_sp": "10mm Auto JHP" }, "description": "Jacketed 10mm Auto ammunition with a 180gr hollow point bullet, intended for use in self-defense, or perhaps hunting. The 10mm Auto cartridge is a rather powerful handgun round and the progenitor to the more popular .40 S&W.", - "price": 600, - "price_postapoc": 900, + "price": "6 USD", + "price_postapoc": "9 USD", "relative": { "damage": { "damage_type": "bullet", "amount": 4, "armor_penetration": -4 } } }, { @@ -69,8 +69,8 @@ "type": "AMMO", "name": { "str_sp": "10mm Auto +P" }, "description": "'Full House' 10mm Auto ammunition with a 140gr solid copper penetrator projectile, hunting of or self-defense from dangerous game. The 10mm Auto cartridge is a rather powerful handgun round and the progenitor to the more popular .40 S&W.", - "price": 800, - "price_postapoc": 1100, + "price": "8 USD", + "price_postapoc": "11 USD", "relative": { "damage": { "damage_type": "bullet", "amount": 2, "armor_penetration": 2 } }, "proportional": { "recoil": 1.1 } }, diff --git a/data/json/items/ammo/12mm.json b/data/json/items/ammo/12mm.json index 7bcd4e06d9f6c..10a2a34897e4a 100644 --- a/data/json/items/ammo/12mm.json +++ b/data/json/items/ammo/12mm.json @@ -7,8 +7,8 @@ "ascii_picture": "12mm", "weight": "11 g", "volume": "250 ml", - "price": 6000, - "price_postapoc": 8000, + "price": "60 USD", + "price_postapoc": "80 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "steel" ], "symbol": "=", diff --git a/data/json/items/ammo/20x66mm.json b/data/json/items/ammo/20x66mm.json index 46d79576349be..cb11f8d4d83f2 100644 --- a/data/json/items/ammo/20x66mm.json +++ b/data/json/items/ammo/20x66mm.json @@ -93,8 +93,8 @@ "description": "A 20x66mm caseless shotgun round, sublethal beanbag type. Proprietary ammunition for Rivtech shotguns.", "ascii_picture": "20x66_beanbag", "weight": "21 g", - "price": 8000, - "price_postapoc": 1000, + "price": "80 USD", + "price_postapoc": "10 USD", "material": [ "plastic", "powder" ], "count": 10, "extend": { "effects": [ "LARGE_BEANBAG", "NOGIB", "CASELESS_ROUNDS" ] }, @@ -108,8 +108,8 @@ "type": "AMMO", "name": { "str_sp": "20x66mm explosive" }, "description": "A 20x66mm caseless shotgun round, explosive projectile type. Proprietary ammunition for Rivtech shotguns.", - "price": 10000, - "price_postapoc": 8000, + "price": "100 USD", + "price_postapoc": "80 USD", "range": 20, "relative": { "damage": { "damage_type": "bullet", "amount": -23, "armor_penetration": -4 } }, "dispersion": 120, @@ -123,8 +123,8 @@ "description": "A 20x66mm caseless shotgun round, signal flare type. Proprietary ammunition for Rivtech shotguns.", "ascii_picture": "20x66_flare", "weight": "21 g", - "price": 5000, - "price_postapoc": 4000, + "price": "50 USD", + "price_postapoc": "40 USD", "material": [ "plastic", "powder" ], "count": 10, "range": 20, @@ -141,8 +141,8 @@ "type": "AMMO", "name": { "str_sp": "20x66mm frag" }, "description": "A 20x66mm caseless shotgun round, explosive fragmentation type. Proprietary ammunition for Rivtech shotguns.", - "price": 7800, - "price_postapoc": 5000, + "price": "78 USD", + "price_postapoc": "50 USD", "count": 5, "extend": { "effects": [ "FRAG_20x66" ], "flags": [ "CASELESS_ROUNDS" ] }, "proportional": { "damage": { "damage_type": "bullet", "amount": 0.25, "armor_penetration": 0.25 } } @@ -154,8 +154,8 @@ "name": { "str_sp": "20x66mm buckshot" }, "//": "2.5x the Generic Rate of $1/shot", "description": "A 20x66mm caseless shotgun round, loaded with 18 buffered pellets of premium plated 00 buck. Proprietary ammunition for Rivtech shotguns.", - "price": 1500, - "price_postapoc": 4000, + "price": "15 USD", + "price_postapoc": "40 USD", "material": [ "lead", "plastic", "powder" ], "range": 12, "projectile_count": 18, @@ -171,8 +171,8 @@ "type": "AMMO", "name": { "str": "20x66mm slug" }, "description": "A 20x66mm caseless shotgun round, solid projectile type. Proprietary ammunition for Rivtech shotguns.", - "price": 1500, - "price_postapoc": 4000, + "price": "15 USD", + "price_postapoc": "40 USD", "material": [ "lead", "plastic", "powder" ], "range": 24, "dispersion": 100, diff --git a/data/json/items/ammo/22.json b/data/json/items/ammo/22.json index 082b47dbf2d3d..f72466f8bdba3 100644 --- a/data/json/items/ammo/22.json +++ b/data/json/items/ammo/22.json @@ -7,8 +7,8 @@ "description": ".22 Conical Ball, a variety of .22 ammunition that propels its bullet using a primer instead of gunpowder. The end result is a subsonic round that is so weak as to be nearly useless given your predicament.", "ascii_picture": "22_cb", "longest_side": "13 mm", - "price": 100, - "price_postapoc": 1000, + "price": "1 USD", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "count": 100, "stack_size": 150, @@ -33,8 +33,8 @@ "weight": "3 g", "volume": "65 ml", "longest_side": "26 mm", - "price": 150, - "price_postapoc": 800, + "price": "1 USD 50 cent", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -57,7 +57,7 @@ "description": "A .22 caliber cartridge loaded with very small pieces of shot contained within a fragmenting plastic capsule. It has an extremely short range and poor penetration ability, but the spread of shot can hit targets with greater ease.", "ascii_picture": "22_ratshot", "count": 100, - "price_postapoc": 400, + "price_postapoc": "4 USD", "dispersion": 0, "projectile_count": 20, "shot_damage": { "damage_type": "bullet", "amount": 0.1 }, diff --git a/data/json/items/ammo/223.json b/data/json/items/ammo/223.json index 9ee6e3c3bfeb6..313fec3e79245 100644 --- a/data/json/items/ammo/223.json +++ b/data/json/items/ammo/223.json @@ -8,8 +8,8 @@ "weight": "12 g", "volume": "194 ml", "longest_side": "57 mm", - "price": 280, - "price_postapoc": 900, + "price": "2 USD 80 cent", + "price_postapoc": "9 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -74,8 +74,8 @@ "type": "AMMO", "name": { "str_sp": "5.56 NATO Mk 262" }, "description": "5.56x45mm ammunition, loaded for precision from the Mk 12 SPR rifles, and later used by other SF units looking for more effective loadings for their M4A1 and Mk 18 carbines. The Mk 262 Mod 1 is loaded with a 77 grain Open Tip Match bullet, enhancing lethality even at longer ranges when compared to older M855 loadings.", - "price": 600, - "price_postapoc": 2000, + "price": "6 USD", + "price_postapoc": "20 USD", "relative": { "damage": { "damage_type": "bullet", "amount": 8 } }, "proportional": { "recoil": 1.1 } }, @@ -85,8 +85,8 @@ "type": "AMMO", "name": { "str_sp": "5.56 NATO Mk318" }, "description": "5.56x45mm ammunition, developed due to SOF dissatisfaction with the M855 cartridge. The Mk318 Mod 1 is loaded with a 62 grain Open Tip Match Rear Penetrator bullet, a copper slug enclosed inside an open-tipped brass projectile, providing for consistent loading, enhanced lethality and increased penetration. When compared to M855, the Mk318 fragments consistently, even out of short-barreled carbines.", - "price": 700, - "price_postapoc": 2300, + "price": "7 USD", + "price_postapoc": "23 USD", "relative": { "damage": { "damage_type": "bullet", "amount": 1, "armor_penetration": 8 } }, "proportional": { "recoil": 1.1 } }, @@ -98,8 +98,8 @@ "material": [ "steel", "brass", "lead", "powder" ], "description": "5.56x45mm ammunition with a 62gr FMJ bullet containing a steel penetrator. Originally designed for the M249 FN Minimi, M855 was designed to penetrate steel helmets and light cover at range, sacrificing terminal performance and accuracy in the process. The limited yaw and fragmentation is worsened with shorter-barreled carbines shooting this round, and optimization of barrel twist for stabilization of the tracer variant of M855 has resulted in lackluster accuracy overall.", "ascii_picture": "556", - "price": 290, - "price_postapoc": 900, + "price": "2 USD 90 cent", + "price_postapoc": "9 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "relative": { "damage": { "damage_type": "bullet", "amount": -3, "armor_penetration": 10 }, "dispersion": 20 }, "dispersion_modifier": [ { "barrel_length": "337 mm", "dispersion": 120 }, { "barrel_length": "533 mm", "dispersion": 0 } ], @@ -113,8 +113,8 @@ "name": { "str_sp": "5.56 NATO M855A1" }, "description": "An updated loading of M855 5.56x45mm ammunition, featuring a 62 grain projectile containing an exposed steel penetrator and copper slug. Designed as a mostly lead-free projectile, the opportunity was further taken to improve upon M855's penetration and lethality characteristics through penetrator design and increased pressure. Its improved accuracy, penetration and lethality over M855 are appreciated by users of shorter-barreled AR variants.", "ascii_picture": "556_m855a1", - "price": 300, - "price_postapoc": 1000, + "price": "3 USD", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "relative": { "damage": { "damage_type": "bullet", "amount": -2, "armor_penetration": 11 }, "dispersion": 10 }, "proportional": { "recoil": 1.1 }, diff --git a/data/json/items/ammo/270win.json b/data/json/items/ammo/270win.json index 09d2809bab5bf..d911fb83a9f78 100644 --- a/data/json/items/ammo/270win.json +++ b/data/json/items/ammo/270win.json @@ -6,8 +6,8 @@ "//": "This is .270 FMJ. 270 win is so exclusively used for hunting that FMJ ammo basically doesn't exist. This is just here for the BBTI data.", "ascii_picture": "270win_jsp", "longest_side": "85 mm", - "price": 170, - "price_postapoc": 600, + "price": "1 USD 70 cent", + "price_postapoc": "6 USD", "weight": "20 g", "volume": "189 ml", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], diff --git a/data/json/items/ammo/300.json b/data/json/items/ammo/300.json index 4824738ad73ca..3bfd4e0f3df66 100644 --- a/data/json/items/ammo/300.json +++ b/data/json/items/ammo/300.json @@ -8,8 +8,8 @@ "weight": "28 g", "volume": "169 ml", "longest_side": "85 mm", - "price": 220, - "price_postapoc": 400, + "price": "2 USD 20 cent", + "price_postapoc": "4 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/3006.json b/data/json/items/ammo/3006.json index b5dfef6ec801a..59b375cc62629 100644 --- a/data/json/items/ammo/3006.json +++ b/data/json/items/ammo/3006.json @@ -8,8 +8,8 @@ "weight": "25 g", "volume": "192 ml", "longest_side": "85 mm", - "price": 160, - "price_postapoc": 800, + "price": "1 USD 60 cent", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/300blk.json b/data/json/items/ammo/300blk.json index 9819f4df31a90..afd1fe53a3bdc 100644 --- a/data/json/items/ammo/300blk.json +++ b/data/json/items/ammo/300blk.json @@ -8,8 +8,8 @@ "weight": "18 g", "volume": "194 ml", "longest_side": "57 mm", - "price": 290, - "price_postapoc": 1500, + "price": "2 USD 90 cent", + "price_postapoc": "15 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/303.json b/data/json/items/ammo/303.json index a97cde04e7007..fe4e6e736d015 100644 --- a/data/json/items/ammo/303.json +++ b/data/json/items/ammo/303.json @@ -6,8 +6,8 @@ "description": "Jacketed .303 British ammunition loaded with a 174gr spitzer bullet, similar to the MK VII pattern. The British Empire's standard combat cartridge from 1888 until the 1950s.", "weight": "25 g", "volume": "287 ml", - "price": 160, - "price_postapoc": 250, + "price": "1 USD 60 cent", + "price_postapoc": "2 USD 50 cent", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/308.json b/data/json/items/ammo/308.json index 065087fed3568..90572cc79508f 100644 --- a/data/json/items/ammo/308.json +++ b/data/json/items/ammo/308.json @@ -8,8 +8,8 @@ "weight": "18 g", "volume": "158 ml", "longest_side": "71 mm", - "price": 180, - "price_postapoc": 800, + "price": "1 USD 80 cent", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/30carbine.json b/data/json/items/ammo/30carbine.json index 79d9dd30c2ed6..27b02b6a1d5e1 100644 --- a/data/json/items/ammo/30carbine.json +++ b/data/json/items/ammo/30carbine.json @@ -9,8 +9,8 @@ "weight": "12 g", "volume": "160 ml", "longest_side": "43 mm", - "price": 200, - "price_postapoc": 1200, + "price": "2 USD", + "price_postapoc": "12 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -64,8 +64,8 @@ "name": { "str_sp": ".30 Carbine JSP" }, "description": ".30 Carbine ammunition with a 110gr jacketed soft point bullet, which will perform better as a hunting round than FMJ. A light rifle round developed during the Second World War for use in the M1 carbine, it remains a popular sporting round today.", "ascii_picture": "762_jhp", - "price": 100, - "price_postapoc": 750, + "price": "1 USD", + "price_postapoc": "7 USD 50 cent", "relative": { "damage": { "damage_type": "bullet", "amount": 4, "armor_penetration": -4 } } }, { diff --git a/data/json/items/ammo/32.json b/data/json/items/ammo/32.json index 6991d994d197c..43245cf1baed7 100644 --- a/data/json/items/ammo/32.json +++ b/data/json/items/ammo/32.json @@ -8,8 +8,8 @@ "weight": "8 g", "volume": "116 ml", "longest_side": "25 mm", - "price": 2750, - "price_postapoc": 900, + "price": "27 USD 50 cent", + "price_postapoc": "9 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -84,8 +84,8 @@ "type": "AMMO", "name": { "str_sp": ".32 ACP JHP" }, "description": "Jacketed .32 ACP ammunition with a 71gr hollow point bullet, intended for use in self-defense. This caliber was once a popular handgun cartridge in the 20th century, though it lacks power compared to .380 Auto and 9x19mm.", - "price": 3680, - "price_postapoc": 1000, + "price": "36 USD 80 cent", + "price_postapoc": "10 USD", "relative": { "damage": { "damage_type": "bullet", "amount": 1 } } }, { diff --git a/data/json/items/ammo/338lapua.json b/data/json/items/ammo/338lapua.json index 22c688462d6a4..0af1fd84f9b1c 100644 --- a/data/json/items/ammo/338lapua.json +++ b/data/json/items/ammo/338lapua.json @@ -7,8 +7,8 @@ "weight": "16200 mg", "volume": "327 ml", "longest_side": "94 mm", - "price": 685, - "price_postapoc": 15000, + "price": "6 USD 85 cent", + "price_postapoc": "150 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/357mag.json b/data/json/items/ammo/357mag.json index ad9382d26ce38..5ba110e614573 100644 --- a/data/json/items/ammo/357mag.json +++ b/data/json/items/ammo/357mag.json @@ -9,8 +9,8 @@ "weight": "13 g", "volume": "145 ml", "longest_side": "40 mm", - "price": 140, - "price_postapoc": 1000, + "price": "1 USD 40 cent", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/357sig.json b/data/json/items/ammo/357sig.json index 9a229b441c2f5..2a84ffa390e62 100644 --- a/data/json/items/ammo/357sig.json +++ b/data/json/items/ammo/357sig.json @@ -8,8 +8,8 @@ "weight": "15 g", "volume": "132 ml", "longest_side": "29 mm", - "price": 370, - "price_postapoc": 1000, + "price": "3 USD 70 cent", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/36paper.json b/data/json/items/ammo/36paper.json index c51298213ac3e..e247cd1654c5f 100644 --- a/data/json/items/ammo/36paper.json +++ b/data/json/items/ammo/36paper.json @@ -7,8 +7,8 @@ "ascii_picture": "36navy", "weight": "6 g", "volume": "11 ml", - "price": 400, - "price_postapoc": 1000, + "price": "4 USD", + "price_postapoc": "10 USD", "material": [ "paper", "powder", "lead" ], "symbol": "=", "color": "white", diff --git a/data/json/items/ammo/38.json b/data/json/items/ammo/38.json index ca7c700b149ef..13113f220586f 100644 --- a/data/json/items/ammo/38.json +++ b/data/json/items/ammo/38.json @@ -8,8 +8,8 @@ "weight": "13 g", "volume": "113 ml", "longest_side": "40 mm", - "price": 210, - "price_postapoc": 800, + "price": "2 USD 10 cent", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -64,8 +64,8 @@ "type": "AMMO", "name": { "str_sp": ".38 Special +P" }, "description": "Overpressure .38 Special ammunition with a jacketed 135gr hollowpoint bullet. The round's increased velocity results in superior penetration and stopping power at the cost of higher recoil.", - "price": 300, - "price_postapoc": 1000, + "price": "3 USD", + "price_postapoc": "10 USD", "count": 25, "//": ".357in, 135gr, Speer HPSB GD 4014 7.2gr Hodgdon HS-6, emulating Speer GDHP. KE+2 dam for the hollowpoint.", "damage": { diff --git a/data/json/items/ammo/380.json b/data/json/items/ammo/380.json index d7093972cdf61..93bf3aa1da73a 100644 --- a/data/json/items/ammo/380.json +++ b/data/json/items/ammo/380.json @@ -8,8 +8,8 @@ "weight": "10 g", "volume": "89 ml", "longest_side": "25 mm", - "price": 140, - "price_postapoc": 1000, + "price": "1 USD 40 cent", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -60,8 +60,8 @@ "type": "AMMO", "name": { "str_sp": ".380 ACP +P" }, "description": "Overpressure .380 ACP ammunition with a 90gr jacketed hollow point bullet. This defensive loading is designed to maximize performance, and tends to be more accurate than practice ammo. One should be careful not to chamber it in 9x18mm Makarov or 9x19mm firearms.", - "price": 190, - "price_postapoc": 1500, + "price": "1 USD 90 cent", + "price_postapoc": "15 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "count": 25, "relative": { "damage": { "damage_type": "bullet", "amount": 4, "armor_penetration": 2 }, "dispersion": -15 }, diff --git a/data/json/items/ammo/38super.json b/data/json/items/ammo/38super.json index a20a1f4a807e6..1d2f56ad20e9f 100644 --- a/data/json/items/ammo/38super.json +++ b/data/json/items/ammo/38super.json @@ -8,8 +8,8 @@ "weight": "13 g", "volume": "97 ml", "longest_side": "33 mm", - "price": 210, - "price_postapoc": 1200, + "price": "2 USD 10 cent", + "price_postapoc": "12 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -55,8 +55,8 @@ "type": "AMMO", "name": { "str_sp": ".38 Super JHP" }, "description": ".38 Super ammunition with a 115gr JHP bullet. The .38 Super round was developed from .38 ACP in 1929 to penetrate body armor of the era. The caliber saw some resurgence in popularity amongst competition shooters in the 1980's prior to the proliferation of double stack 9mm pistols.", - "price": 240, - "price_postapoc": 600, + "price": "2 USD 40 cent", + "price_postapoc": "6 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "count": 20, "ammo_type": "38super", diff --git a/data/json/items/ammo/40.json b/data/json/items/ammo/40.json index 2c53308ab4501..d9c46c3a4782f 100644 --- a/data/json/items/ammo/40.json +++ b/data/json/items/ammo/40.json @@ -8,8 +8,8 @@ "weight": "15 g", "volume": "106 ml", "longest_side": "29 mm", - "price": 220, - "price_postapoc": 800, + "price": "2 USD 20 cent", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/40x46mm.json b/data/json/items/ammo/40x46mm.json index dd09405cd9448..3873705ccd92b 100644 --- a/data/json/items/ammo/40x46mm.json +++ b/data/json/items/ammo/40x46mm.json @@ -6,8 +6,8 @@ "volume": "129 ml", "weight": "230 g", "longest_side": "99 mm", - "price": 10000, - "price_postapoc": 6000, + "price": "100 USD", + "price_postapoc": "60 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "steel", "powder" ], "symbol": "=", @@ -27,8 +27,8 @@ "name": { "str_sp": "40x46mm M1006 sponge" }, "description": "A low velocity less-lethal 40x46mm round with a foam and plastic projectile intended to cause pain and disorientation to the target. May still injure or kill.", "ascii_picture": "40x46mm_m1006", - "price": 2300, - "price_postapoc": 5, + "price": "23 USD", + "price_postapoc": "5 cent", "weight": "68 g", "damage": { "damage_type": "bullet", "amount": 10 }, "casing": "40x46mm_m212_casing", @@ -206,8 +206,8 @@ "proportional": { "dispersion": 1.8 }, "description": "A set of ten .22 LR bullets compressed into a 40mm adapter. Fires all ten rounds simultaneously.", "weight": "114 g", - "price": 1500, - "price_postapoc": 2400, + "price": "15 USD", + "price_postapoc": "24 USD", "material": [ "aluminum", "brass", "lead", "powder" ], "damage": { "damage_type": "bullet", "amount": 100 }, "shot_damage": { "damage_type": "bullet", "amount": 10 }, @@ -223,8 +223,8 @@ "proportional": { "dispersion": 1.4 }, "description": "A set of four .410 000 shotshells and a large pistol primer loaded into a 40mm adapter. Fires all four rounds at once with an internal firing assembly, which is set off by the primer.", "weight": "245 g", - "price": 710, - "price_postapoc": 3240, + "price": "7 USD 10 cent", + "price_postapoc": "32 USD 40 cent", "material": [ "aluminum", "brass", "lead", "powder" ], "//": "5in bbl, therefore 4x23 damage per 410 bbti. The launcher's bbl cant't contribute to velocity, so the bbl length that really matters is the adapter's.", "damage": { "damage_type": "bullet", "amount": 92 }, @@ -241,8 +241,8 @@ "proportional": { "dispersion": 1.4 }, "description": "A set of four .410 slug shells and a large pistol primer loaded into a 40mm adapter. Fires all four rounds at once with an internal firing assembly, which is set off by the primer.", "weight": "245 g", - "price": 710, - "price_postapoc": 3240, + "price": "7 USD 10 cent", + "price_postapoc": "32 USD 40 cent", "material": [ "aluminum", "brass", "lead", "powder" ], "//": "5in bbl, therefore 4x22 damage per 410 bbti. The launcher's bbl cant't contribute to velocity, so the bbl length that really matters is the adapter's.", "damage": { "damage_type": "bullet", "amount": 88 }, @@ -259,8 +259,8 @@ "proportional": { "dispersion": 1.4 }, "description": "A set of four .410 birdshot shells and a large pistol primer loaded into a 40mm adapter. Fires all four rounds at once with an internal firing assembly, which is set off by the primer.", "weight": "245 g", - "price": 710, - "price_postapoc": 3240, + "price": "7 USD 10 cent", + "price_postapoc": "32 USD 40 cent", "material": [ "aluminum", "brass", "lead", "powder" ], "//": "5in bbl, therefore 4x21 damage per 410 bbti. The launcher's bbl cant't contribute to velocity, so the bbl length that really matters is the adapter's.", "damage": { "damage_type": "bullet", "amount": 84 }, diff --git a/data/json/items/ammo/410shot.json b/data/json/items/ammo/410shot.json index e51897c15b7f0..2294cc070cf56 100644 --- a/data/json/items/ammo/410shot.json +++ b/data/json/items/ammo/410shot.json @@ -8,8 +8,8 @@ "weight": "27 g", "volume": "170 ml", "longest_side": "70 mm", - "price": 350, - "price_postapoc": 1600, + "price": "3 USD 50 cent", + "price_postapoc": "16 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "plastic", "powder", "lead" ], "symbol": "=", diff --git a/data/json/items/ammo/44.json b/data/json/items/ammo/44.json index 905b51ee9fe03..942aa0ab6cfa8 100644 --- a/data/json/items/ammo/44.json +++ b/data/json/items/ammo/44.json @@ -8,8 +8,8 @@ "weight": "25 g", "volume": "87 ml", "longest_side": "41 mm", - "price": 175, - "price_postapoc": 600, + "price": "1 USD 75 cent", + "price_postapoc": "6 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/44paper.json b/data/json/items/ammo/44paper.json index 96485e9f59da0..fe0ca81506afc 100644 --- a/data/json/items/ammo/44paper.json +++ b/data/json/items/ammo/44paper.json @@ -7,8 +7,8 @@ "ascii_picture": "44army", "weight": "7 g", "volume": "20 ml", - "price": 350, - "price_postapoc": 1000, + "price": "3 USD 50 cent", + "price_postapoc": "10 USD", "material": [ "paper", "powder", "lead" ], "symbol": "=", "color": "white", diff --git a/data/json/items/ammo/45.json b/data/json/items/ammo/45.json index cf58cceb9b789..7f452f358b525 100644 --- a/data/json/items/ammo/45.json +++ b/data/json/items/ammo/45.json @@ -8,8 +8,8 @@ "weight": "21 g", "volume": "112 ml", "longest_side": "32 mm", - "price": 180, - "price_postapoc": 600, + "price": "1 USD 80 cent", + "price_postapoc": "6 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -62,8 +62,8 @@ "type": "AMMO", "name": { "str_sp": ".45 ACP +P" }, "description": "Overpressure .45 ACP ammunition with a 185gr JHP bullet. This cartridge has higher muzzle energy than typical loads, leading to greater damage, accuracy and recoil.", - "price": 210, - "price_postapoc": 600, + "price": "2 USD 10 cent", + "price_postapoc": "6 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "count": 10, "relative": { "damage": { "damage_type": "bullet", "amount": 4, "armor_penetration": 4 }, "dispersion": -10, "recoil": 60 } diff --git a/data/json/items/ammo/450bushmaster.json b/data/json/items/ammo/450bushmaster.json index b6cfe14588213..450be6caa774a 100644 --- a/data/json/items/ammo/450bushmaster.json +++ b/data/json/items/ammo/450bushmaster.json @@ -7,8 +7,8 @@ "weight": "31 g", "volume": "145 ml", "longest_side": "58 mm", - "price": 241, - "price_postapoc": 500, + "price": "2 USD 41 cent", + "price_postapoc": "5 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -72,8 +72,8 @@ "name": { "str_sp": ".450 Bushmaster Xtreme Hunter" }, "description": ".450 Bushmaster ammunition, loaded with a solid-copper 220-grain penetrator bullet. Born from discontent with the .223 Remington's weak stopping potential, the .450 Bushmaster round was crafted in line with the so-called 'Thumper' concept: an envisioned need for a large-bore, semi-automatic sporting cartridge capable of downing game in one shot. Along with its elder sibling, the .50-caliber Beowulf cartridge, the .450 Bushmaster is one of a number of such high-caliber rounds and is compatible with appropriately converted AR-15-platform rifles. This particular cartridge is loaded with a solid-copper projectile: excellent at punching through thick barriers and delivering massive amounts of energy to anything unfortunate enough to be hit.", "weight": "29 g", - "price": 529, - "price_postapoc": 650, + "price": "5 USD 29 cent", + "price_postapoc": "6 USD 50 cent", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "relative": { "range": 2, "damage": { "damage_type": "bullet", "amount": 6, "armor_penetration": 7 }, "recoil": 300 } }, diff --git a/data/json/items/ammo/454.json b/data/json/items/ammo/454.json index c094c65aba813..b1d79af707016 100644 --- a/data/json/items/ammo/454.json +++ b/data/json/items/ammo/454.json @@ -8,8 +8,8 @@ "weight": "30 g", "volume": "79 ml", "longest_side": "45 mm", - "price": 500, - "price_postapoc": 800, + "price": "5 USD", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/4570.json b/data/json/items/ammo/4570.json index 3a836cda31f44..2df526942348e 100644 --- a/data/json/items/ammo/4570.json +++ b/data/json/items/ammo/4570.json @@ -8,8 +8,8 @@ "weight": "35 g", "volume": "167 ml", "longest_side": "65 mm", - "price": 125, - "price_postapoc": 800, + "price": "1 USD 25 cent", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "+", @@ -31,8 +31,8 @@ "name": { "str": ".45-70 +P penetrator" }, "description": ".45-70 Government overpressure ammunition loaded with a 305 grain solid copper penetrator projectile. Designed for maximum penetration through thick hide and bone while maintaining ideal wounding characteristics.", "ascii_picture": "4570_pen", - "price": 175, - "price_postapoc": 600, + "price": "1 USD 75 cent", + "price_postapoc": "6 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "count": 10, "relative": { "range": 2, "damage": { "damage_type": "bullet", "amount": 4, "armor_penetration": 7 }, "recoil": 300 } @@ -44,8 +44,8 @@ "name": { "str_sp": ".45-70 LFN cowboy" }, "description": ".45-70 Government ammunition loaded with a 405 grain lead flat nose bullet to original specifications for safe use in antique firearms. Quite a bit less powerful than modern ammo, but still packs a punch.", "weight": "41 g", - "price": 250, - "price_postapoc": 400, + "price": "2 USD 50 cent", + "price_postapoc": "4 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "relative": { "range": -8, "damage": { "damage_type": "bullet", "amount": -14, "armor_penetration": -2 }, "recoil": -900 } }, diff --git a/data/json/items/ammo/458wm.json b/data/json/items/ammo/458wm.json index da2fd5aab8da1..9666819afffcc 100644 --- a/data/json/items/ammo/458wm.json +++ b/data/json/items/ammo/458wm.json @@ -8,8 +8,8 @@ "weight": "42 g", "volume": "56 ml", "longest_side": "107 mm", - "price": 1750, - "price_postapoc": 2000, + "price": "17 USD 50 cent", + "price_postapoc": "20 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/45colt.json b/data/json/items/ammo/45colt.json index 850e036fa0cd3..293dc190c9f7a 100644 --- a/data/json/items/ammo/45colt.json +++ b/data/json/items/ammo/45colt.json @@ -6,8 +6,8 @@ "weight": "25 g", "volume": "190 ml", "longest_side": "41 mm", - "price": 200, - "price_postapoc": 800, + "price": "2 USD", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/46.json b/data/json/items/ammo/46.json index b968a14f8933c..c5219371fa143 100644 --- a/data/json/items/ammo/46.json +++ b/data/json/items/ammo/46.json @@ -8,8 +8,8 @@ "weight": "7 g", "volume": "156 ml", "longest_side": "39 mm", - "price": 300, - "price_postapoc": 1600, + "price": "3 USD", + "price_postapoc": "16 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "steel", "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/50.json b/data/json/items/ammo/50.json index 76232a2b427f7..52686c41dedc2 100644 --- a/data/json/items/ammo/50.json +++ b/data/json/items/ammo/50.json @@ -19,8 +19,8 @@ "weight": "114 g", "volume": "451 ml", "longest_side": "138 mm", - "price": 2200, - "price_postapoc": 2500, + "price": "22 USD", + "price_postapoc": "25 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "steel", "brass", "lead", "powder" ], "symbol": "=", @@ -62,8 +62,8 @@ "copy-from": "50bmg", "type": "AMMO", "name": { "str_sp": ".50 BMG Raufoss Mk 211" }, - "price": 60000, - "price_postapoc": 7500, + "price": "600 USD", + "price_postapoc": "75 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "description": "This variant of the .50 BMG round makes the most of the caliber's potential payload delivery: the tip is loaded with an incendiary mix, which ignites on impact, detonating the RDX or PETN charge. This also ignites a secondary zirconium powder incendiary charge that surrounds a tungsten carbide penetrator, both encased by a mild steel cup. Fragments from the cup and burning metallic powder follow the penetrator through armored targets, increasing lethality. This rare, complicated, and expensive round is not likely to be manufactured again; use it wisely.", "ascii_picture": "50_mk211", diff --git a/data/json/items/ammo/500.json b/data/json/items/ammo/500.json index b2af62d3526ec..a3fd3f93eb40f 100644 --- a/data/json/items/ammo/500.json +++ b/data/json/items/ammo/500.json @@ -8,8 +8,8 @@ "weight": "45 g", "volume": "82 ml", "longest_side": "58 mm", - "price": 200, - "price_postapoc": 1000, + "price": "2 USD", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/50_beowulf.json b/data/json/items/ammo/50_beowulf.json index b05bfef1f4daf..ccd28844b18da 100644 --- a/data/json/items/ammo/50_beowulf.json +++ b/data/json/items/ammo/50_beowulf.json @@ -7,8 +7,8 @@ "weight": "36 g", "volume": "231 ml", "longest_side": "54 mm", - "price": 224, - "price_postapoc": 500, + "price": "2 USD 24 cent", + "price_postapoc": "5 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -89,8 +89,8 @@ "name": { "str": ".50 Beowulf Xtreme Penetrator" }, "description": ".50-caliber Beowulf ammunition, loaded with a solid-copper 420-grain Xtreme Penetrator bullet. Developed in 2001 as a powerful short- to medium-range chambering for AR-15 style rifles, this stout cartridge had gained some popularity as a hunting round before the Cataclysm. With a blunt nose construction for better initial energy transfer, this 12.7mm-wide bullet's solid copper design allows it to punch through entry barriers while resulting in a larger wound column.", "weight": "40 g", - "price": 439, - "price_postapoc": 650, + "price": "4 USD 39 cent", + "price_postapoc": "6 USD 50 cent", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "relative": { "range": 2, "damage": { "damage_type": "bullet", "amount": 4, "armor_penetration": 7 }, "recoil": 300 } }, diff --git a/data/json/items/ammo/50ae.json b/data/json/items/ammo/50ae.json index 134899dd79748..8945eb110487d 100644 --- a/data/json/items/ammo/50ae.json +++ b/data/json/items/ammo/50ae.json @@ -6,8 +6,8 @@ "description": ".50 Action Express ammunition loaded with a 325-grain jacketed flat-nose bullet, primarily for use in the Desert Eagle pistol.", "weight": "35 g", "volume": "102 ml", - "price": 4000, - "price_postapoc": 4000, + "price": "40 USD", + "price_postapoc": "40 USD", "material": [ "brass", "lead", "powder" ], "symbol": "=", "color": "red", diff --git a/data/json/items/ammo/545x39.json b/data/json/items/ammo/545x39.json index ef36007494418..bbfffbc325cca 100644 --- a/data/json/items/ammo/545x39.json +++ b/data/json/items/ammo/545x39.json @@ -8,8 +8,8 @@ "weight": "10 g", "volume": "134 ml", "longest_side": "40 mm", - "price": 100, - "price_postapoc": 900, + "price": "1 USD", + "price_postapoc": "9 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -73,8 +73,8 @@ "name": { "str_sp": "5.45x39mm 7N6" }, "description": "5.45x39mm ammunition with a 57gr bullet containing a mild steel penetrator, which penetrates armor marginally better than lead core projectiles. Developed in 1974 by the Russian military, and banned from import into the US in 2014.", "ascii_picture": "545_ap", - "price": 350, - "price_postapoc": 900, + "price": "3 USD 50 cent", + "price_postapoc": "9 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "symbol": "=", "color": "yellow", diff --git a/data/json/items/ammo/57.json b/data/json/items/ammo/57.json index 74e0623764865..ab30829ef692b 100644 --- a/data/json/items/ammo/57.json +++ b/data/json/items/ammo/57.json @@ -8,8 +8,8 @@ "weight": "6 g", "volume": "121 ml", "longest_side": "41 mm", - "price": 350, - "price_postapoc": 1600, + "price": "3 USD 50 cent", + "price_postapoc": "16 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "steel", "brass", "lead", "powder" ], "symbol": "=", @@ -32,7 +32,7 @@ "description": "A subsonic cartridge derived from the 5.7x28mm, designed for silenced firearms. It offers good armor penetration at the cost of slightly less damage.", "ascii_picture": "57mm_ss", "relative": { - "price": 100, + "price": "1 USD", "range": -1, "damage": { "damage_type": "bullet", "amount": -10, "armor_penetration": -6 }, "recoil": -40 diff --git a/data/json/items/ammo/66mm.json b/data/json/items/ammo/66mm.json index 8978c2e2a03aa..255d1caa304f3 100644 --- a/data/json/items/ammo/66mm.json +++ b/data/json/items/ammo/66mm.json @@ -2,7 +2,7 @@ { "type": "AMMO", "id": "m235tpa", - "price": 200000, + "price": "2 kUSD", "//": "$500 per. Cheap!", "name": { "str": "M74 rocket" }, "symbol": "=", @@ -12,7 +12,7 @@ "material": [ "steel", "powder" ], "volume": "2 L", "longest_side": "53 cm", - "price_postapoc": 8000, + "price_postapoc": "80 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "weight": "1338 g", "ammo_type": "m235", @@ -26,7 +26,7 @@ { "type": "AMMO", "id": "66mm_HEAT", - "price": 200000, + "price": "2 kUSD", "name": { "str_sp": "66mm HEAT" }, "symbol": "=", "color": "dark_gray", @@ -35,7 +35,7 @@ "material": [ "steel", "powder" ], "volume": "250 ml", "longest_side": "508 mm", - "price_postapoc": 8000, + "price_postapoc": "80 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "weight": "2131 g", "ammo_type": "66mm", diff --git a/data/json/items/ammo/762.json b/data/json/items/ammo/762.json index 222096c0e99d1..392a4d9c4f45e 100644 --- a/data/json/items/ammo/762.json +++ b/data/json/items/ammo/762.json @@ -8,8 +8,8 @@ "weight": "16 g", "volume": "113 ml", "longest_side": "56 mm", - "price": 120, - "price_postapoc": 800, + "price": "1 USD 20 cent", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -62,8 +62,8 @@ "name": { "str_sp": "7.62x39mm JHP" }, "description": "7.62x39mm ammunition with a 123gr jacketed, hollowpoint bullet. Made for hunting medium game, cartridges such as these were once popular for those using cheap military surplus rifles, as 7.62x39's ballistics are somewhat similar to that of 30-30 Winchester. The combination of sanctions against exporting nations and drying up of formerly plentiful surplus has made these loadings of 7.62x39 less popular.", "ascii_picture": "762_jhp", - "price": 100, - "price_postapoc": 750, + "price": "1 USD", + "price_postapoc": "7 USD 50 cent", "relative": { "damage": { "damage_type": "bullet", "amount": 4, "armor_penetration": -8 } } }, { diff --git a/data/json/items/ammo/762R.json b/data/json/items/ammo/762R.json index ddef358bde642..d3f1c4e4df819 100644 --- a/data/json/items/ammo/762R.json +++ b/data/json/items/ammo/762R.json @@ -8,8 +8,8 @@ "weight": "18 g", "volume": "185 ml", "longest_side": "77 mm", - "price": 200, - "price_postapoc": 600, + "price": "2 USD", + "price_postapoc": "6 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/762x25.json b/data/json/items/ammo/762x25.json index 3a7ca60747665..388cc25133a81 100644 --- a/data/json/items/ammo/762x25.json +++ b/data/json/items/ammo/762x25.json @@ -8,8 +8,8 @@ "weight": "10 g", "volume": "107 ml", "longest_side": "35 mm", - "price": 100, - "price_postapoc": 800, + "price": "1 USD", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -30,7 +30,7 @@ "type": "AMMO", "name": { "str_sp": "7.62x25mm FMJ hot load" }, "description": "A high-pressure commercial version of the 7.62x25mm cartridge, loaded with an 85 gr. FMJ bullet. It is more powerful than the original.", - "relative": { "price": 500, "range": 2, "damage": { "damage_type": "bullet", "amount": 4, "armor_penetration": 3 } }, + "relative": { "price": "5 USD", "range": 2, "damage": { "damage_type": "bullet", "amount": 4, "armor_penetration": 3 } }, "proportional": { "recoil": 1.4 } }, { @@ -43,7 +43,7 @@ "weight": "12 g", "count": 50, "relative": { - "price": 2000, + "price": "20 USD", "range": -1, "damage": { "damage_type": "bullet", "amount": -9, "armor_penetration": 2 }, "recoil": -270 diff --git a/data/json/items/ammo/77mm_jap.json b/data/json/items/ammo/77mm_jap.json index 2efdd7398152a..596ac9a4a471b 100644 --- a/data/json/items/ammo/77mm_jap.json +++ b/data/json/items/ammo/77mm_jap.json @@ -7,8 +7,8 @@ "weight": "17 g", "volume": "182 ml", "longest_side": "80 mm", - "price": 449, - "price_postapoc": 480, + "price": "4 USD 49 cent", + "price_postapoc": "4 USD 80 cent", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/84x246mm.json b/data/json/items/ammo/84x246mm.json index 4f324a909a0a2..c9be36f7523d1 100644 --- a/data/json/items/ammo/84x246mm.json +++ b/data/json/items/ammo/84x246mm.json @@ -3,8 +3,8 @@ "type": "AMMO", "id": "84x246mm_he", "//": "84mm HE 441D RS. Ref:TC 3-22.84. 35494gr projectile travelling at 787.4fps.", - "price": 70000, - "price_postapoc": 12000, + "price": "700 USD", + "price_postapoc": "120 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "name": { "str_sp": "84x245mm HE" }, "symbol": "=", @@ -29,8 +29,8 @@ "id": "84x246mm_hedp", "copy-from": "84x246mm_he", "//": "84mm HEDP 502 RS.", - "price": 70000, - "price_postapoc": 12000, + "price": "700 USD", + "price_postapoc": "120 USD", "name": { "str_sp": "84x245mm HEDP" }, "description": "An 84x245mm High Explosive Dual Purpose anti-materiel cartridge for the Carl Gustaf M3 and other 84mm recoilless rifles. Designed to be highly effective against vehicles and structures.", "ascii_picture": "84x246mm_hedp", @@ -48,8 +48,8 @@ "id": "84x246mm_smoke", "copy-from": "84x246mm_he", "//": "84mm SMOKE 469C. 35340gr projectile travelling at 787.4 fps.", - "price": 45000, - "price_postapoc": 12000, + "price": "450 USD", + "price_postapoc": "120 USD", "name": { "str_sp": "84x245mm smoke" }, "description": "An 84x245mm smoke marker cartridge for the Carl Gustaf M3 and other 84mm recoilless rifles. Commonly used for signaling, target designation, and for screening troop movements.", "ascii_picture": "84x246mm_smoke", diff --git a/data/json/items/ammo/8x40mm.json b/data/json/items/ammo/8x40mm.json index d79979cc12e6b..94a34a5886c49 100644 --- a/data/json/items/ammo/8x40mm.json +++ b/data/json/items/ammo/8x40mm.json @@ -17,8 +17,8 @@ "description": "An 8x40mm caseless cartridge with a rectangular shape, consisting of a jacketed 127gr bullet housed inside of an advanced propellant body. Upon firing, the body will be consumed, leaving nothing behind in the chamber. Proprietary ammunition for Rivtech 8x40 caseless guns.", "weight": "12 g", "volume": "150 ml", - "price": 11600, - "price_postapoc": 8000, + "price": "116 USD", + "price_postapoc": "80 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE", "CASELESS_ROUNDS" ], "material": [ { "type": "steel", "portion": 33 }, { "type": "plastic", "portion": 50 }, { "type": "powder", "portion": 17 } ], "symbol": "=", diff --git a/data/json/items/ammo/9mm.json b/data/json/items/ammo/9mm.json index 9d62ab1b381cd..56d6e7c35f1fe 100644 --- a/data/json/items/ammo/9mm.json +++ b/data/json/items/ammo/9mm.json @@ -8,8 +8,8 @@ "weight": "12 g", "volume": "115 ml", "longest_side": "30 mm", - "price": 150, - "price_postapoc": 1000, + "price": "1 USD 50 cent", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -38,8 +38,8 @@ "type": "AMMO", "name": { "str_sp": "9x19mm +P" }, "description": "Overpressure 9x19mm ammunition. The round's increased velocity results in superior accuracy and stopping power at the cost of higher recoil.", - "price": 300, - "price_postapoc": 800, + "price": "3 USD", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "count": 25, "relative": { "damage": { "damage_type": "bullet", "amount": 2, "armor_penetration": 2 }, "dispersion": -15 }, @@ -51,8 +51,8 @@ "type": "AMMO", "name": { "str_sp": "9x19mm +P+" }, "description": "A step beyond the high-pressure 9x19mm +P round, the +P+ has even higher internal pressure offering superior damage, accuracy, and penetration.", - "price": 350, - "price_postapoc": 400, + "price": "3 USD 50 cent", + "price_postapoc": "4 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "count": 10, "relative": { "damage": { "damage_type": "bullet", "amount": 4, "armor_penetration": 4 }, "dispersion": -30 }, diff --git a/data/json/items/ammo/9x18.json b/data/json/items/ammo/9x18.json index 9092dc1a87508..6d40cdf7ee9d2 100644 --- a/data/json/items/ammo/9x18.json +++ b/data/json/items/ammo/9x18.json @@ -8,8 +8,8 @@ "weight": "10 g", "volume": "97 ml", "longest_side": "25 mm", - "price": 100, - "price_postapoc": 1000, + "price": "1 USD", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "steel", "powder" ], "symbol": "=", @@ -30,8 +30,8 @@ "type": "AMMO", "name": { "str_sp": "9x18mm SP-7" }, "description": "9x18mm Makarov SP-7 ammunition. The 9x18mm round was very common in the Eastern Bloc during the 20th century and remained in Russian military service into the 21st.", - "price": 150, - "price_postapoc": 1000, + "price": "1 USD 50 cent", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "count": 25, "relative": { "range": 2, "damage": { "damage_type": "bullet", "amount": 4 }, "dispersion": -10 }, @@ -43,8 +43,8 @@ "type": "AMMO", "name": { "str_sp": "9x18mm RG028" }, "description": "9x18mm Makarov RG028 ammunition. The RG028 round uses a bullet with a hardened steel core to improve armor penetration.", - "price": 200, - "price_postapoc": 3100, + "price": "2 USD", + "price_postapoc": "31 USD", "relative": { "damage": { "damage_type": "bullet", "amount": -2, "armor_penetration": 8 } } }, { diff --git a/data/json/items/ammo/atgm.json b/data/json/items/ammo/atgm.json index 9cda3653fa7c1..6e4181157e64d 100644 --- a/data/json/items/ammo/atgm.json +++ b/data/json/items/ammo/atgm.json @@ -2,8 +2,8 @@ { "type": "AMMO", "id": "atgm_heat", - "price": 70000, - "price_postapoc": 5000, + "price": "700 USD", + "price_postapoc": "50 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "name": { "str_sp": "152mm ATGM HEAT" }, "symbol": "=", diff --git a/data/json/items/ammo/barb.json b/data/json/items/ammo/barb.json index f16f9c282289a..04cb31719c8c4 100644 --- a/data/json/items/ammo/barb.json +++ b/data/json/items/ammo/barb.json @@ -2,7 +2,7 @@ { "type": "AMMO", "id": "barb_paralysis", - "price": 400, + "price": "4 USD", "name": { "str": "paralyzing barb" }, "symbol": "=", "color": "green", diff --git a/data/json/items/ammo/blank.json b/data/json/items/ammo/blank.json index 94f10fbe5a3d1..e152e6b197c5d 100644 --- a/data/json/items/ammo/blank.json +++ b/data/json/items/ammo/blank.json @@ -6,8 +6,8 @@ "name": { "str_sp": ".22 blank" }, "description": "A powder load .22 blank used for powder actuated tools.", "ascii_picture": "22_blank", - "price": 100, - "price_postapoc": 1000, + "price": "1 USD", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "count": 100, "stack_size": 150, diff --git a/data/json/items/ammo/cannon.json b/data/json/items/ammo/cannon.json index 4f54aa4bee554..7836c13d68e5c 100644 --- a/data/json/items/ammo/cannon.json +++ b/data/json/items/ammo/cannon.json @@ -7,8 +7,8 @@ "ascii_picture": "cannon_shot", "weight": "2350 g", "volume": "1000 ml", - "price": 1100, - "price_postapoc": 1200, + "price": "11 USD", + "price_postapoc": "12 USD", "material": [ "steel", "powder" ], "symbol": "=", "color": "white", diff --git a/data/json/items/ammo/chemical_spray.json b/data/json/items/ammo/chemical_spray.json index 82af89cb4da06..23f623694f65b 100644 --- a/data/json/items/ammo/chemical_spray.json +++ b/data/json/items/ammo/chemical_spray.json @@ -6,8 +6,8 @@ "description": "A hazardous mixture made from household cleaning chemicals, improvised for use in a chemical thrower. Best used with some kind of mask or mouth protection.", "weight": "3 g", "volume": "250 ml", - "price": 3500, - "price_postapoc": 500, + "price": "35 USD", + "price_postapoc": "5 USD", "material": [ "water" ], "symbol": "=", "color": "green", @@ -26,8 +26,8 @@ "description": "Fungicide enhanced with sulfur to create sprayable anti-fungal ammo for the chemical thrower. Best used with some kind of mask or mouth protection.", "weight": "3 g", "volume": "250 ml", - "price": 600, - "price_postapoc": 500, + "price": "6 USD", + "price_postapoc": "5 USD", "material": [ "water" ], "symbol": "=", "color": "yellow", @@ -46,8 +46,8 @@ "description": "Strong sprayable insecticide ammo for the chemical thrower. Best used with some kind of mask or mouth protection.", "weight": "3 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 500, + "price": "5 USD", + "price_postapoc": "5 USD", "material": [ "water" ], "symbol": "=", "color": "yellow", diff --git a/data/json/items/ammo/exodii.json b/data/json/items/ammo/exodii.json index 5ed5dc5c1e56b..a41227d47814a 100644 --- a/data/json/items/ammo/exodii.json +++ b/data/json/items/ammo/exodii.json @@ -41,8 +41,8 @@ "weight": "226 g", "volume": "284 ml", "longest_side": "119 mm", - "price": 6000, - "price_postapoc": 2700, + "price": "60 USD", + "price_postapoc": "27 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", @@ -145,8 +145,8 @@ "range": 30, "dispersion": 200, "recoil": 100, - "price": 1800, - "price_postapoc": 1500, + "price": "18 USD", + "price_postapoc": "15 USD", "drop": "sigflare_lit", "damage": { "damage_type": "bullet", "amount": 16 }, "effects": [ "NEVER_MISFIRES", "NO_EMBED" ] @@ -160,8 +160,8 @@ "//": "690 fps, 1404gr, rngmax:2598yd. Wurfgranate P326 at XM25 velocities.", "range": 29, "recoil": 2800, - "price": 2400, - "price_postapoc": 1800, + "price": "24 USD", + "price_postapoc": "18 USD", "damage": { "damage_type": "bullet", "amount": 45 }, "effects": [ "COOKOFF" ] }, @@ -171,8 +171,8 @@ "type": "AMMO", "name": { "str_sp": "27.3x44 Diyua thermobaric" }, "description": "A 27.3x44 Diyua cartridge with a minute amount of liquid fuel encasing a fuel dispersing explosive charge, and a secondary ignition charge. On impact the fuel is dispersed, creating a fuel air mixture which is ignited a few milliseconds later. In a cartridge like 27.3x44 Diyua, the pressure wave produced is rather diminutive, yet it makes the most of what little payload is available.", - "price": 6600, - "price_postapoc": 4000, + "price": "66 USD", + "price_postapoc": "40 USD", "damage": { "damage_type": "bullet", "amount": 15 }, "effects": [ "COOKOFF", "EXPLOSIVE_EXODII_THERMOBARIC", "LARGE_BEANBAG" ] }, @@ -182,8 +182,8 @@ "type": "AMMO", "name": { "str_sp": "27.3x44 Diyua high explosive" }, "description": "A 27.3x44 Diyua cartridge loaded with a high explosive charge and a point-detonating fuze. Primarily useful for assaulting soft targets, and, in their universe of origin, dispersing crowds.", - "price": 6000, - "price_postapoc": 3600, + "price": "60 USD", + "price_postapoc": "36 USD", "damage": { "damage_type": "bullet", "amount": 15 }, "effects": [ "COOKOFF", "FRAG_20x66" ] }, @@ -193,8 +193,8 @@ "weight": "870 g", "volume": "372 ml", "longest_side": "259 mm", - "price": 6000, - "price_postapoc": 3600, + "price": "60 USD", + "price_postapoc": "36 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "lead", "powder" ], "symbol": "=", diff --git a/data/json/items/ammo/flintlock.json b/data/json/items/ammo/flintlock.json index 788e9af95a21b..5788238cacef5 100644 --- a/data/json/items/ammo/flintlock.json +++ b/data/json/items/ammo/flintlock.json @@ -7,8 +7,8 @@ "ascii_picture": "flintlock_ammo", "weight": "40 g", "volume": "10 ml", - "price": 1100, - "price_postapoc": 1200, + "price": "11 USD", + "price_postapoc": "12 USD", "material": [ "lead", "powder" ], "symbol": "=", "color": "white", @@ -30,8 +30,8 @@ "ascii_picture": "flintlock_ammo", "weight": "40 g", "volume": "10 ml", - "price": 1100, - "price_postapoc": 1200, + "price": "11 USD", + "price_postapoc": "12 USD", "material": [ "lead", "powder" ], "symbol": "=", "color": "white", diff --git a/data/json/items/ammo/nail.json b/data/json/items/ammo/nail.json index f79de4cecbb5f..c659708db1ed8 100644 --- a/data/json/items/ammo/nail.json +++ b/data/json/items/ammo/nail.json @@ -33,8 +33,8 @@ "ascii_picture": "nail", "weight": "4 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "=", "color": "cyan", @@ -56,8 +56,8 @@ "ascii_picture": "nuts_bolts", "weight": "4 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "=", "color": "cyan", diff --git a/data/json/items/ammo/paintball.json b/data/json/items/ammo/paintball.json index 3b794b513fb90..f9af462cc6342 100644 --- a/data/json/items/ammo/paintball.json +++ b/data/json/items/ammo/paintball.json @@ -2,8 +2,8 @@ { "type": "AMMO", "id": "paintball", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "name": { "str": "paintball" }, "symbol": "=", "color": "red", diff --git a/data/json/items/ammo/shot.json b/data/json/items/ammo/shot.json index 806ff4709bc83..e521607984246 100644 --- a/data/json/items/ammo/shot.json +++ b/data/json/items/ammo/shot.json @@ -122,8 +122,8 @@ "name": { "str_sp": "00 shot" }, "description": "A shell filled with metal pellets. Extremely damaging, plus the spread makes it very accurate at short range. Favored by SWAT forces.", "ascii_picture": "shot_00", - "price": 500, - "price_postapoc": 800, + "price": "5 USD", + "price_postapoc": "8 USD", "range": 18, "damage": { "damage_type": "bullet", "amount": 60 }, "shot_damage": { "damage_type": "bullet", "amount": 15 }, @@ -141,8 +141,8 @@ "description": "A beanbag round for shotguns. Designated 'less-lethal' and intended to disable, but remember that 'less-lethal' does not mean 'non-lethal'.", "ascii_picture": "shot_beanbag", "weight": "57 g", - "price": 500, - "price_postapoc": 200, + "price": "5 USD", + "price_postapoc": "2 USD", "range": 10, "count": 10, "damage": { "damage_type": "bullet", "amount": 5 }, @@ -157,8 +157,8 @@ "name": { "str_sp": "birdshot" }, "description": "Weak shotgun ammunition. Designed for hunting birds and other small game, its applications in combat are very limited.", "ascii_picture": "shot_bird", - "price": 100, - "price_postapoc": 400, + "price": "1 USD", + "price_postapoc": "4 USD", "projectile_count": 100, "shot_spread": 300, "range": 18, @@ -175,8 +175,8 @@ "name": { "str": "dragon's breath shell" }, "description": "A shotgun shell filled with magnesium pellets or shards, used mostly as a distress flare or pyrotechnics tool. When the round is fired, high-temperature sparks and flames shoot out of the barrel, igniting everything in their path.", "ascii_picture": "shot_dragon", - "price": 1000, - "price_postapoc": 1600, + "price": "10 USD", + "price_postapoc": "16 USD", "proportional": { "damage": { "damage_type": "bullet", "amount": 0.2 }, "recoil": 0.6, "loudness": 0.8, "range": 0.5 }, "extend": { "effects": [ "INCENDIARY", "STREAM", "NOGIB" ] } }, @@ -187,8 +187,8 @@ "name": { "str": "flechette shell" }, "description": "A shotgun shell filled with tiny steel darts. The spread makes it very accurate at short range.", "ascii_picture": "shot_flechette", - "price": 2000, - "price_postapoc": 800, + "price": "20 USD", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "count": 10, "relative": { "shot_damage": { "damage_type": "bullet", "amount": -3 }, "shot_spread": -150, "range": 12 } @@ -201,8 +201,8 @@ "//": "$30/shot thanks to tight regulation, one way or another.", "description": "A shotgun shell shooting a small explosive. Banned in several states. While an explosive from a shotgun sounds impressive, its practical applications are limited at best. The loss in mass in order to accommodate an explosive give it much less impact force compared to traditional ammunition. The relatively small size of the slug can only accommodate a limited amount of explosives, resulting in a fairly underwhelming explosion. These traits make it a utility tool for damaging barriers and disrupting other explosive devices, rather than something for anti-personnel use.", "ascii_picture": "shot_he", - "price": 3000, - "price_postapoc": 1600, + "price": "30 USD", + "price_postapoc": "16 USD", "count": 5, "extend": { "effects": [ "EXPLOSIVE_HESHOT" ] }, "damage": { "damage_type": "bullet", "amount": 10, "armor_penetration": 0 } @@ -235,8 +235,8 @@ "name": { "str": "shotgun slug" }, "description": "A heavy metal slug used to give a shotgun the range capabilities of a rifle. Extremely damaging but rather inaccurate.", "ascii_picture": "shot_slug", - "price": 400, - "price_postapoc": 400, + "price": "4 USD", + "price_postapoc": "4 USD", "range": 24, "dispersion": 100, "damage": { "damage_type": "bullet", "amount": 50, "armor_penetration": 6 }, diff --git a/data/json/items/ammo/signal_flare.json b/data/json/items/ammo/signal_flare.json index 1be3ff1ac303b..553ec3289f288 100644 --- a/data/json/items/ammo/signal_flare.json +++ b/data/json/items/ammo/signal_flare.json @@ -7,8 +7,8 @@ "ascii_picture": "signal_flare", "weight": "32 g", "volume": "377 ml", - "price": 500, - "price_postapoc": 500, + "price": "5 USD", + "price_postapoc": "5 USD", "material": [ "plastic", "powder" ], "symbol": "=", "color": "red", diff --git a/data/json/items/ammo/sling-ready_grenade.json b/data/json/items/ammo/sling-ready_grenade.json index 4bc4a901636e9..e5b55c098a191 100644 --- a/data/json/items/ammo/sling-ready_grenade.json +++ b/data/json/items/ammo/sling-ready_grenade.json @@ -8,8 +8,8 @@ "weight": "1000 g", "volume": "960 ml", "longest_side": "276 mm", - "price": 500, - "price_postapoc": 500, + "price": "5 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "glass", "cotton" ], "symbol": "*", @@ -42,8 +42,8 @@ "ascii_picture": "sling-ready_grenade", "weight": "397 g", "volume": "540 ml", - "price": 1500, - "price_postapoc": 1000, + "price": "15 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -76,7 +76,7 @@ "ascii_picture": "sling-ready_small_homemade_grenade", "weight": "460 g", "volume": "270 ml", - "price": 750, + "price": "7 USD 50 cent", "material": [ "aluminum", "iron" ], "explode_in_fire": true, "explosion": { "power": 150, "shrapnel": { "casing_mass": 200, "fragment_mass": 0.4 } }, @@ -103,7 +103,7 @@ "description": "An improvised explosive device cobbled together from spare parts, modified with a retaining fuse for use in a staff sling with a modified cradle. To throw this item without a sling, use it to snap the fuse and activate the grenade. You will then have 5 seconds before it explodes; throwing it would be a good idea.", "ascii_picture": "sling-ready_homemade_grenade", "weight": "900 g", - "price": 1500, + "price": "15 USD", "material": [ "aluminum", "iron" ], "explode_in_fire": true, "explosion": { "power": 300, "shrapnel": { "casing_mass": 400, "fragment_mass": 0.4 } }, @@ -130,7 +130,7 @@ "ascii_picture": "sling-ready_small_homemade_grenade_2", "weight": "600 g", "volume": "270 ml", - "price": 1500, + "price": "15 USD", "material": [ "aluminum", "iron" ], "explode_in_fire": true, "explosion": { "power": 460, "shrapnel": { "casing_mass": 200, "fragment_mass": 0.4 } }, @@ -157,7 +157,7 @@ "description": "An improvised explosive device cobbled together from parts, modified with a retaining fuse for use in a staff sling with a modified cradle. To throw this item without a sling, use it to snap the fuse and activate the grenade. You will then have some amount of time before it explodes; throwing it would be a good idea.", "ascii_picture": "sling-ready_homemade_grenade_2", "weight": "1200 g", - "price": 3000, + "price": "30 USD", "material": [ "aluminum", "iron" ], "explode_in_fire": true, "explosion": { "power": 920, "shrapnel": { "casing_mass": 400, "fragment_mass": 0.4 } }, diff --git a/data/json/items/ammo/weldgas.json b/data/json/items/ammo/weldgas.json index 5b0a955faf21c..ebd66099754dd 100644 --- a/data/json/items/ammo/weldgas.json +++ b/data/json/items/ammo/weldgas.json @@ -7,8 +7,8 @@ "description": "Pressurized, dangerous acetylene gas. Can be used for welding or cutting with a torch.", "weight": "1 g", "volume": "250 ml", - "price": 2400, - "price_postapoc": 500, + "price": "24 USD", + "price_postapoc": "5 USD", "material": [ "hydrocarbons" ], "symbol": "=", "color": "red", @@ -30,8 +30,8 @@ "ascii_picture": "welding_rod_steel", "weight": "2777 mg", "volume": "12 ml", - "price": 42, - "price_postapoc": 100, + "price": "42 cent", + "price_postapoc": "1 USD", "material": [ "iron" ], "//": "10 charges = 1 welding electrode, 1 charge approximately represents 1cm of the welding seam", "symbol": "i", @@ -51,8 +51,8 @@ "ascii_picture": "welding_rod_alloy", "weight": "1429 mg", "volume": "12 ml", - "price": 60, - "price_postapoc": 80, + "price": "60 cent", + "price_postapoc": "80 cent", "material": [ "aluminum" ], "//": "10 charges = 1 welding electrode, 1 charge approximately represents 1cm of the welding seam", "symbol": "i", @@ -72,8 +72,8 @@ "ascii_picture": "welding_wire_steel", "weight": "2777 mg", "volume": "130 ml", - "price": 1000, - "price_postapoc": 1800, + "price": "10 USD", + "price_postapoc": "18 USD", "material": [ "iron" ], "//": "360 charges = 1kg spool of welding wire, 1 charge approximately represents 1cm of thick welding seam", "symbol": "@", @@ -93,8 +93,8 @@ "ascii_picture": "welding_wire_alloy", "weight": "1429 mg", "volume": "250 ml", - "price": 1800, - "price_postapoc": 1440, + "price": "18 USD", + "price_postapoc": "14 USD 40 cent", "material": [ "aluminum" ], "//": "360 charges = 0.5kg spool of welding wire, 1 charge approximately represents 1cm of thick welding seam", "symbol": "@", @@ -114,8 +114,8 @@ "ascii_picture": "brazing_rod_bronze", "weight": "3200 mg", "volume": "16 ml", - "price": 200, - "price_postapoc": 100, + "price": "2 USD", + "price_postapoc": "1 USD", "material": [ "bronze" ], "//": "10 charges = 1 brazing rod, 1 charge approximately represents 1cm of thick brazing seam, since brazing should have lower joining strength - we use more material per 1cm of the seam", "symbol": "|", @@ -135,8 +135,8 @@ "ascii_picture": "brazing_rod_alloy", "weight": "1750 mg", "volume": "15 ml", - "price": 230, - "price_postapoc": 80, + "price": "2 USD 30 cent", + "price_postapoc": "80 cent", "material": [ "aluminum" ], "//": "10 charges = 1 brazing rod, 1 charge approximately represents 1cm of thick brazing seam, since brazing should have lower joining strength - we use more material per 1cm of the seam", "symbol": "|", diff --git a/data/json/items/appliances.json b/data/json/items/appliances.json index e7600fabd69cb..1ba4eec68aabe 100644 --- a/data/json/items/appliances.json +++ b/data/json/items/appliances.json @@ -174,8 +174,8 @@ "description": "An autoclave, used to sterilize equipment with pressurized steam. It requires a massive amount of power, so it will need to be plugged into a power grid.", "weight": "34500 g", "volume": "76 L", - "price": 162654, - "price_postapoc": 2000, + "price": "1 kUSD 626 USD 54 cent", + "price_postapoc": "20 USD", "to_hit": -6, "material": [ "steel" ], "symbol": "A", @@ -204,8 +204,8 @@ "material": [ "plastic", "steel" ], "volume": "400 ml", "longest_side": "20 cm", - "price": 9000, - "price_postapoc": 500, + "price": "90 USD", + "price_postapoc": "5 USD", "symbol": "L", "color": "white", "melee_damage": { "bash": 5 } @@ -220,8 +220,8 @@ "material": [ "plastic", "steel" ], "volume": "2 L", "longest_side": "170 cm", - "price": 9000, - "price_postapoc": 500, + "price": "90 USD", + "price_postapoc": "5 USD", "symbol": "L", "color": "white", "looks_like": "f_floor_lamp", @@ -237,8 +237,8 @@ "material": [ "plastic", "steel" ], "volume": "2 L", "longest_side": "170 cm", - "price": 90000, - "price_postapoc": 1500, + "price": "900 USD", + "price_postapoc": "15 USD", "symbol": "F", "color": "white", "melee_damage": { "bash": 5 } @@ -253,8 +253,8 @@ "material": [ "plastic", "steel" ], "volume": "2 L", "longest_side": "170 cm", - "price": 90000, - "price_postapoc": 1500, + "price": "900 USD", + "price_postapoc": "15 USD", "looks_like": "standing_floodlight", "symbol": "F", "color": "white", @@ -268,8 +268,8 @@ "weight": "1 g", "material": [ "plastic", "copper" ], "volume": "1 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "symbol": "~", "color": "white" }, @@ -284,8 +284,8 @@ "symbol": "]", "material": [ "steel", "plastic" ], "volume": "215 L", - "price": 105000, - "price_postapoc": 1400, + "price": "1 kUSD 50 USD", + "price_postapoc": "14 USD", "looks_like": "recharge_station", "flags": [ "NO_SALVAGE" ], "pocket_data": [ { "pocket_type": "CONTAINER", "rigid": true, "max_contains_volume": "200 L", "max_contains_weight": "400 kg" } ] @@ -301,8 +301,8 @@ "symbol": "]", "material": [ "wood", "plastic", "steel" ], "volume": "65 L", - "price": 5000, - "price_postapoc": 200, + "price": "50 USD", + "price_postapoc": "2 USD", "looks_like": "battery_charger", "flags": [ "NO_SALVAGE" ], "pocket_data": [ { "pocket_type": "CONTAINER", "rigid": true, "max_contains_volume": "50 L", "max_contains_weight": "100 kg" } ] @@ -322,8 +322,8 @@ "volume": "150 L", "longest_side": "80 cm", "//": "I don't know how much these were worth pre-Cataclysm but the pu-238 alone is worth about 5-6 million and hundreds of millions were spent on research. After the apocalypse these should basically be valuable beyond compare though.", - "price": 1000000000, - "price_postapoc": 12000, + "price": "10000 kUSD", + "price_postapoc": "120 USD", "symbol": "O", "color": "green_white", "flags": [ "NO_SALVAGE" ], @@ -370,8 +370,8 @@ "material": [ "plastic", "steel" ], "volume": "110 L", "longest_side": "70 cm", - "price": 200000, - "price_postapoc": 2000, + "price": "2 kUSD", + "price_postapoc": "20 USD", "symbol": "&", "color": "light_gray" }, @@ -385,8 +385,8 @@ "material": [ "steel" ], "volume": "150 L", "longest_side": "63 cm", - "price": 200000, - "price_postapoc": 2000, + "price": "2 kUSD", + "price_postapoc": "20 USD", "symbol": "&", "color": "light_gray" } diff --git a/data/json/items/armor/ammo_pouch.json b/data/json/items/armor/ammo_pouch.json index e1c72b8587aab..f8ffe8b58028b 100644 --- a/data/json/items/armor/ammo_pouch.json +++ b/data/json/items/armor/ammo_pouch.json @@ -6,8 +6,8 @@ "description": "A small pouch that can be used to store most types of small ammunition; rockets, however, will not fit. Use insert to store ammunition.", "weight": "490 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 1000, + "price": "10 USD", + "price_postapoc": "10 USD", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -81,8 +81,8 @@ "description": "A fabric ammo bag worn at the waist. It is capable of holding a single large magazine close at hand.", "weight": "180 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 2000, + "price": "20 USD", + "price_postapoc": "20 USD", "material": [ "canvas" ], "symbol": "[", "looks_like": "ragpouch", @@ -110,8 +110,8 @@ "description": "A fabric ammo pouch that can be strapped to your chest and hold a single magazine close at hand.", "weight": "140 g", "volume": "250 ml", - "price": 1250, - "price_postapoc": 2000, + "price": "12 USD 50 cent", + "price_postapoc": "20 USD", "material": [ "canvas" ], "symbol": "[", "looks_like": "ragpouch", @@ -154,8 +154,8 @@ ], "weight": "425 g", "volume": "500 ml", - "price": 3900, - "price_postapoc": 3000, + "price": "39 USD", + "price_postapoc": "30 USD", "material": [ "canvas" ], "symbol": "[", "looks_like": "tool_belt", @@ -226,8 +226,8 @@ "description": "An open medieval-looking bag, designed to store javelins within easy reach.", "weight": "900 g", "volume": "1250 ml", - "price": 6000, - "price_postapoc": 1000, + "price": "60 USD", + "price_postapoc": "10 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "quiver", @@ -296,8 +296,8 @@ "description": "A small fabric ammo pouch that can be strapped to your ankle and hold a single small magazine close at hand.", "volume": "250 ml", "weight": "60 g", - "price": 2000, - "price_postapoc": 750, + "price": "20 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "ragpouch", @@ -334,8 +334,8 @@ "description": "A fabric ammo pouch that can be strapped to your leg and hold two magazines close at hand.", "weight": "120 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 1000, + "price": "20 USD", + "price_postapoc": "10 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "ammo_satchel", @@ -380,8 +380,8 @@ "description": "A leather quiver worn at the waist that can hold 20 arrows or bolts. Use insert to store arrows or bolts.", "weight": "260 g", "volume": "500 ml", - "price": 6500, - "price_postapoc": 1000, + "price": "65 USD", + "price_postapoc": "10 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "bscabbard", @@ -407,8 +407,8 @@ "description": "A lighter and more durable quiver made of nylon, with straps to attach to a MOLLE system.", "weight": "230 g", "volume": "500 ml", - "price": 6500, - "price_postapoc": 1200, + "price": "65 USD", + "price_postapoc": "12 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "bscabbard", @@ -434,8 +434,8 @@ "description": "A quiver woven from strips of birch bark, worn at the waist, that can hold 20 arrows or bolts. Use insert to store arrows or bolts.", "weight": "490 g", "volume": "500 ml", - "price": 6500, - "price_postapoc": 750, + "price": "65 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "wood" ], "symbol": "[", "looks_like": "quiver", @@ -461,8 +461,8 @@ "description": "A makeshift quiver fashioned from a pipe, worn at the waist. Heavier and thinner than a typical quiver, it can only hold 10 arrows or bolts. Use insert to store arrows or bolts.", "weight": "800 g", "volume": "370 ml", - "price": 6500, - "price_postapoc": 500, + "price": "65 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "[", "looks_like": "quiver", @@ -488,8 +488,8 @@ "description": "A large leather quiver trimmed with metal, worn on the back, that can hold 60 arrows or bolts. Historically used by horse archers, rather than foot archers, but neither of THEM had to fight zombies. Use insert to store arrows or bolts.", "weight": "920 g", "volume": "1500 ml", - "price": 8800, - "price_postapoc": 1500, + "price": "88 USD", + "price_postapoc": "15 USD", "material": [ "leather", "steel" ], "symbol": "[", "looks_like": "quiver", @@ -507,8 +507,8 @@ "description": "A large quiver woven from strips of birchbark, worn on the back, that can hold 60 arrows or bolts. Use insert to store arrows or bolts.", "weight": "1380 g", "volume": "1500 ml", - "price": 8800, - "price_postapoc": 1250, + "price": "88 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "wood" ], "symbol": "[", "looks_like": "quiver_birchbark", @@ -526,8 +526,8 @@ "description": "A large makeshift quiver fashioned from 3 pipes, worn on the back. Heavier and thinner than a typical large quiver, it can only hold 30 arrows or bolts. Use insert to store arrows or bolts.", "weight": "2000 g", "volume": "810 ml", - "price": 8800, - "price_postapoc": 1000, + "price": "88 USD", + "price_postapoc": "10 USD", "material": [ "steel" ], "symbol": "[", "looks_like": "quiver", @@ -547,8 +547,8 @@ "description": "A large cotton quiver capable of easily storing 16 arrows. It includes a bag and straps to store a takedown bow, as well as a small pouch for archery accessories. Use insert to store arrows or bolts and activate to holster/draw your bow.", "weight": "720 g", "volume": "1500 ml", - "price": 8800, - "price_postapoc": 1500, + "price": "88 USD", + "price_postapoc": "15 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "quiver", @@ -595,8 +595,8 @@ "weight": "1750 g", "volume": "1250 ml", "looks_like": "vest", - "price": 7400, - "price_postapoc": 2000, + "price": "74 USD", + "price_postapoc": "20 USD", "material": [ "nylon" ], "symbol": "[", "color": "dark_gray", @@ -686,8 +686,8 @@ "weight": "500 g", "volume": "500 ml", "looks_like": "vest", - "price": 4700, - "price_postapoc": 2000, + "price": "47 USD", + "price_postapoc": "20 USD", "material": [ "nylon" ], "symbol": "[", "color": "dark_gray", @@ -712,8 +712,8 @@ "weight": "1250 g", "volume": "1000 ml", "looks_like": "vest", - "price": 7400, - "price_postapoc": 3000, + "price": "74 USD", + "price_postapoc": "30 USD", "material": [ "nylon" ], "symbol": "[", "color": "dark_gray", @@ -770,8 +770,8 @@ "weight": "2000 g", "volume": "1750 ml", "looks_like": "vest", - "price": 13000, - "price_postapoc": 4000, + "price": "130 USD", + "price_postapoc": "40 USD", "material": [ "nylon" ], "symbol": "[", "color": "dark_gray", @@ -873,8 +873,8 @@ "description": "A pouch designed to keep your radio accessible and secure. Has MOLLE straps for attaching to a belt or vest.", "weight": "200 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "holster", @@ -901,8 +901,8 @@ "description": "A pouch designed to keep gadgets and small items accessible and secure. Has MOLLE straps for attaching to a belt or vest.", "weight": "250 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "holster", @@ -929,8 +929,8 @@ "description": "A pouch designed to hold a water bottle with an additional front tactical pocket. Has MOLLE straps for attaching to a belt or vest.", "weight": "250 g", "volume": "400 ml", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "holster", @@ -964,8 +964,8 @@ "description": "A pouch designed to keep your canteen accessible and secure. Has MOLLE straps for attaching to a belt or vest.", "weight": "190 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "holster", @@ -993,8 +993,8 @@ "description": "A low profile pouch designed to keep your tools accessible and secure. Has MOLLE straps for attaching to a vest or can be strapped directly to your chest.", "weight": "250 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 400, + "price": "30 USD", + "price_postapoc": "4 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "holster", @@ -1021,8 +1021,8 @@ "description": "A tiny pouch designed to keep your flashlight accessible and secure. Has MOLLE straps for attaching to a belt or vest.", "weight": "100 g", "volume": "100 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "holster", @@ -1050,8 +1050,8 @@ "description": "A sturdy holster designed to be worn vertically, to keep a small profile on a tactical vest. This makes it a little more awkward to draw from than a normal holster.", "weight": "220 g", "volume": "500 ml", - "price": 9000, - "price_postapoc": 500, + "price": "90 USD", + "price_postapoc": "5 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "sheath", @@ -1089,8 +1089,8 @@ "description": "A large pouch capable of holding a gas mask and an additional filter, keeping both accessible and secure. Has MOLLE straps for attaching to a belt or vest.", "weight": "300 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 200, + "price": "20 USD", + "price_postapoc": "2 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "holster", @@ -1128,8 +1128,8 @@ "description": "A pouch designed to hold one military grenade, keeping it both accessible and secure. Has MOLLE straps for attaching to a belt or vest.", "weight": "200 g", "volume": "100 ml", - "price": 2000, - "price_postapoc": 200, + "price": "20 USD", + "price_postapoc": "2 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "holster", @@ -1156,8 +1156,8 @@ "description": "A collection of 6 pockets, 3 wide and 2 deep, designed to hold rifle magazines and keep them accessible and secure. Has MOLLE straps for attaching to a vest or can be strapped directly to your chest.", "weight": "500 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 200, + "price": "20 USD", + "price_postapoc": "2 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "holster", @@ -1230,8 +1230,8 @@ "description": "A pouch designed to hold shotgun shells or .308 rounds, keeping them accessible and secure. Has MOLLE straps for attaching to a belt or vest.", "weight": "300 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 200, + "price": "20 USD", + "price_postapoc": "2 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "holster", @@ -1249,7 +1249,7 @@ "description": "A massive handmade imitation of a proper ballistic vest for abnormally large folks. Large and heavy, but will still fit under an abnormally large coat.", "weight": "4210 g", "volume": "8 L", - "price_postapoc": 2500, + "price_postapoc": "25 USD", "to_hit": -3, "material": [ "kevlar_layered", "nylon" ], "symbol": "[", @@ -1292,8 +1292,8 @@ "description": "A sturdy leather ammo bag worn at the waist. It is capable of holding a single large magazine close at hand.", "weight": "590 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 2000, + "price": "20 USD", + "price_postapoc": "20 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "ragpouch", @@ -1321,8 +1321,8 @@ "description": "A leather ammo pouch that can be strapped to your chest and hold a single magazine close at hand.", "weight": "1140 g", "volume": "250 ml", - "price": 1250, - "price_postapoc": 2000, + "price": "12 USD 50 cent", + "price_postapoc": "20 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "ragpouch", @@ -1350,8 +1350,8 @@ "description": "A MOLLE-compatible loop for attaching small tools to a load-bearing vest.", "weight": "25 g", "volume": "25 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "nylon" ], "symbol": "[", @@ -1381,8 +1381,8 @@ "description": "A MOLLE-compatible loop for attaching tools and some weapons to a load-bearing vest.", "weight": "50 g", "volume": "50 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "nylon" ], "symbol": "[", @@ -1412,8 +1412,8 @@ "description": "A MOLLE-compatible loop for attaching large tools and weapons to a load-bearing vest.", "weight": "100 g", "volume": "100 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "nylon" ], "symbol": "[", diff --git a/data/json/items/armor/arms_armor.json b/data/json/items/armor/arms_armor.json index 83eaacc9e91cf..2c4f7784dd26b 100644 --- a/data/json/items/armor/arms_armor.json +++ b/data/json/items/armor/arms_armor.json @@ -7,8 +7,8 @@ "description": "A pair of improvised arm guards made from broken pieces of a plank that are tied to your arms with rags and string. They offer good protection, but are really uncomfortable to wear.", "weight": "300 g", "volume": "1500 ml", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "wood" ], "symbol": "[", @@ -40,8 +40,8 @@ "weight": "1360 g", "//": "The weight assumes four squares of carpet of about 25cm x 20cm.", "volume": "3 L", - "price": 20, - "price_postapoc": 10, + "price": "20 cent", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "plastic", "carpet_pilling" ], "symbol": "[", @@ -75,8 +75,8 @@ "weight": "680 g", "//": "The weight assumes two squares of carpet of about 25cm x 20cm.", "volume": "2 L", - "price": 10, - "price_postapoc": 5, + "price": "10 cent", + "price_postapoc": "5 cent", "to_hit": 1, "material": [ "plastic", "carpet_pilling" ], "symbol": "[", @@ -109,8 +109,8 @@ "description": "A pair of arm guards made from the exoskeletons of insects. Light and durable.", "weight": "392 g", "volume": "2500 ml", - "price": 20000, - "price_postapoc": 750, + "price": "200 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": 1, "material": [ "chitin" ], "symbol": "[", @@ -152,7 +152,7 @@ "id": "armguard_acidchitin", "copy-from": "armguard_chitin", "type": "ARMOR", - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", "name": { "str": "pair of biosilicified chitin arm guards", "str_pl": "pairs of biosilicified chitin arm guards" }, "description": "A pair of arm guards crafted from the carefully cleaned and pruned biosilicified exoskeletons of acidic ants. Acid-resistant but brittle.", "material": [ "acidchitin" ] @@ -181,7 +181,7 @@ "description": "The sleeves of a thick cotton shirt, with a bunch of cloth sewn in to act as extra padding. They're quite lonely, no longer being attached to each other by the rest of the shirt.", "weight": "400 g", "volume": "1500 ml", - "price_postapoc": 100, + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "cotton" ], "symbol": "[", @@ -212,8 +212,8 @@ "description": "A pair of neoprene arm sleeves covered with molded plastic sheaths.", "weight": "350 g", "volume": "3 L", - "price": 3500, - "price_postapoc": 1000, + "price": "35 USD", + "price_postapoc": "10 USD", "to_hit": 1, "material": [ "plastic", "neoprene" ], "symbol": "[", @@ -282,8 +282,8 @@ "description": "A pair of tough leather arm guards. Light and comfortable.", "weight": "730 g", "volume": "2 L", - "price": 4000, - "price_postapoc": 1000, + "price": "40 USD", + "price_postapoc": "10 USD", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -329,8 +329,8 @@ "description": "A full assembly of medieval arm protection. Rerebraces, couters, and vambraces, with leather straps to secure each piece and connect it as part of a set.", "weight": "2720 g", "volume": "5500 ml", - "price": 20000, - "price_postapoc": 12000, + "price": "200 USD", + "price_postapoc": "120 USD", "to_hit": -1, "material": [ "steel", "leather" ], "symbol": "[", @@ -377,8 +377,8 @@ "weight": "2300 g", "//": "The weight assumes four sheets of about 25cm x 20cm x 1.5mm.", "volume": "2750 ml", - "price": 30000, - "price_postapoc": 1000, + "price": "300 USD", + "price_postapoc": "10 USD", "to_hit": 1, "material": [ "lc_steel" ], "repairs_with": [ "steel" ], @@ -419,8 +419,8 @@ "weight": "1150 g", "//": "The weight assumes two sheets of about 25cm x 20cm x 1.5mm.", "volume": "1 L", - "price": 15000, - "price_postapoc": 500, + "price": "150 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "lc_steel" ], "repairs_with": [ "steel" ], @@ -461,8 +461,8 @@ "weight": "1400 g", "//": "The weight assumes four sheets of about 15cm x 15cm x 1.5mm.", "volume": "2 L", - "price": 500, - "price_postapoc": 400, + "price": "5 USD", + "price_postapoc": "4 USD", "to_hit": 1, "material": [ "lc_steel" ], "repairs_with": [ "steel" ], @@ -500,8 +500,8 @@ "weight": "700 g", "//": "The weight assumes two sheets of about 15cm x 15cm x 1.5mm.", "volume": "1 L", - "price": 500, - "price_postapoc": 400, + "price": "5 USD", + "price_postapoc": "4 USD", "to_hit": 1, "material": [ "lc_steel" ], "repairs_with": [ "steel" ], @@ -555,8 +555,8 @@ "description": "Arm guards made of stacked paper sheets held together with duct tape.", "weight": "360 g", "volume": "500 ml", - "price": 230, - "price_postapoc": 250, + "price": "2 USD 30 cent", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "paper" ], "symbol": "[", @@ -585,8 +585,8 @@ "description": "Arm guards made of thick chunks of tire held together with duct tape.", "weight": "2400 g", "volume": "2 L", - "price": 2300, - "price_postapoc": 250, + "price": "23 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "rubber" ], "symbol": "[", @@ -615,8 +615,8 @@ "description": "A pair of arm guards made from scraps of metal secured by simple strings.", "weight": "3064 g", "volume": "4750 ml", - "price": 20000, - "price_postapoc": 500, + "price": "200 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "budget_steel", "cotton" ], "symbol": "[", @@ -663,8 +663,8 @@ "description": "A pair of arm guards made from thick chunks of tire secured by simple strings; the loose collection of rubber plates provides decent but not the most convenient protection.", "weight": "4800 g", "volume": "4750 ml", - "price": 20000, - "price_postapoc": 500, + "price": "200 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "rubber" ], "symbol": "[", @@ -709,8 +709,8 @@ "description": "A pair of soft neoprene arm sleeves. Often used in contact sports.", "weight": "258 g", "volume": "1500 ml", - "price": 1200, - "price_postapoc": 500, + "price": "12 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "neoprene", "cotton" ], "symbol": "[", @@ -755,8 +755,8 @@ "description": "A pair of arm sleeves made from heavy quilted fabric.", "weight": "1380 g", "volume": "500 ml", - "price": 1200, - "price_postapoc": 400, + "price": "12 USD", + "price_postapoc": "4 USD", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -792,8 +792,8 @@ "description": "A pair arm sleeves made from aramid, with strips of soft body armor sewn on top to simulate quilting.", "weight": "986 g", "volume": "840 ml", - "price": 1200, - "price_postapoc": 400, + "price": "12 USD", + "price_postapoc": "4 USD", "to_hit": 1, "material": [ { "type": "kevlar_layered", "portion": 6 }, { "type": "kevlar", "portion": 4 } ], "symbol": "[", @@ -852,8 +852,8 @@ "weight": "2812 g", "volume": "750 ml", "longest_side": "9 cm", - "price": 7500, - "price_postapoc": 2500, + "price": "75 USD", + "price_postapoc": "25 USD", "to_hit": -1, "symbol": "[", "looks_like": "armguard_metal", @@ -1101,8 +1101,8 @@ "description": "A pair of elbow pads made of stout plastic and cloth.", "weight": "110 g", "volume": "750 ml", - "price": 3500, - "price_postapoc": 250, + "price": "35 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "plastic", "cotton" ], "symbol": "[", @@ -1130,8 +1130,8 @@ "description": "A pair of bronze arm guards with a simple leather lining.", "weight": "2270 g", "volume": "5250 ml", - "price": 40000, - "price_postapoc": 750, + "price": "400 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": 1, "material": [ "bronze", "leather" ], "symbol": "[", @@ -1176,8 +1176,8 @@ "description": "A pair of light leather arm guards, made for archery.", "weight": "362 g", "volume": "1 L", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -1224,7 +1224,7 @@ "description": "A long pair of cut-resistant Kevlar sleeves with thumbholes. Useful for chainsaw protection.", "weight": "450 g", "copy-from": "armguard_soft", - "price": 1200, + "price": "12 USD", "material": [ "kevlar" ] }, { @@ -1235,8 +1235,8 @@ "description": "A light armguard, 1.25 mm at the thickest. This one has been made with mild steel.", "weight": "2500 g", "volume": "2916 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "symbol": "[", "looks_like": "armguard_metal", @@ -1394,8 +1394,8 @@ "description": "An armguard, 1.75 mm at the thickest. This one has been made with mild steel.", "weight": "3333 g", "volume": "2916 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "symbol": "[", "looks_like": "armor_larmor", @@ -1553,8 +1553,8 @@ "description": "A heavy armguard, 2.25 mm at the thickest. This one has been made with mild steel.", "weight": "4166 g", "volume": "2916 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "symbol": "[", "looks_like": "armor_larmor", @@ -1707,7 +1707,7 @@ "description": "Armor made of combined pre-Cataclysm clothing. Sections from leather clothing are tightened and affixed to the sleeves of a thick cotton shirt, excluding the joints.", "weight": "500 g", "volume": "500 ml", - "price_postapoc": 1000, + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "cotton", "leather" ], "symbol": "[", @@ -1752,8 +1752,8 @@ "description": "Hard arm guards used by riot police.", "weight": "500 g", "volume": "2500 ml", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -3, "material": [ "thermo_resin", "plastic_pad" ], "symbol": "[", diff --git a/data/json/items/armor/ballistic_armor.json b/data/json/items/armor/ballistic_armor.json index 05d36c20667bd..3e07498fda8af 100644 --- a/data/json/items/armor/ballistic_armor.json +++ b/data/json/items/armor/ballistic_armor.json @@ -115,8 +115,8 @@ "//": "Based on the Med-Eng EOD 9 and EOD 10 suits.", "weight": "13500 g", "volume": "15 L", - "price": 1509000, - "price_postapoc": 18000, + "price": "15 kUSD 90 USD", + "price_postapoc": "180 USD", "warmth": 65, "material": [ "kevlar", "plastic_pad", "nomex" ], "symbol": "[", @@ -160,8 +160,8 @@ "description": "An armored jacket constructed from Kevlar, Nomex, and foam padding, for use by explosive ordnance disposal technicians in 'non-permissive environments'. It is lighter than normal EOD armor to allow for wearing a plate carrier beneath it. It features two pockets in the arms covering the deltoids for additional optional protection.", "weight": "7000 g", "volume": "15 L", - "price": 410160, - "price_postapoc": 5900, + "price": "4 kUSD 101 USD 60 cent", + "price_postapoc": "59 USD", "warmth": 40, "material": [ "kevlar", "plastic_pad", "nomex" ], "symbol": "[", @@ -220,8 +220,8 @@ "volume": "2950 ml", "longest_side": "46 cm", "//": "Based on the plate from the MED-ENG EOD 9N. People don't seem willing to buy the EOD 10 to shoot at and MED-ENG ain't telling us how not-bullet proof the suit is.", - "price": 361300, - "price_postapoc": 2000, + "price": "3 kUSD 613 USD", + "price_postapoc": "20 USD", "material": [ "kevlar", "plastic_pad", "thermo_resin", "qt_steel" ], "symbol": ",", "color": "dark_gray", @@ -466,8 +466,8 @@ "weight": "1551 g", "volume": "1599 ml", "longest_side": "21 cm", - "price": 94400, - "price_postapoc": 800, + "price": "944 USD", + "price_postapoc": "8 USD", "material": [ "thermo_resin" ], "symbol": ",", "color": "light_gray", @@ -609,8 +609,8 @@ "copy-from": "esapi_plate", "name": { "str": "compromised ceramic front plate" }, "description": "A large ballistic plate that has been cracked by damage. It no longer provides reliable protection, but it's still just as heavy.", - "price": 0, - "price_postapoc": 1, + "price": "0 cent", + "price_postapoc": "1 cent", "looks_like": "esapi_plate", "material": [ "damaged_ceramic" ] }, @@ -620,8 +620,8 @@ "copy-from": "esbi_plate", "name": { "str": "compromised ceramic side plate" }, "description": "A medium-sized ballistic plate that has been cracked by damage. It no longer provides reliable protection, but it's still just as heavy.", - "price": 0, - "price_postapoc": 1, + "price": "0 cent", + "price_postapoc": "1 cent", "looks_like": "esbi_plate", "material": [ "damaged_ceramic" ] }, @@ -1448,8 +1448,8 @@ "weight": "1034 g", "volume": "812 ml", "//": "Density test expects 1.275, so volume derived from this", - "price": 60000, - "price_postapoc": 100, + "price": "600 USD", + "price_postapoc": "1 USD", "symbol": ",", "material": [ "kevlar_layered", "nylon" ], "color": "dark_gray", @@ -1479,8 +1479,8 @@ "weight": "417 g", "volume": "392 ml", "//": "33cm x 22cm x 5.4mm", - "price": 60000, - "price_postapoc": 100, + "price": "600 USD", + "price_postapoc": "1 USD", "symbol": ",", "material": [ "kevlar_layered", "nylon" ], "color": "dark_gray", @@ -1508,8 +1508,8 @@ "description": "Front and back nylon collar assemblies with soft armor inserts for neck protection. Designed to be attached to heavy military body armor.", "weight": "621 g", "volume": "488 ml", - "price": 60000, - "price_postapoc": 100, + "price": "600 USD", + "price_postapoc": "1 USD", "symbol": ",", "material": [ "kevlar_layered", "nylon" ], "color": "dark_gray", diff --git a/data/json/items/armor/bandolier.json b/data/json/items/armor/bandolier.json index b68d71b505c6a..5577a38d10d38 100644 --- a/data/json/items/armor/bandolier.json +++ b/data/json/items/armor/bandolier.json @@ -6,8 +6,8 @@ "description": "An embroidered leather bandolier for keeping pistol cartridges close to hand. If this doesn't make you feel like a cowboy, nothing will.", "weight": "140 g", "volume": "250 ml", - "price": 1900, - "price_postapoc": 1500, + "price": "19 USD", + "price_postapoc": "15 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "leather_belt", @@ -50,8 +50,8 @@ "description": "A leather bandolier for keeping rifle cartridges close to hand.", "weight": "140 g", "volume": "250 ml", - "price": 1900, - "price_postapoc": 1500, + "price": "19 USD", + "price_postapoc": "15 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "leather_belt", @@ -95,8 +95,8 @@ "description": "A leather bandolier worn around the waist for keeping shotgun shells close to hand.", "weight": "140 g", "volume": "500 ml", - "price": 1900, - "price_postapoc": 1500, + "price": "19 USD", + "price_postapoc": "15 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "leather_belt", @@ -130,8 +130,8 @@ "description": "A leather bandolier strapped around the torso for keeping shotgun shells close to hand.", "weight": "200 g", "volume": "1 L", - "price": 3900, - "price_postapoc": 2500, + "price": "39 USD", + "price_postapoc": "25 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "leather_belt", @@ -154,8 +154,8 @@ "description": "A covered leather pouch, worn at the waist to store and protect prepared blackpowder cartridges.", "weight": "160 g", "volume": "500 ml", - "price": 4900, - "price_postapoc": 1000, + "price": "49 USD", + "price_postapoc": "10 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "ammo_pouch", @@ -178,8 +178,8 @@ "description": "A small fabric bandolier for rifle cartridges, designed to be worn around the wrist.", "weight": "30 g", "volume": "250 ml", - "price": 2900, - "price_postapoc": 500, + "price": "29 USD", + "price_postapoc": "5 USD", "material": [ "canvas" ], "symbol": "[", "looks_like": "leather_belt", @@ -223,8 +223,8 @@ "description": "A small pouch for storing cartridge grenades, with straps for attaching it to your belt or other webbing.", "weight": "90 g", "volume": "250 ml", - "price": 5900, - "price_postapoc": 750, + "price": "59 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "nylon", "plastic" ], "symbol": "[", "looks_like": "ammo_satchel", @@ -249,8 +249,8 @@ "description": "A medium-sized pouch for storing rocks, with straps for attaching it to your belt or other webbing.", "weight": "180 g", "volume": "500 ml", - "price": 5900, - "price_postapoc": 750, + "price": "59 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "cotton", "leather" ], "symbol": "[", "looks_like": "ammo_satchel", @@ -275,8 +275,8 @@ "description": "A medium-sized pouch for storing rocks, made of heavy leather, with straps for attaching it to your belt or other webbing.", "weight": "380 g", "volume": "500 ml", - "price": 5900, - "price_postapoc": 750, + "price": "59 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "ammo_satchel", @@ -301,8 +301,8 @@ "description": "A pouch for holding up to four full-sized grenades of various types, with straps for attaching it to your belt or other webbing.", "weight": "600 g", "volume": "1250 ml", - "price": 3000, - "price_postapoc": 1250, + "price": "30 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "leather_belt", @@ -353,8 +353,8 @@ "description": "A simple bag on a strap, partitioned into pouches for four STANAG 30-round magazines or twelve 10-round 5.56x45mm stripper clips. When full, this bandolier is more encumbering than proper kit and slower to reload from, but it at least offers a quick and cheap means of resupplying ammunition.", "weight": "60 g", "volume": "40 ml", - "price": 600, - "price_postapoc": 15, + "price": "6 USD", + "price_postapoc": "15 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -405,8 +405,8 @@ "description": "A large cotton pouch, designed to store a spare ammo belt for the M249 SAW.", "weight": "60 g", "volume": "40 ml", - "price": 600, - "price_postapoc": 15, + "price": "6 USD", + "price_postapoc": "15 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -431,8 +431,8 @@ "description": "A large cotton pouch, designed to store a spare ammo belt for the M240 or M60 machine guns.", "weight": "60 g", "volume": "40 ml", - "price": 600, - "price_postapoc": 15, + "price": "6 USD", + "price_postapoc": "15 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", diff --git a/data/json/items/armor/belts.json b/data/json/items/armor/belts.json index 562ba0d1eed0b..3d1e38f9655cc 100644 --- a/data/json/items/armor/belts.json +++ b/data/json/items/armor/belts.json @@ -6,8 +6,8 @@ "description": "A stout firefighter's belt. Useful for keeping your bunker gear up, it also doubles as an equipment belt with a reinforced loop for holding a large tool.", "weight": "210 g", "volume": "500 ml", - "price": 9000, - "price_postapoc": 750, + "price": "90 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "leather", "steel" ], "symbol": "[", "looks_like": "holster", @@ -71,8 +71,8 @@ "description": "This is a template for judo belts. If found in a game, it is a bug.", "weight": "200 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 25, + "price": "10 USD", + "price_postapoc": "25 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -143,8 +143,8 @@ "description": "A leather belt. Designed to look good and hold up a pair of pants, but you should be able to attach a small tool or weapon to one of the belt loops.", "weight": "150 g", "volume": "350 ml", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "repairs_like": "leather", "material": [ { "type": "leather", "portion": 75 }, { "type": "steel", "portion": 25 } ], "symbol": "[", @@ -234,8 +234,8 @@ "description": "A broad, black obi gi.", "weight": "200 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -248,8 +248,8 @@ "description": "A black leather belt used by police officers. It has several pouches and a holder for a baton.", "weight": "250 g", "volume": "2 L", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "leather", "steel" ], "symbol": "[", "looks_like": "fireman_belt", @@ -323,8 +323,8 @@ "description": "A broad, buckled leather belt, commonly used by bearded men on Christmas. Usually worn over a red jacket.", "weight": "150 g", "volume": "350 ml", - "price": 9000, - "price_postapoc": 250, + "price": "90 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "leather", "steel" ], "symbol": "[", "looks_like": "leather_belt", @@ -353,8 +353,8 @@ "description": "A common belt with pockets, loops and sheaths to store up to seven tools or blades. Widely used by handymen and electricians.", "weight": "1000 g", "volume": "2500 ml", - "price": 4500, - "price_postapoc": 1500, + "price": "45 USD", + "price_postapoc": "15 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "holster", @@ -447,8 +447,8 @@ "description": "A 2-inch nylon webbing belt commonly used by military forces. MOLLE-compatible pouches can be attached to the webbing for extra storage.", "weight": "210 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 300, + "price": "10 USD", + "price_postapoc": "3 USD", "material": [ "nylon", "steel" ], "symbol": "[", "looks_like": "leather_belt", @@ -528,8 +528,8 @@ "description": "A pair of black suspenders, which reach over the wearer's shoulders and hook to their waist. Gives a wonderful western feel!", "weight": "250 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 25, + "price": "10 USD", + "price_postapoc": "25 cent", "material": [ "cotton", "steel" ], "repairs_like": "scarf", "symbol": "#", diff --git a/data/json/items/armor/bespoke_armor/custom_bodysuits.json b/data/json/items/armor/bespoke_armor/custom_bodysuits.json index 40cd930e9f122..323cf1886bf8a 100644 --- a/data/json/items/armor/bespoke_armor/custom_bodysuits.json +++ b/data/json/items/armor/bespoke_armor/custom_bodysuits.json @@ -6,7 +6,7 @@ "description": "A reinforced but airy jumpsuit designed to survive the long-term wear and tear of exploring the apocalyptic wasteland. Rather than advanced polymer fabrics which may not be available in many worlds, it is made of breathable twill fabric with leather reinforcements ensuring it can be produced easily regardless of technology level. Its clever construction adds additional core support, helping you to carry more equipment.", "weight": "3600 g", "volume": "3500 ml", - "price_postapoc": 1750, + "price_postapoc": "17 USD 50 cent", "to_hit": -3, "material": [ "denim", "leather" ], "symbol": "[", @@ -38,8 +38,8 @@ "description": "A reinforced but airy jumpsuit designed to survive the long-term wear and tear of exploring the apocalyptic wasteland. Rather than advanced polymer fabrics which may not be available in many worlds, it is made of breathable twill fabric with leather reinforcements ensuring it can be produced easily regardless of technology level. Its clever construction adds additional core support, helping you to carry more equipment. A set of cooling tubes run throughout the clothing as well.", "weight": "4000 g", "volume": "3500 ml", - "price": 35000, - "price_postapoc": 1750, + "price": "350 USD", + "price_postapoc": "17 USD 50 cent", "to_hit": -3, "material": [ "denim", "leather" ], "symbol": "[", @@ -116,7 +116,7 @@ "name": { "str": "light nomad jumpsuit" }, "description": "A light, airy jumpsuit designed to survive the long-term wear and tear of exploring the apocalyptic wasteland. Rather than advanced polymer fabrics which may not be available in many worlds, it is made of breathable twill fabric with leather reinforcements ensuring it can be produced easily regardless of technology level. Its clever construction adds additional core support, helping you to carry more equipment.", "copy-from": "armor_nomad", - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", "material": [ "denim", "leather" ], "color": "light_gray", "armor": [ @@ -145,8 +145,8 @@ "description": "A lightweight, hand-built combination armor made of Kevlar with a moisture-wicking core and additional padding in many places. Protects from the elements as well as from harm.", "weight": "5200 g", "volume": "10500 ml", - "price": 110000, - "price_postapoc": 5000, + "price": "1 kUSD 100 USD", + "price_postapoc": "50 USD", "material": [ "kevlar", "lycra", "nylon" ], "to_hit": -3, "symbol": "[", @@ -212,8 +212,8 @@ "description": "A hand-built combination armor made of thick Kevlar with a moisture-wicking core and substantial padding in many places. Protects from the elements as well as from harm.", "weight": "7500 g", "volume": "11500 ml", - "price": 150000, - "price_postapoc": 5000, + "price": "1 kUSD 500 USD", + "price_postapoc": "50 USD", "material": [ "kevlar", "lycra", "nylon" ], "to_hit": -3, "symbol": "[", @@ -281,8 +281,8 @@ "description": "A hand-built combination armor made of thick Kevlar with a moisture-wicking core and thin steel plating in many places. Protects from the elements as well as from harm.", "weight": "9500 g", "volume": "12 L", - "price": 200000, - "price_postapoc": 7000, + "price": "2 kUSD", + "price_postapoc": "70 USD", "to_hit": -3, "material": [ "kevlar", "qt_steel", "lycra", "nylon" ], "symbol": "[", @@ -335,8 +335,8 @@ "description": "A warm and heavy hand-built combination armor made from a moisture-wicking core padded with layers of Kevlar and fur. Protects from the elements as well as from harm.", "weight": "8400 g", "volume": "14 L", - "price": 200000, - "price_postapoc": 5000, + "price": "2 kUSD", + "price_postapoc": "50 USD", "to_hit": -3, "material": [ "kevlar", "fur", "lycra" ], "symbol": "[", @@ -426,7 +426,7 @@ "description": "A hand-built combination armor made from a wetsuit padded with layers of Kevlar. Protects from the elements as well as from harm.", "weight": "8450 g", "volume": "9200 ml", - "price_postapoc": 5000, + "price_postapoc": "50 USD", "material": [ "neoprene", "kevlar" ], "symbol": "[", "to_hit": -3, @@ -512,7 +512,7 @@ "description": "A hand-built light combination armor made from an expanded and lightened wetsuit padded with layers of Kevlar. Protects from the elements as well as from harm.", "weight": "6400 g", "volume": "7000 ml", - "price_postapoc": 5000, + "price_postapoc": "50 USD", "material": [ "neoprene", "kevlar" ], "symbol": "[", "to_hit": -3, @@ -598,7 +598,7 @@ "description": "A hand-built combination armor made from a thick wetsuit padded with layers of Kevlar. While uncomfortably warm and hard to move in it provides substantial protection from harm and from the elements.", "weight": "14905 g", "volume": "15000 ml", - "price_postapoc": 5000, + "price_postapoc": "50 USD", "material": [ "neoprene", "nylon", "kevlar" ], "symbol": "[", "to_hit": -3, @@ -684,8 +684,8 @@ "description": "A heavy, hand-built combination armor made from flame-resistant Nomex padded with layers of Kevlar. Protects from fire as well as from harm.", "weight": "6800 g", "volume": "11500 ml", - "price": 200000, - "price_postapoc": 5000, + "price": "2 kUSD", + "price_postapoc": "50 USD", "to_hit": -3, "material": [ "nomex", "kevlar" ], "symbol": "[", diff --git a/data/json/items/armor/bespoke_armor/custom_boots.json b/data/json/items/armor/bespoke_armor/custom_boots.json index 7ba075a94a209..6db35a20f137f 100644 --- a/data/json/items/armor/bespoke_armor/custom_boots.json +++ b/data/json/items/armor/bespoke_armor/custom_boots.json @@ -7,8 +7,8 @@ "description": "A pair of custom-made Kevlar-armored boots with a chemical-resistant layer and rubber toes. Will keep you highly mobile without the worry of zombie acid dissolving your feet.", "weight": "1120 g", "volume": "2 L", - "price": 24000, - "price_postapoc": 5000, + "price": "240 USD", + "price_postapoc": "50 USD", "to_hit": -1, "material": [ "kevlar", "nomex", "leather" ], "symbol": "[", @@ -78,8 +78,8 @@ "description": "A pair of custom-made boots constructed of thick Kevlar and a chemical resistant layer, featuring steel toes for extra protection. Keeps your feet safe from the myriad dangers of the apocalypse.", "weight": "1330 g", "volume": "2500 ml", - "price": 24000, - "price_postapoc": 6000, + "price": "240 USD", + "price_postapoc": "60 USD", "to_hit": -1, "material": [ "kevlar", "nomex", "leather", "steel" ], "symbol": "[", @@ -214,8 +214,8 @@ "description": "A pair of customized, Kevlar-armored boots with a chemical-resistant layer and steel toes. Warm thanks to the real fur lining, and quite protective due to the thick materials, though perhaps a little hard to move in.", "weight": "1760 g", "volume": "3500 ml", - "price": 24000, - "price_postapoc": 6000, + "price": "240 USD", + "price_postapoc": "60 USD", "to_hit": -1, "material": [ "kevlar", "leather", "nomex", "fur", "steel" ], "symbol": "[", @@ -288,8 +288,8 @@ "description": "A pair of customized, Kevlar-armored neoprene boots. These will keep you dry and alive, come hell or high water.", "weight": "1180 g", "volume": "1500 ml", - "price": 24000, - "price_postapoc": 6000, + "price": "240 USD", + "price_postapoc": "60 USD", "to_hit": -1, "material": [ "kevlar", "neoprene", "rubber", "nylon" ], "symbol": "[", @@ -369,8 +369,8 @@ "//": "Survivor took the booties, expanded them, decreased the thickness and thickened the sole, then added some light Kevlar armor.", "weight": "900 g", "volume": "1200 ml", - "price": 24000, - "price_postapoc": 6000, + "price": "240 USD", + "price_postapoc": "60 USD", "to_hit": -1, "material": [ "kevlar", "neoprene", "rubber", "nylon" ], "symbol": "[", @@ -449,8 +449,8 @@ "description": "A pair of customized, Kevlar-armored thick neoprene boots. These will keep you dry and alive, come hell or high water.", "weight": "1180 g", "volume": "1500 ml", - "price": 24000, - "price_postapoc": 6000, + "price": "240 USD", + "price_postapoc": "60 USD", "to_hit": -1, "material": [ "kevlar", "neoprene", "rubber", "nylon" ], "symbol": "[", @@ -528,8 +528,8 @@ "description": "A pair of rubber flippers worn on the feet, which improve swimming speed while greatly impeding the wearer's ability to walk. This pair was reduced in volume and weight and has to be attached to diving boots with necessary attachment points.", "weight": "420 g", "volume": "850 ml", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "rubber" ], "symbol": "[", "looks_like": "swim_fins", diff --git a/data/json/items/armor/bespoke_armor/custom_gloves.json b/data/json/items/armor/bespoke_armor/custom_gloves.json index e2b6edcfdce1e..38e5df48118fd 100644 --- a/data/json/items/armor/bespoke_armor/custom_gloves.json +++ b/data/json/items/armor/bespoke_armor/custom_gloves.json @@ -7,8 +7,8 @@ "description": "A pair of customized, Kevlar-armored cloth gloves. These are designed for comfort first.", "weight": "190 g", "volume": "750 ml", - "price": 18000, - "price_postapoc": 2000, + "price": "180 USD", + "price_postapoc": "20 USD", "to_hit": 2, "material": [ "kevlar", "cotton" ], "symbol": "[", @@ -45,8 +45,8 @@ "description": "A pair of customized, Kevlar-armored cloth gloves without fingers. These are designed for comfort first.", "weight": "160 g", "volume": "700 ml", - "price": 16000, - "price_postapoc": 2000, + "price": "160 USD", + "price_postapoc": "20 USD", "to_hit": 2, "material": [ "kevlar", "cotton" ], "symbol": "[", @@ -95,8 +95,8 @@ "description": "A pair of customized, Kevlar-armored leather gloves without fingers. These strike a balance between comfort and protection.", "weight": "200 g", "volume": "700 ml", - "price": 16000, - "price_postapoc": 2000, + "price": "160 USD", + "price_postapoc": "20 USD", "to_hit": 2, "material": [ "kevlar", "leather" ], "symbol": "[", @@ -144,8 +144,8 @@ "description": "A pair of customized, Kevlar-armored leather gloves. These strike a balance between comfort and protection.", "weight": "230 g", "volume": "750 ml", - "price": 18000, - "price_postapoc": 2000, + "price": "180 USD", + "price_postapoc": "20 USD", "to_hit": 2, "material": [ "kevlar", "leather" ], "symbol": "[", @@ -181,8 +181,8 @@ "description": "A pair of customized, Kevlar-armored gloves. These are lined with real fur.", "weight": "300 g", "volume": "1250 ml", - "price": 18000, - "price_postapoc": 2500, + "price": "180 USD", + "price_postapoc": "25 USD", "to_hit": 2, "material": [ "kevlar", "fur" ], "symbol": "[", @@ -246,8 +246,8 @@ "description": "A pair of customized, Kevlar-armored neoprene gloves, modified to be easy to wear while providing maximum protection under extreme conditions.", "weight": "390 g", "volume": "750 ml", - "price": 18000, - "price_postapoc": 2000, + "price": "180 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "kevlar", "neoprene", "nylon" ], "symbol": "[", @@ -294,8 +294,8 @@ "//": "Cut down in thickness yet expanded in size wetsuit gloves, armored with Kevlar.", "weight": "390 g", "volume": "750 ml", - "price": 18000, - "price_postapoc": 2000, + "price": "180 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "kevlar", "neoprene", "nylon" ], "symbol": "[", @@ -341,8 +341,8 @@ "description": "A pair of customized, Kevlar-armored neoprene gloves, modified to provide maximum protection under extreme conditions.", "weight": "390 g", "volume": "750 ml", - "price": 18000, - "price_postapoc": 2000, + "price": "180 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "kevlar", "neoprene", "nylon" ], "symbol": "[", diff --git a/data/json/items/armor/bespoke_armor/custom_headgear.json b/data/json/items/armor/bespoke_armor/custom_headgear.json index bce98866a8e1c..a164d5427532a 100644 --- a/data/json/items/armor/bespoke_armor/custom_headgear.json +++ b/data/json/items/armor/bespoke_armor/custom_headgear.json @@ -6,7 +6,7 @@ "description": "A cowl with protection for the eyes from rain and sun, designed for long travels. The design includes some clever shaping that allows it to offer a lot of coverage without interfering too much with vision and breathing.", "weight": "470 g", "volume": "2500 ml", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "denim", "leather", "plastic" ], "symbol": "[", @@ -72,8 +72,8 @@ "description": "A customized armored leather and Kevlar hood, designed to balance comfort and protection.", "weight": "820 g", "volume": "2 L", - "price": 58000, - "price_postapoc": 4000, + "price": "580 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "kevlar_layered", "leather" ], "symbol": "[", @@ -95,8 +95,8 @@ "description": "A customized armored Kevlar hood. Warm thanks to the real fur lining.", "weight": "870 g", "volume": "1500 ml", - "price": 58000, - "price_postapoc": 3500, + "price": "580 USD", + "price_postapoc": "35 USD", "to_hit": -1, "material": [ "kevlar_layered", "fur" ], "symbol": "[", @@ -149,8 +149,8 @@ "description": "A customized armored cloth and Kevlar hood, light yet durable.", "weight": "628 g", "volume": "750 ml", - "price": 58000, - "price_postapoc": 3000, + "price": "580 USD", + "price_postapoc": "30 USD", "to_hit": -1, "material": [ "kevlar_layered", "cotton" ], "symbol": "[", @@ -219,8 +219,8 @@ "//": "When/if new head clothing layering system will be implemented, move this to normal and skintight layers.", "weight": "860 g", "volume": "1500 ml", - "price": 58000, - "price_postapoc": 1500, + "price": "580 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "kevlar", "neoprene", "nylon" ], "symbol": "[", @@ -298,8 +298,8 @@ "//2": "Basically a reduced in weight and thickness wetsuit hood with a layer of Kevlar attached.", "weight": "860 g", "volume": "1500 ml", - "price": 58000, - "price_postapoc": 1500, + "price": "580 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "kevlar", "neoprene", "nylon" ], "symbol": "[", @@ -376,8 +376,8 @@ "//": "When/if new head clothing layering system will be implemented, move this to skintight and normal layers.", "weight": "860 g", "volume": "1500 ml", - "price": 58000, - "price_postapoc": 1500, + "price": "580 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "kevlar", "neoprene", "nylon" ], "symbol": "[", @@ -452,8 +452,8 @@ "description": "A sturdy protective cowl extending down to the neck, fitted with a respirator and eye protection. For dangerous scavenging ventures.", "weight": "695 g", "volume": "2500 ml", - "price": 55000, - "price_postapoc": 3500, + "price": "550 USD", + "price_postapoc": "35 USD", "to_hit": -3, "material": [ "kevlar_layered", "cotton" ], "symbol": "[", diff --git a/data/json/items/armor/bespoke_armor/custom_legs.json b/data/json/items/armor/bespoke_armor/custom_legs.json index af6a98e7f1e6d..b06e82dda9a7d 100644 --- a/data/json/items/armor/bespoke_armor/custom_legs.json +++ b/data/json/items/armor/bespoke_armor/custom_legs.json @@ -7,8 +7,8 @@ "description": "Lightweight, Kevlar armored cargo pants designed to hold as much as possible. Strong and mostly waterproof.", "weight": "920 g", "volume": "3500 ml", - "price": 40000, - "price_postapoc": 1500, + "price": "400 USD", + "price_postapoc": "15 USD", "material": [ "kevlar", "cotton" ], "symbol": "[", "looks_like": "pants_survivor", @@ -87,8 +87,8 @@ "description": "A pair of Kevlar armored pants covered with pouches and pockets. Custom-built to be durable, comfortable, and easy to wear.", "weight": "2100 g", "volume": "3 L", - "price": 38000, - "price_postapoc": 2000, + "price": "380 USD", + "price_postapoc": "20 USD", "material": [ "cotton", "kevlar" ], "symbol": "[", "looks_like": "pants_army", @@ -182,8 +182,8 @@ "//": "weight is currently an estimation could be better", "weight": "3000 g", "volume": "7500 ml", - "price": 180000, - "price_postapoc": 2000, + "price": "1 kUSD 800 USD", + "price_postapoc": "20 USD", "to_hit": -3, "material": [ "kevlar_layered", "canvas" ], "symbol": "[", diff --git a/data/json/items/armor/bespoke_armor/custom_overcoats.json b/data/json/items/armor/bespoke_armor/custom_overcoats.json index e05842fa00b9e..6b943381df2d0 100644 --- a/data/json/items/armor/bespoke_armor/custom_overcoats.json +++ b/data/json/items/armor/bespoke_armor/custom_overcoats.json @@ -7,8 +7,8 @@ "description": "A Kevlar armored custom full-length duster, covered with pouches and pockets. Comfortable, durable, and great for storage.", "weight": "2592 g", "volume": "9500 ml", - "price": 40000, - "price_postapoc": 8000, + "price": "400 USD", + "price_postapoc": "80 USD", "to_hit": -1, "material": [ "canvas", "kevlar" ], "symbol": "[", @@ -100,8 +100,8 @@ "description": "A custom Kevlar armored full-length duster without sleeves, covered with pouches and pockets. Comfortable, durable, and great for storage.", "weight": "2203 g", "volume": "8 L", - "price": 34000, - "price_postapoc": 4500, + "price": "340 USD", + "price_postapoc": "45 USD", "to_hit": -1, "material": [ "canvas", "kevlar" ], "symbol": "[", @@ -139,8 +139,8 @@ "//": "weight is currently an estimation could be better", "weight": "5500 g", "volume": "7500 ml", - "price": 180000, - "price_postapoc": 2000, + "price": "1 kUSD 800 USD", + "price_postapoc": "20 USD", "to_hit": -3, "material": [ "kevlar_layered", "nylon" ], "symbol": "[", @@ -232,8 +232,8 @@ "description": "A Kevlar armored custom trenchcoat, covered with pouches and pockets. Comfortable, durable, and great for storage.", "weight": "1920 g", "volume": "7 L", - "price": 40000, - "price_postapoc": 8000, + "price": "400 USD", + "price_postapoc": "80 USD", "to_hit": -1, "material": [ "canvas", "kevlar" ], "symbol": "[", @@ -315,8 +315,8 @@ "description": "A custom Kevlar armored trenchcoat without sleeves, covered with pouches and pockets. Comfortable, durable, and great for storage.", "weight": "1632 g", "volume": "6 L", - "price": 34000, - "price_postapoc": 500, + "price": "340 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "canvas", "kevlar" ], "symbol": "[", diff --git a/data/json/items/armor/bespoke_armor/custom_storage.json b/data/json/items/armor/bespoke_armor/custom_storage.json index 079207da67553..f9a15137925a0 100644 --- a/data/json/items/armor/bespoke_armor/custom_storage.json +++ b/data/json/items/armor/bespoke_armor/custom_storage.json @@ -6,8 +6,8 @@ "description": "A custom-built heavy duffel bag. Durable and carefully crafted to hold as much stuff as possible.", "weight": "1000 g", "volume": "7875 ml", - "price": 24000, - "price_postapoc": 3250, + "price": "240 USD", + "price_postapoc": "32 USD 50 cent", "material": [ "leather", "canvas" ], "symbol": "[", "looks_like": "duffelbag", @@ -76,8 +76,8 @@ "description": "A modified large watertight duffel bag. Durable and carefully crafted to hold as much stuff as possible. Capable of floating. Provides plenty of storage, but is severely encumbering.", "weight": "1400 g", "volume": "10800 ml", - "price": 30000, - "price_postapoc": 3500, + "price": "300 USD", + "price_postapoc": "35 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "duffelbag", @@ -155,8 +155,8 @@ "description": "A custom-built backpack. Durable and carefully crafted to hold as much stuff as possible.", "weight": "600 g", "volume": "5250 ml", - "price": 24000, - "price_postapoc": 2250, + "price": "240 USD", + "price_postapoc": "22 USD 50 cent", "material": [ "leather", "canvas" ], "symbol": "[", "looks_like": "backpack", @@ -239,8 +239,8 @@ "description": "A custom-built heavy backpack. Durable and carefully crafted to hold as much stuff as possible.", "weight": "800 g", "volume": "10 L", - "price": 24000, - "price_postapoc": 3000, + "price": "240 USD", + "price_postapoc": "30 USD", "material": [ "leather", "canvas" ], "symbol": "[", "looks_like": "rucksack", @@ -340,8 +340,8 @@ "description": "A custom-built lightweight runner pack. Durable and carefully crafted to hold as much stuff as possible.", "weight": "440 g", "volume": "4200 ml", - "price": 24000, - "price_postapoc": 2500, + "price": "240 USD", + "price_postapoc": "25 USD", "material": [ "leather", "canvas" ], "symbol": "[", "looks_like": "backpack", @@ -369,8 +369,8 @@ "description": "A modified lightweight watertight backpack. Durable and carefully crafted to hold as much stuff as possible.", "weight": "620 g", "volume": "1850 ml", - "price": 30000, - "price_postapoc": 1500, + "price": "300 USD", + "price_postapoc": "15 USD", "material": [ "nylon", "plastic" ], "symbol": "[", "looks_like": "dry_bag", @@ -464,8 +464,8 @@ "description": "A custom-built lightweight set of weight distributing pouches on the thighs and stomach. This configuration is designed to be worn with a military harness or tactical vest.", "weight": "440 g", "volume": "3000 ml", - "price": 24000, - "price_postapoc": 2500, + "price": "240 USD", + "price_postapoc": "25 USD", "material": [ "nylon", "leather" ], "symbol": "[", "looks_like": "legrig", @@ -522,8 +522,8 @@ "description": "A custom-built lightweight set of weight distributing pouches over your entire body. Its cunningly placed and stabilized pockets can store a remarkable amount of useful stuff without getting in the way or sacrificing balance. Has a flashlight mounted on the shoulder and an internal reservoir for water purification in the field, both exclusively powered by your internal bionic energy.", "weight": "440 g", "volume": "3000 ml", - "price": 24000, - "price_postapoc": 2500, + "price": "240 USD", + "price_postapoc": "25 USD", "material": [ "denim", "leather" ], "symbol": "[", "looks_like": "legrig", diff --git a/data/json/items/armor/bespoke_armor/custom_underwear.json b/data/json/items/armor/bespoke_armor/custom_underwear.json index 15dfcfdc2adfe..a3f05cb4a1071 100644 --- a/data/json/items/armor/bespoke_armor/custom_underwear.json +++ b/data/json/items/armor/bespoke_armor/custom_underwear.json @@ -6,8 +6,8 @@ "description": "A simple, thin, skintight layer of breathable fabric that protects your skin. It has integrated feet and precisely placed rubberized pads to protect critical points from impact and abrasion.", "weight": "125 g", "volume": "1 L", - "price": 2500, - "price_postapoc": 400, + "price": "25 USD", + "price_postapoc": "4 USD", "material": [ "lycra", "rubber" ], "symbol": "[", "looks_like": "union_suit", diff --git a/data/json/items/armor/bespoke_armor/cuttingroom.json b/data/json/items/armor/bespoke_armor/cuttingroom.json index 1640f524db067..6dc4a132bc682 100644 --- a/data/json/items/armor/bespoke_armor/cuttingroom.json +++ b/data/json/items/armor/bespoke_armor/cuttingroom.json @@ -7,8 +7,8 @@ "description": "A pair of customized, Kevlar-armored Nomex boots. These will keep you alive, even when knee-deep in the flames.", "weight": "1980 g", "volume": "3 L", - "price": 24000, - "price_postapoc": 6000, + "price": "240 USD", + "price_postapoc": "60 USD", "to_hit": -1, "material": [ "kevlar", "nomex" ], "symbol": "[", @@ -45,8 +45,8 @@ "description": "A pair of customized Kevlar boots that are heavily armored with steel. Favoring protection over comfort, these will keep you alive, especially when knee-deep in the dead.", "weight": "2254 g", "volume": "3 L", - "price": 24000, - "price_postapoc": 8000, + "price": "240 USD", + "price_postapoc": "80 USD", "to_hit": -1, "material": [ "kevlar", "steel" ], "symbol": "[", @@ -83,8 +83,8 @@ "description": "A pair of customized, steel-backed Kevlar gloves. These are designed for protection first.", "weight": "1344 g", "volume": "1 L", - "price": 18000, - "price_postapoc": 3000, + "price": "180 USD", + "price_postapoc": "30 USD", "to_hit": 2, "material": [ "kevlar_layered", "steel" ], "symbol": "[", @@ -120,8 +120,8 @@ "description": "A pair of customized, Kevlar-armored Nomex gloves. These are a post-apocalyptic extension of what firefighters wore pre-Cataclysm.", "weight": "410 g", "volume": "1 L", - "price": 18000, - "price_postapoc": 2500, + "price": "180 USD", + "price_postapoc": "25 USD", "to_hit": 2, "material": [ "kevlar_layered", "nomex" ], "symbol": "[", @@ -157,8 +157,8 @@ "description": "A customized armored Nomex and Kevlar hood, strong and durable.", "weight": "1220 g", "volume": "1500 ml", - "price": 58000, - "price_postapoc": 4000, + "price": "580 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "kevlar_layered", "nomex" ], "symbol": "[", @@ -195,8 +195,8 @@ "description": "Heavy, hand-built combination armor made from a cut-down bulletproof vest and a reinforced flame-resistant Nomex jumpsuit. Protects the wearer from fire and the elements.", "weight": "6800 g", "volume": "11500 ml", - "price": 200000, - "price_postapoc": 5000, + "price": "2 kUSD", + "price_postapoc": "50 USD", "to_hit": -3, "material": [ "kevlar_layered", "nomex" ], "symbol": "[", @@ -246,8 +246,8 @@ "description": "A heavy, hand-built combination armor made from a reinforced bulletproof vest and a metal-plated leather jumpsuit. Protects from the elements as well as from harm.", "weight": "15500 g", "volume": "12 L", - "price": 200000, - "price_postapoc": 7000, + "price": "2 kUSD", + "price_postapoc": "70 USD", "to_hit": -3, "material": [ "kevlar_layered", "steel", "leather" ], "symbol": "[", @@ -294,8 +294,8 @@ "description": "Custom-made armor that combines a level II vest with a combat shirt and adds extra padding to the arms for safety. Fairly lightweight and ergonomic and has numerous pockets for storage.", "weight": "3000 g", "volume": "6 L", - "price": 60000, - "price_postapoc": 4000, + "price": "600 USD", + "price_postapoc": "40 USD", "material": [ "kevlar_layered", "kevlar", "nylon" ], "symbol": "[", "looks_like": "combat_shirt", @@ -401,8 +401,8 @@ "description": "A lightweight, hand-built combination armor made from a cut-down bulletproof vest and a reinforced fabric jumpsuit. Protects from the elements as well as from harm.", "weight": "5100 g", "volume": "10500 ml", - "price": 110000, - "price_postapoc": 5000, + "price": "1 kUSD 100 USD", + "price_postapoc": "50 USD", "material": [ "kevlar_layered", "cotton" ], "symbol": "[", "looks_like": "survivor_suit", @@ -439,8 +439,8 @@ "description": "A hand-built combination armor made from a bulletproof vest and a reinforced leather jumpsuit. Protects from the elements as well as from harm.", "weight": "6800 g", "volume": "11500 ml", - "price": 150000, - "price_postapoc": 5000, + "price": "1 kUSD 500 USD", + "price_postapoc": "50 USD", "material": [ "kevlar_layered", "leather" ], "symbol": "[", "looks_like": "touring_suit", @@ -470,8 +470,8 @@ "description": "A massive hand-built combination armor made from a bulletproof vest and a reinforced leather jumpsuit. Protects from the elements as well as from harm.", "weight": "12400 g", "volume": "18 L", - "price": 150000, - "price_postapoc": 4000, + "price": "1 kUSD 500 USD", + "price_postapoc": "40 USD", "to_hit": -3, "material": [ "kevlar_layered", "leather" ], "symbol": "[", @@ -505,8 +505,8 @@ "description": "A warm and heavy hand-built combination armor made from a reinforced bulletproof vest and an insulated leather jumpsuit. Protects from the elements as well as from harm.", "weight": "7800 g", "volume": "14 L", - "price": 200000, - "price_postapoc": 5000, + "price": "2 kUSD", + "price_postapoc": "50 USD", "to_hit": -3, "material": [ "kevlar_layered", "fur" ], "symbol": "[", @@ -569,8 +569,8 @@ "description": "A lightweight, hand-built combination armor made from a cut-down bulletproof vest and a reinforced neoprene wetsuit. Protects from the elements as well as from harm.", "weight": "6400 g", "volume": "7 L", - "price": 110000, - "price_postapoc": 5000, + "price": "1 kUSD 100 USD", + "price_postapoc": "50 USD", "to_hit": -3, "material": [ "kevlar", "plastic", "neoprene" ], "symbol": "[", diff --git a/data/json/items/armor/bespoke_armor/utility.json b/data/json/items/armor/bespoke_armor/utility.json index a97dfb3945d16..22137a88ac39f 100644 --- a/data/json/items/armor/bespoke_armor/utility.json +++ b/data/json/items/armor/bespoke_armor/utility.json @@ -6,8 +6,8 @@ "description": "A custom-built leather belt covered with pouches, with a sheath to carry a smaller blade, a holster to carry a pistol and a loop for holding larger tools. Durable and carefully crafted to be comfortable to wear. Activate to sheathe/draw a weapon.", "weight": "1549 g", "volume": "2250 ml", - "price": 15000, - "price_postapoc": 2500, + "price": "150 USD", + "price_postapoc": "25 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "holster", @@ -94,8 +94,8 @@ "description": "A custom-built pair of armored goggles with tinted lenses. Comfortable and built to last, they provide excellent protection from environmental dangers.", "weight": "212 g", "volume": "250 ml", - "price": 7500, - "price_postapoc": 3000, + "price": "75 USD", + "price_postapoc": "30 USD", "to_hit": -2, "material": [ "hard_plastic_transp", "leather_treated" ], "symbol": "[", @@ -124,8 +124,8 @@ "description": "A custom-built light harness covered with pouches and including an integral tactical sling for a small rifle or other such weapon. Durable and carefully crafted to be comfortable to wear. Activate to holster/draw your weapon.", "weight": "320 g", "volume": "1250 ml", - "price": 20000, - "price_postapoc": 4000, + "price": "200 USD", + "price_postapoc": "40 USD", "material": [ "leather", "canvas" ], "symbol": "[", "looks_like": "tacvest", diff --git a/data/json/items/armor/boots.json b/data/json/items/armor/boots.json index c951c4fa528fb..e8a3460f11f52 100644 --- a/data/json/items/armor/boots.json +++ b/data/json/items/armor/boots.json @@ -6,8 +6,8 @@ "description": "Lightweight sandals made from wound cord. They offer little in the way of protection, but keep you cool during warmer months.", "weight": "68 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "cotton" ], "symbol": "[", @@ -47,8 +47,8 @@ "description": "Tough leather boots, for tough everyday work.", "weight": "1060 g", "volume": "2500 ml", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "symbol": "[", "looks_like": "dress_shoes", @@ -110,8 +110,8 @@ "description": "Leather boots covered with tiny, finely-carved bones. With each step, the bones collide with each other and produce a melodic clicking.", "weight": "1824 g", "volume": "4250 ml", - "price": 13500, - "price_postapoc": 1500, + "price": "135 USD", + "price_postapoc": "15 USD", "copy-from": "boots", "symbol": "[", "looks_like": "boots", @@ -157,8 +157,8 @@ "description": "A pair of steel-toed rubber boots, the sort worn by firefighters.", "weight": "1930 g", "volume": "3500 ml", - "price": 13000, - "price_postapoc": 1500, + "price": "130 USD", + "price_postapoc": "15 USD", "to_hit": 2, "symbol": "[", "looks_like": "boots_steel", @@ -206,8 +206,8 @@ "description": "Boots made from the exoskeletons of insects.", "weight": "1620 g", "volume": "4250 ml", - "price": 13500, - "price_postapoc": 1250, + "price": "135 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -1, "material": [ "chitin" ], "symbol": "[", @@ -260,7 +260,7 @@ "type": "ARMOR", "name": { "str": "pair of biosilicified chitin boots", "str_pl": "pairs of biosilicified chitin boots" }, "description": "Boots crafted from the carefully cleaned and pruned biosilicified exoskeletons of acidic ants. Acid-resistant but brittle.", - "price_postapoc": 1750, + "price_postapoc": "17 USD 50 cent", "material": [ "acidchitin" ], "relative": { "melee_damage": { "bash": 2 } } }, @@ -288,8 +288,8 @@ "description": "Modern reinforced tactical combat boots. Very durable.", "weight": "1060 g", "volume": "2 L", - "price": 7000, - "price_postapoc": 1500, + "price": "70 USD", + "price_postapoc": "15 USD", "to_hit": -1, "symbol": "[", "looks_like": "boots", @@ -338,8 +338,8 @@ "//": "Denim part is 12 oz.", "weight": "1120 g", "volume": "3 L", - "price": 6000, - "price_postapoc": 650, + "price": "60 USD", + "price_postapoc": "6 USD 50 cent", "to_hit": -1, "symbol": "{", "color": "light_blue", @@ -386,8 +386,8 @@ "description": "Armored foot protectors constructed from steel and Nomex for use by explosive ordnance disposal technicians.", "weight": "1220 g", "volume": "3 L", - "price": 50000, - "price_postapoc": 7000, + "price": "500 USD", + "price_postapoc": "70 USD", "warmth": 10, "material": [ "plastic_pad", "nomex" ], "symbol": "[", @@ -423,7 +423,7 @@ "description": "Rubbery overshoes that cover your toes with sturdy, OSHA compliant steel toes.", "weight": "907 g", "volume": "1 L", - "price": 2500, + "price": "25 USD", "to_hit": -1, "material": [ "plastic", "steel" ], "symbol": "[", @@ -449,8 +449,8 @@ "description": "Boots lined with fur for warmth.", "weight": "1890 g", "volume": "4500 ml", - "price": 14000, - "price_postapoc": 750, + "price": "140 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "leather", "fur" ], "symbol": "[", @@ -515,8 +515,8 @@ "description": "Boots lined with fur for warmth.", "weight": "1890 g", "volume": "4500 ml", - "price": 14000, - "price_postapoc": 750, + "price": "140 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "cotton", "faux_fur" ], "symbol": "[", @@ -581,8 +581,8 @@ "description": "Tough yet light leather boots, intended for outdoor activity.", "weight": "960 g", "volume": "2 L", - "price": 14000, - "price_postapoc": 500, + "price": "140 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "leather", "plastic" ], "symbol": "[", @@ -628,8 +628,8 @@ "description": "Thick leather boots made specifically to protect the feet. Light yet tough.", "weight": "902 g", "volume": "2 L", - "price": 12500, - "price_postapoc": 1750, + "price": "125 USD", + "price_postapoc": "17 USD 50 cent", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -666,8 +666,8 @@ "description": "An extremely heavy set of armor plated boots.", "weight": "1890 g", "volume": "3250 ml", - "price": 50000, - "price_postapoc": 6000, + "price": "500 USD", + "price_postapoc": "60 USD", "to_hit": -2, "symbol": "[", "looks_like": "boots_steel", @@ -731,8 +731,8 @@ "description": "A pair of rubber boots, often used while cleaning with caustic materials.", "weight": "980 g", "volume": "3500 ml", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "to_hit": 2, "symbol": "[", "looks_like": "boots", @@ -774,8 +774,8 @@ "description": "Boots made of random metal scraps attached to simple cloth wraps. They're uncomfortable, but provide decent protection.", "weight": "1845 g", "volume": "3 L", - "price": 12000, - "price_postapoc": 500, + "price": "120 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "budget_steel", "cotton" ], "symbol": "[", @@ -839,8 +839,8 @@ "//": "The weight assumes two small sheets of about 20cm x 10cm and two small sheets of about 30cm x 10 cm.", "weight": "1180 g", "volume": "750 ml", - "price": 400, - "price_postapoc": 200, + "price": "4 USD", + "price_postapoc": "2 USD", "to_hit": -2, "symbol": "[", "looks_like": "lc_sabaton", @@ -889,8 +889,8 @@ "description": "Leather boots with a steel toe, intended for use by workers.", "weight": "1320 g", "volume": "3 L", - "price": 12000, - "price_postapoc": 1000, + "price": "120 USD", + "price_postapoc": "10 USD", "to_hit": -1, "symbol": "[", "looks_like": "boots_combat", @@ -936,8 +936,8 @@ "weight": "900 g", "volume": "1500 ml", "longest_side": "254 mm", - "price": 12000, - "price_postapoc": 925, + "price": "120 USD", + "price_postapoc": "9 USD 25 cent", "material": [ "leather", "plastic", "steel" ], "to_hit": -1, "symbol": "[", @@ -988,7 +988,7 @@ "type": "ARMOR", "name": { "str": "pair of western boots", "str_pl": "pairs of western boots" }, "description": "Stiff leather boots with intricate embroidery and one-inch heels. They look good, but these boots are made for walking, not running for your life. Each boot is large enough to conceal a small holdout pistol.", - "price_postapoc": 750, + "price_postapoc": "7 USD 50 cent", "material": [ "leather" ], "material_thickness": 2.5, "environmental_protection": 2, @@ -1034,8 +1034,8 @@ "description": "Wool-lined boots designed for warmth.", "weight": "1640 g", "volume": "3500 ml", - "price": 7000, - "price_postapoc": 750, + "price": "70 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "wool", "plastic" ], "symbol": "[", @@ -1098,8 +1098,8 @@ "description": "Sport shoes with hard undersides and studs on the bottom designed to dig into grass.", "weight": "860 g", "volume": "1500 ml", - "price": 7000, - "price_postapoc": 750, + "price": "70 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "cotton", "leather" ], "symbol": "[", "looks_like": "sneakers", @@ -1147,8 +1147,8 @@ "description": "Snug sport shoes with hard ridges on the bottom.", "weight": "820 g", "volume": "1500 ml", - "price": 6500, - "price_postapoc": 250, + "price": "65 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton", "leather" ], "symbol": "[", "looks_like": "dress_shoes", @@ -1195,8 +1195,8 @@ "description": "Known as klompen in the Netherlands and sabots in France, these wooden shoes have endured through the ages due to their simple design and durability.", "weight": "916 g", "volume": "1250 ml", - "price": 4000, - "price_postapoc": 150, + "price": "40 USD", + "price_postapoc": "1 USD 50 cent", "to_hit": -2, "material": [ "wood" ], "symbol": "[", @@ -1237,8 +1237,8 @@ "description": "Gigantic shoes fit for a clown. Incredibly difficult to walk in.", "weight": "1140 g", "volume": "3500 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -1286,8 +1286,8 @@ "description": "Expensive black dance shoes with large heels.", "weight": "870 g", "volume": "1500 ml", - "price": 12000, - "price_postapoc": 150, + "price": "120 USD", + "price_postapoc": "1 USD 50 cent", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -1330,8 +1330,8 @@ "description": "Fancy patent leather shoes. Not designed for running.", "weight": "870 g", "volume": "1500 ml", - "price": 12000, - "price_postapoc": 250, + "price": "120 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -1373,8 +1373,8 @@ "description": "Simple sandals. Somewhat difficult to run in.", "weight": "62 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "to_hit": -2, "symbol": "[", "looks_like": "sneakers", @@ -1404,8 +1404,8 @@ "description": "These are upmarket \"luxury\" flip-flops. Very difficult to run in.", "weight": "170 g", "volume": "250 ml", - "price": 10500, - "price_postapoc": 50, + "price": "105 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "rubber", "leather" ], "symbol": "[", @@ -1438,8 +1438,8 @@ "description": "Rags tied around your feet. Not much of an improvement over being barefoot, but still better than nothing.", "weight": "56 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "socks", @@ -1456,8 +1456,8 @@ "description": "Fur pelts tied around your feet. Not much of an improvement over being barefoot, but still better than nothing.", "weight": "135 g", "volume": "500 ml", - "price": 700, - "price_postapoc": 50, + "price": "7 USD", + "price_postapoc": "50 cent", "material": [ "fur" ], "symbol": "[", "looks_like": "socks_wool", @@ -1474,8 +1474,8 @@ "description": "Faux fur patches tied around your feet. Not much of an improvement over being barefoot, but still better than nothing.", "weight": "135 g", "volume": "500 ml", - "price": 700, - "price_postapoc": 50, + "price": "7 USD", + "price_postapoc": "50 cent", "material": [ "faux_fur" ], "symbol": "[", "looks_like": "socks_wool", @@ -1492,8 +1492,8 @@ "description": "Leather patches tied around your feet. Not much of an improvement over being barefoot, but still better than nothing.", "weight": "120 g", "volume": "500 ml", - "price": 525, - "price_postapoc": 50, + "price": "5 USD 25 cent", + "price_postapoc": "50 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "socks", @@ -1510,8 +1510,8 @@ "description": "Felt patches tied around your feet. Not much of an improvement over being barefoot, but still better than nothing.", "weight": "56 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "socks_wool", @@ -1528,8 +1528,8 @@ "description": "Simple wooden geta.", "weight": "460 g", "volume": "1 L", - "price": 6500, - "price_postapoc": 50, + "price": "65 USD", + "price_postapoc": "50 cent", "to_hit": -2, "symbol": "[", "looks_like": "clogs", @@ -1564,8 +1564,8 @@ "description": "A pair of high heels. Difficult to even walk in.", "weight": "640 g", "volume": "750 ml", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "leather" ], "symbol": "[", @@ -1634,8 +1634,8 @@ "weight": "1520 g", "volume": "3750 ml", "longest_side": "33 cm", - "price": 8000, - "price_postapoc": 1250, + "price": "80 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -1708,8 +1708,8 @@ "description": "Custom-made knee-high leather boots issued to motor officers. Warm, durable and quite tough.", "weight": "1520 g", "volume": "3750 ml", - "price": 8000, - "price_postapoc": 1250, + "price": "80 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -1, "symbol": "[", "looks_like": "knee_high_boots", @@ -1761,8 +1761,8 @@ "weight": "675 g", "//": "weight is based on an average of between 1 and 2 lbs for various hiking sandals IRL.", "volume": "250 ml", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "symbol": "[", "looks_like": "flip_flops", @@ -1801,8 +1801,8 @@ "description": "Lightweight shoes made of cloth and rubber.", "weight": "114 g", "volume": "750 ml", - "price": 1500, - "price_postapoc": 250, + "price": "15 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "symbol": "[", "looks_like": "sneakers", @@ -1841,8 +1841,8 @@ "description": "A type of traditional Native American footwear sewn out of prepared leather or pelts.", "weight": "230 g", "volume": "500 ml", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "fur", "leather" ], "symbol": "[", "looks_like": "leathersandals", @@ -1880,8 +1880,8 @@ "description": "A pair of durable boots used by dirt bikers and motorcyclists.", "weight": "2125 g", "volume": "2 L", - "price": 8000, - "price_postapoc": 750, + "price": "80 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "kevlar", "cotton" ], "symbol": "[", "looks_like": "boots_steel", @@ -1929,8 +1929,8 @@ "description": "A pair of inline skates. Very fast on flat floors, but they make it hard to move on rough terrain, take hits, or dodge effectively.", "weight": "1640 g", "volume": "3750 ml", - "price": 8500, - "price_postapoc": 2500, + "price": "85 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "plastic", "cotton" ], "symbol": "[", @@ -1978,8 +1978,8 @@ "description": "An old-fashioned pair of leather rollerskates with steel frames. While quite fast on flat floors, they make it difficult to take hits or to move on rough terrain.", "weight": "2720 g", "volume": "3 L", - "price": 8500, - "price_postapoc": 1500, + "price": "85 USD", + "price_postapoc": "15 USD", "to_hit": -2, "material": [ "leather", "steel" ], "symbol": "[", @@ -2029,8 +2029,8 @@ "description": "Simple shoes woven from strips of birch bark. Not very comfortable, but better than going barefoot.", "weight": "345 g", "volume": "500 ml", - "price": 3500, - "price_postapoc": 50, + "price": "35 USD", + "price_postapoc": "50 cent", "material": [ "wood" ], "symbol": "[", "looks_like": "clogs", @@ -2067,8 +2067,8 @@ "description": "A pair of flat-soled shoes designed to give you a grip on slippery surfaces.", "weight": "840 g", "volume": "1500 ml", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton", "leather" ], "symbol": "[", "looks_like": "dress_shoes", @@ -2115,8 +2115,8 @@ "//": "Denim part is 10 oz.", "weight": "340 g", "volume": "1500 ml", - "price": 5000, - "price_postapoc": 350, + "price": "50 USD", + "price_postapoc": "3 USD 50 cent", "material": [ "rubber", "cotton", "denim" ], "symbol": "[", "color": "light_blue", @@ -2161,8 +2161,8 @@ "description": "Soft shoes that keep your feet warm. Not suitable for running.", "weight": "70 g", "volume": "250 ml", - "price": 600, - "price_postapoc": 50, + "price": "6 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "cotton" ], "symbol": "[", @@ -2208,8 +2208,8 @@ "description": "Guaranteed to make you run faster and jump higher!", "weight": "840 g", "volume": "1500 ml", - "price": 10000, - "price_postapoc": 250, + "price": "100 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton", "rubber" ], "symbol": "[", "looks_like": "shoes_bowling", @@ -2249,8 +2249,8 @@ "description": "Sandals made from straw rope. Not very comfortable, but can keep your feet safe.", "weight": "70 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -2, "symbol": "[", "looks_like": "leathersandals", @@ -2289,8 +2289,8 @@ "description": "Very long leather boots that reach past the knees, they are cumbersome to wear.", "weight": "1540 g", "volume": "4250 ml", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -2348,8 +2348,8 @@ "description": "A pair of sneakers with integrated wheels. Currently the wheels are retracted, making these essentially normal lace-up athletic shoes.", "weight": "840 g", "volume": "1500 ml", - "price": 10000, - "price_postapoc": 1250, + "price": "100 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "cotton", "leather" ], "symbol": "[", "looks_like": "sneakers", @@ -2402,8 +2402,8 @@ "description": "A pair of sneakers with integrated wheels, currently the wheels are out, allowing you to swiftly roll around on flat terrain. You should probably pop them back in before you try fighting or going off-road.", "weight": "840 g", "volume": "1500 ml", - "price": 10000, - "price_postapoc": 1250, + "price": "100 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "cotton", "leather" ], "symbol": "[", "looks_like": "sneakers", @@ -2457,8 +2457,8 @@ "description": "Customized chainmail chausses that cover the feet, like booties made of chainmail. The metal shows signs of rust and corrosion.", "weight": "1801 g", "volume": "500 ml", - "price": 5012, - "price_postapoc": 2000, + "price": "50 USD 12 cent", + "price_postapoc": "20 USD", "material": [ "budget_steel_chain", "leather" ], "to_hit": -1, "symbol": "[", @@ -2500,8 +2500,8 @@ "description": "Customized chainmail chausses that cover the feet, like booties made of chainmail.", "weight": "1801 g", "volume": "500 ml", - "price": 5012, - "price_postapoc": 2000, + "price": "50 USD 12 cent", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "lc_steel_chain" ], "symbol": "[", @@ -2655,8 +2655,8 @@ "description": "A snug-fitting pair of stockings made from thin and lightweight Nomex fabric.", "weight": "200 g", "volume": "750 ml", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "to_hit": -5, "material": [ "nomex" ], "symbol": "[", @@ -2692,8 +2692,8 @@ "description": "Socks. Put 'em on your feet.", "weight": "32 g", "volume": "250 ml", - "price": 200, - "price_postapoc": 50, + "price": "2 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "socks_wool", @@ -2727,8 +2727,8 @@ "description": "Short socks, commonly used for sports. These are designed to protect your feet from friction, not temperature.", "weight": "25 g", "volume": "200 ml", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "socks", @@ -2766,8 +2766,8 @@ "description": "A pair of disposable plastic bags, adapted to be used as socks.", "weight": "6 g", "volume": "250 ml", - "price": 50, - "price_postapoc": 10, + "price": "50 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "[", "looks_like": "socks", @@ -2806,8 +2806,8 @@ "description": "Cheap socks designed to be worn once and then thrown away. They keep your feet clean, but are too thin to give any protection.", "weight": "20 g", "volume": "250 ml", - "price": 50, - "price_postapoc": 10, + "price": "50 cent", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "socks", @@ -2823,8 +2823,8 @@ "description": "Warm socks made of wool.", "weight": "44 g", "volume": "250 ml", - "price": 1200, - "price_postapoc": 150, + "price": "12 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "socks", @@ -2858,8 +2858,8 @@ "description": "Long cotton socks that reach above the knees to help protect from the cold.", "weight": "90 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "leg_warmers", @@ -3232,8 +3232,8 @@ "description": "Six long cotton tubes sized to fit over tentacles and help protect them from the cold.", "weight": "300 g", "volume": "1500 ml", - "price": 1200, - "price_postapoc": 250, + "price": "12 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "leg_warmers", @@ -3258,8 +3258,8 @@ "description": "A pair of black tabi, as worn with traditional Japanese clothes.", "weight": "50 g", "volume": "250 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "socks", @@ -3276,8 +3276,8 @@ "description": "A pair of white tabi, as used by martial arts practitioners.", "weight": "50 g", "volume": "250 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "socks", @@ -3294,8 +3294,8 @@ "description": "A flexible set of jointed lames that can be worn over footwear for additional protection, traditionally worn by mounted knights.", "weight": "750 g", "volume": "750 ml", - "price": 40000, - "price_postapoc": 3000, + "price": "400 USD", + "price_postapoc": "30 USD", "to_hit": -2, "symbol": "[", "looks_like": "boots_steel", diff --git a/data/json/items/armor/brigandine.json b/data/json/items/armor/brigandine.json index 0f55e9b6dac09..db6c123cccda5 100644 --- a/data/json/items/armor/brigandine.json +++ b/data/json/items/armor/brigandine.json @@ -7,8 +7,8 @@ "description": "A vest made from tough fabric with steel plates riveted on the inside. Can be comfortably worn over chainmail for extra protection.", "weight": "6873 g", "volume": "6137 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "lc_steel", "canvas" ], "melee_damage": { "bash": 6 }, @@ -66,8 +66,8 @@ "description": "A vest made from tough fabric with steel plates riveted on the inside, with shoulder guards attached to it. Can be comfortably worn over chainmail for extra protection.", "weight": "7311 g", "volume": "6593 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "lc_steel", "canvas" ], "melee_damage": { "bash": 6 }, @@ -133,8 +133,8 @@ "description": "A coat made from tough fabric with steel plates riveted on the inside. Can be comfortably worn over chainmail for extra protection.", "weight": "7646 g", "volume": "6880 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "lc_steel", "canvas" ], "melee_damage": { "bash": 6 }, @@ -206,8 +206,8 @@ "description": "A coat made from tough fabric with steel plates riveted on the inside, with shoulder guards attached to it. Can be comfortably worn over chainmail for extra protection.", "weight": "8084 g", "volume": "7336 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "lc_steel", "canvas" ], "melee_damage": { "bash": 6 }, @@ -695,8 +695,8 @@ "weight": "1744 g", "volume": "2138 ml", "longest_side": "30 cm", - "price": 30000, - "price_postapoc": 1000, + "price": "300 USD", + "price_postapoc": "10 USD", "to_hit": 1, "material": [ "lc_steel", "canvas" ], "symbol": "[", @@ -836,8 +836,8 @@ "description": "A pair of leg guards made of tough fabric sandwiched between alternating strips of steel. Can be comfortably worn over chainmail for extra protection.", "weight": "2674 g", "volume": "3278 ml", - "price": 40000, - "price_postapoc": 1000, + "price": "400 USD", + "price_postapoc": "10 USD", "to_hit": 1, "material": [ "lc_steel", "canvas" ], "symbol": "[", @@ -978,8 +978,8 @@ "weight": "600 g", "volume": "1400 ml", "longest_side": "12 cm", - "price": 30000, - "price_postapoc": 1000, + "price": "300 USD", + "price_postapoc": "10 USD", "to_hit": 1, "material": [ "lc_steel", "canvas" ], "symbol": "[", @@ -1119,8 +1119,8 @@ "description": "A pair of greaves made of tough fabric sandwiched between alternating strips of steel. Can be comfortably worn over chainmail for extra protection.", "weight": "600 g", "volume": "1400 ml", - "price": 40000, - "price_postapoc": 1000, + "price": "400 USD", + "price_postapoc": "10 USD", "to_hit": 1, "material": [ "lc_steel", "canvas" ], "symbol": "[", @@ -1260,8 +1260,8 @@ "description": "A pair of gloves made of tough fabric, with steel plates of various size and shape riveted for additional protection, while still remaining relatively unhindering", "weight": "684 g", "volume": "750 ml", - "price": 5012, - "price_postapoc": 2500, + "price": "50 USD 12 cent", + "price_postapoc": "25 USD", "to_hit": -1, "melee_damage": { "bash": 6 }, "material": [ "canvas", "lc_steel" ], @@ -1414,8 +1414,8 @@ "description": "A pair of thin knee guards, forged from steel. Can be comfortably worn over chainmail for extra protection.", "weight": "157 g", "volume": "800 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "lc_steel" ], "symbol": "[", @@ -1551,8 +1551,8 @@ "description": "A pair of thin elbow guards, forged from steel. Can be comfortably worn over chainmail for extra protection.", "weight": "103 g", "volume": "600 ml", - "price": 3500, - "price_postapoc": 250, + "price": "35 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "lc_steel" ], "symbol": "[", @@ -1688,8 +1688,8 @@ "description": "A pair of thin shoulder guards, made of steel. Designed to be attached to brigandine.", "weight": "438 g", "volume": "600 ml", - "price": 60000, - "price_postapoc": 100, + "price": "600 USD", + "price_postapoc": "1 USD", "material": [ "lc_steel" ], "symbol": ",", "color": "light_gray" diff --git a/data/json/items/armor/cardboard.json b/data/json/items/armor/cardboard.json index 519bba16b464b..3c43769a7cf6a 100644 --- a/data/json/items/armor/cardboard.json +++ b/data/json/items/armor/cardboard.json @@ -8,8 +8,8 @@ "description": "A cardboard helmet shaped to look like a medieval great helm. Very unencumbering in comparison to actual helmets, with rather obvious drawbacks in exchange. The interior is lined with aluminum, apparently to 'divert the zombie beta rays'. It sure doesn't help with comfort.", "weight": "1250 g", "volume": "2750 ml", - "price": 40000, - "price_postapoc": 5000, + "price": "400 USD", + "price_postapoc": "50 USD", "material": [ "cardboard", "aluminum" ], "symbol": "[", "color": "brown_yellow", @@ -34,8 +34,8 @@ "description": "A set of cardboard armor that's been duct taped and superglued into place, with paper padding the interior in an unsuccessful attempt to increase comfort. Despite the triple-layering, tensile and shear strength diagrams, and careful design considerations, there's just no way this is going to hold up to a single attack.", "weight": "3450 g", "volume": "17500 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -5, "material": [ "cardboard", "paper" ], "symbol": "[", @@ -84,8 +84,8 @@ "description": "While this isn't quite the 'heavy ballistic vest' the blueprints pretend it is, the layering makes it almost passable as a form of extremely rudimentary armor. It's still nowhere near as good as basically any other choice, while still being hard to move around in.", "weight": "2105 g", "volume": "6 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -5, "material": [ "cardboard", "paper" ], "symbol": "[", @@ -104,8 +104,8 @@ "description": "A piece of cardboard crudely bent into shape and cut to look like a crown.", "weight": "200 g", "volume": "100 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "cardboard" ], "looks_like": "crown_golden", "symbol": "[", diff --git a/data/json/items/armor/cloaks.json b/data/json/items/armor/cloaks.json index 75a08cd4e95f0..64368dfecdac0 100644 --- a/data/json/items/armor/cloaks.json +++ b/data/json/items/armor/cloaks.json @@ -6,8 +6,8 @@ "description": "A large American flag, made to fly in even the worst conditions.", "weight": "3200 g", "volume": "2 L", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -1563,8 +1563,8 @@ "description": "A brightly-colored cape emblazoned with the \"Fp\" symbol.", "weight": "900 g", "volume": "3 L", - "price": 5000, - "price_postapoc": 150, + "price": "50 USD", + "price_postapoc": "1 USD 50 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "]", @@ -1612,8 +1612,8 @@ "description": "A long, crimson cape that reaches the ankles. Worn by Catholic priests for ceremonious occasions.", "weight": "1500 g", "volume": "6 L", - "price": 50000, - "price_postapoc": 300, + "price": "500 USD", + "price_postapoc": "3 USD", "to_hit": -2, "material": [ "cotton" ], "symbol": "]", @@ -1640,8 +1640,8 @@ "description": "A primitive cloak. Ötzi wore one, too.", "weight": "710 g", "volume": "1600 ml", - "price": 2000, - "price_postapoc": 1000, + "price": "20 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "dry_plant" ], "symbol": "[", @@ -1668,8 +1668,8 @@ "description": "A heavy cloak meant to be thrown over your body.", "weight": "1175 g", "volume": "3 L", - "price": 10700, - "price_postapoc": 500, + "price": "107 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -1698,8 +1698,8 @@ "//": "16.5 oz.", "weight": "1800 g", "volume": "4 L", - "price": 20000, - "price_postapoc": 1500, + "price": "200 USD", + "price_postapoc": "15 USD", "material": [ "denim" ], "to_hit": -3, "looks_like": "coat_rain", @@ -1726,8 +1726,8 @@ "description": "A sinister-looking hooded cloak meant to be thrown over your body. The black side is currently facing outwards. Use it to reverse it and show the red side.", "weight": "150 g", "volume": "2500 ml", - "price": 10800, - "price_postapoc": 500, + "price": "108 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -1775,8 +1775,8 @@ "description": "A black cloak meant to be thrown over your body. Commonly used by witches and other creatures of the night.", "weight": "100 g", "volume": "2000 ml", - "price": 9000, - "price_postapoc": 50, + "price": "90 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -1803,8 +1803,8 @@ "description": "A heavy fur cloak meant to be thrown over your body.", "weight": "1735 g", "volume": "4 L", - "price": 24500, - "price_postapoc": 750, + "price": "245 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "fur" ], "symbol": "[", @@ -1832,8 +1832,8 @@ "description": "A heavy leather cloak meant to be thrown over your body.", "weight": "2060 g", "volume": "3500 ml", - "price": 24500, - "price_postapoc": 1000, + "price": "245 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -1861,8 +1861,8 @@ "description": "A heavy woolen cloak meant to be thrown over your body.", "weight": "900 g", "volume": "3750 ml", - "price": 24500, - "price_postapoc": 750, + "price": "245 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "wool" ], "symbol": "[", @@ -1890,8 +1890,8 @@ "description": "A long, flowing robe. Be sure to tear it off dramatically before fighting any foes!", "weight": "1587 g", "volume": "2500 ml", - "price": 22500, - "price_postapoc": 500, + "price": "225 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -1919,8 +1919,8 @@ "description": "A plastic cloak embedded with cameras and LEDs that will render you fully invisible to normal vision when powered and worn. You must be carrying a unified power supply, or UPS, to use it. Activate to toggle visibility.", "weight": "1552 g", "volume": "3500 ml", - "price": 5500000, - "price_postapoc": 25000, + "price": "55 kUSD", + "price_postapoc": "250 USD", "to_hit": -1, "material": [ "plastic" ], "symbol": "[", @@ -1975,8 +1975,8 @@ "description": "A simple wool garment worn over the torso and upper arms.", "weight": "907 g", "volume": "1250 ml", - "price": 12000, - "price_postapoc": 750, + "price": "120 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "wool" ], "symbol": "[", @@ -2012,8 +2012,8 @@ "color": "black", "name": { "str": "makeshift poncho" }, "description": "A large plastic trash bag with holes cut out for the head and arms.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "vinyl" ], "weight": "30 g", "volume": "50 ml", @@ -2031,8 +2031,8 @@ "color": "yellow", "name": { "str": "rain poncho" }, "description": "A lightweight plastic rain poncho with a hood. It folds into a very compact form when not in use.", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "vinyl" ], "weight": "280 g", "volume": "250 ml", @@ -2056,8 +2056,8 @@ "description": "A bulky traditional Japanese raincoat made from straw, which covers the entire body. Also known as mino.", "weight": "907 g", "volume": "4 L", - "price": 9000, - "price_postapoc": 25, + "price": "90 USD", + "price_postapoc": "25 cent", "material": [ "dry_plant" ], "symbol": "[", "looks_like": "coat_winter", @@ -2084,8 +2084,8 @@ "description": "Perfect for reading all those books you scavenged.", "weight": "625 g", "volume": "3 L", - "price": 3600, - "price_postapoc": 250, + "price": "36 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", diff --git a/data/json/items/armor/coats.json b/data/json/items/armor/coats.json index bb97b495bb32b..3d5a4184fb23f 100644 --- a/data/json/items/armor/coats.json +++ b/data/json/items/armor/coats.json @@ -7,8 +7,8 @@ "description": "A heavy protective coat worn by firefighters, highly resistant to heat and flame.", "weight": "1930 g", "volume": "5 L", - "price": 91000, - "price_postapoc": 1500, + "price": "910 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "nomex", "kevlar", "lycra" ], "symbol": "[", @@ -53,8 +53,8 @@ "description": "A piece of clerical clothing, usually worn by Christian priests.", "weight": "1200 g", "volume": "5 L", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -82,8 +82,8 @@ "description": "A fur coat with a couple small pockets. Extremely warm.", "weight": "1677 g", "volume": "5750 ml", - "price": 500000, - "price_postapoc": 500, + "price": "5 kUSD", + "price_postapoc": "5 USD", "to_hit": -5, "material": [ "fur", "cotton" ], "symbol": "[", @@ -259,8 +259,8 @@ "description": "A long white coat with several large pockets. Comes with a very nice pocket protector.", "weight": "580 g", "volume": "2250 ml", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "cotton" ], "symbol": "[", @@ -305,8 +305,8 @@ "description": "A vinyl coat with a hood and two very large pockets, meant to provide protection from rain.", "weight": "960 g", "volume": "1750 ml", - "price": 7900, - "price_postapoc": 50, + "price": "79 USD", + "price_postapoc": "50 cent", "symbol": "[", "looks_like": "coat_winter", "color": "yellow", @@ -358,8 +358,8 @@ "description": "An intricately sewn coat of treated and split intestines, prized for its light weight and waterproof qualities among the indigenous peoples of the arctic.", "weight": "200 g", "volume": "1250 ml", - "price": 13000, - "price_postapoc": 750, + "price": "130 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "gutskin" ], "symbol": "[", "looks_like": "coat_rain", @@ -385,8 +385,8 @@ "description": "A padded coat with deep pockets and a hood. Very warm.", "weight": "1340 g", "volume": "6750 ml", - "price": 14000, - "price_postapoc": 750, + "price": "140 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -2, "material": [ "cotton" ], "symbol": "[", @@ -438,8 +438,8 @@ "description": "A rugged full-length duster coat. Has many pockets for storage.", "weight": "2800 g", "volume": "5750 ml", - "price": 15500, - "price_postapoc": 1000, + "price": "155 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "canvas" ], "symbol": "[", @@ -512,8 +512,8 @@ "description": "A thick fur full-length duster. Has many pockets for storage.", "weight": "2362 g", "volume": "9750 ml", - "price": 97900, - "price_postapoc": 1000, + "price": "979 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "fur" ], "symbol": "[", @@ -645,8 +645,8 @@ "description": "A thick leather full-length duster. Has many pockets for storage.", "weight": "2655 g", "volume": "7 L", - "price": 24500, - "price_postapoc": 1250, + "price": "245 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -735,8 +735,8 @@ "description": "A heavy, full-length wool coat. Cumbersome, but warm and with deep pockets.", "weight": "2428 g", "volume": "8 L", - "price": 18000, - "price_postapoc": 500, + "price": "180 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "wool" ], "symbol": "[", @@ -796,8 +796,8 @@ "description": "Plain black hakama for use in kendo and other martial arts.", "weight": "350 g", "volume": "1 L", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "skirt", @@ -822,8 +822,8 @@ "description": "A flowing, pleated garment which can be worn over a kimono.", "weight": "500 g", "volume": "1500 ml", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "skirt", @@ -848,8 +848,8 @@ "description": "An outer garment of absorbent, towel-like material traditionally worn to cover one's nakedness to and from the bath. It makes you wish you had running water to bathe with.", "weight": "580 g", "volume": "2 L", - "price": 2200, - "price_postapoc": 50, + "price": "22 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -898,9 +898,9 @@ "description": "A vintage article of military surplus with an adjustable waist drawstring, or at least a civilian reproduction of one — it's resplendent with a cotton liner, an integral hood tucked away in a zip-up pouch in the collar, and epaulettes upon the shoulders.", "weight": "1400 g", "volume": "3 L", - "price": 14147, + "price": "141 USD 47 cent", "//3": "The price of a surplus jacket would be much, much cheaper, but such is the compromise when you're simulating new and old in the same basket.", - "price_postapoc": 425, + "price_postapoc": "4 USD 25 cent", "material": [ { "type": "nylon", "portion": 3 }, { "type": "cotton_quilted", "portion": 1 } ], "//4": "The shell is made from a midweight NyCo blend wind resistant sateen, fully lined with a lightweight NyCo blend wind resistant poplin: https://omegamilitaria.com/blogs/reference-guides/the-ultimate-visual-buyers-guide-to-the-m65-field-jacket", "//5": "M65 jackets have a quilted liner of cotton that's generally removable. Considering that the player isn't able to extract the liner from this garment, we're assuming that the liner is in all the time, hence the quilted cotten material.", @@ -1077,8 +1077,8 @@ "description": "A sleek blouse in a camouflage pattern with angled breast pockets and lots of loop velcro for affixing patches. You might call it a jacket but it's really a blouse. It has a pocket for your pen!", "weight": "650 g", "volume": "3 L", - "price": 6400, - "price_postapoc": 750, + "price": "64 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "jacket_army", @@ -1136,8 +1136,8 @@ "description": "A double-breasted uniform to protect against the heat of the kitchen.", "weight": "720 g", "volume": "1750 ml", - "price": 7000, - "price_postapoc": 250, + "price": "70 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "coat_lab", @@ -1241,8 +1241,8 @@ "description": "A bright, cheaply made FEMA-issue windbreaker jacket with a hood. One size, fits none. Helps keep you unfrozen & visible for rescuers.", "weight": "197 g", "volume": "2250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "symbol": "[", "looks_like": "jacket_leather", "color": "cyan", @@ -1293,8 +1293,8 @@ "description": "A jacket made from flannel, favored by outdoorsy types.", "weight": "958 g", "volume": "4250 ml", - "price": 6000, - "price_postapoc": 250, + "price": "60 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "coat_winter", @@ -1331,8 +1331,8 @@ "//": "Mediumweight 14 oz denim jacket.", "weight": "800 g", "volume": "3250 ml", - "price": 8000, - "price_postapoc": 750, + "price": "80 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "denim" ], "symbol": "[", "looks_like": "jacket_windbreaker", @@ -1381,8 +1381,8 @@ "description": "A vest made from denim.", "weight": "600 g", "volume": "2450 ml", - "price": 6500, - "price_postapoc": 500, + "price": "65 USD", + "price_postapoc": "5 USD", "material": [ "denim" ], "symbol": "[", "looks_like": "vest_leather", @@ -1430,8 +1430,8 @@ "description": "This is a wrap over black jacket. Commonly used by stealthy individuals hiding in the dark of the night. It includes a pair of cotton gauntlets and a sash.", "weight": "120 g", "volume": "1550 ml", - "price": 7000, - "price_postapoc": 200, + "price": "70 USD", + "price_postapoc": "2 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "jacket", @@ -1478,8 +1478,8 @@ "description": "A jacket made from leather. Offers more protection than your average cotton or denim jacket.", "weight": "1450 g", "volume": "2000 ml", - "price": 17900, - "price_postapoc": 750, + "price": "179 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -1532,8 +1532,8 @@ "description": "A candy-apple-red leather jacket with black strips and shoulder protrusions. It has a number of zippers and snaps in the front and a low-cut neck. The leather it's made of isn't especially thick, so it's not as protective as you might have liked.", "weight": "1000 g", "volume": "1500 ml", - "price": 17900, - "price_postapoc": 500, + "price": "179 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -1586,8 +1586,8 @@ "description": "A light cotton padded nylon jacket with a white surface. It has two pockets on the front, mainly for putting your hands in. A golden scorpion is embedded on its back. Fit for a real human being, and a real hero.", "weight": "900 g", "volume": "1500 ml", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "nylon", "cotton" ], "symbol": "[", @@ -1626,8 +1626,8 @@ "description": "A thin cotton jacket with a hood. Good for brisk weather.", "weight": "227 g", "volume": "2250 ml", - "price": 4500, - "price_postapoc": 250, + "price": "45 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "jacket_windbreaker", @@ -1663,8 +1663,8 @@ "description": "A light synthetic jacket with a hood. Not very warm, but will keep out the rain.", "weight": "280 g", "volume": "2250 ml", - "price": 1000, - "price_postapoc": 150, + "price": "10 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "jacket_light", @@ -1708,8 +1708,8 @@ "description": "A cotton varsity jacket, the type that the jocks in a highschool or a college would wear.", "weight": "700 g", "volume": "1500 ml", - "price": 6000, - "price_postapoc": 100, + "price": "60 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "symbol": "[", "warmth": 15, @@ -1827,8 +1827,8 @@ "description": "Plain white judo gi.", "weight": "1000 g", "volume": "1500 ml", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "robe", @@ -1850,8 +1850,8 @@ "description": "Plain white karate gi. Made from loose and flowing cotton.", "weight": "400 g", "volume": "1500 ml", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "judo_gi", @@ -1873,8 +1873,8 @@ "description": "A traditional, ankle-length Shinto robe with several layers and very wide sleeves.", "weight": "1400 g", "volume": "5500 ml", - "price": 30000, - "price_postapoc": 50, + "price": "300 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -1892,8 +1892,8 @@ "description": "A traditional, ankle-length Buddhist robe, stitched together from three pieces of traditional saffron dyed cloth.", "weight": "1550 g", "volume": "5000 ml", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -1921,8 +1921,8 @@ "description": "Plain white keikogi for use in martial arts.", "weight": "250 g", "volume": "750 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "judo_gi", @@ -1948,8 +1948,8 @@ "description": "A traditional, ankle-length Japanese robe, wrapped around the body with a sash.", "weight": "1200 g", "volume": "5 L", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -1987,8 +1987,8 @@ "description": "An easy-to-wear, breezy robe secured with a sash. Essentially Japanese pajamas. Great for summer nights.", "weight": "900 g", "volume": "3 L", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -2026,8 +2026,8 @@ "description": "A loose coat with wide sleeves that is worn unfastened over a kimono. It is jet black with sparse, tasteful golden embroidery.", "weight": "800 g", "volume": "2 L", - "price": 30000, - "price_postapoc": 50, + "price": "300 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -2054,8 +2054,8 @@ "description": "A white, knee-length cotton robe, traditionally worn by Jews on special occasions.", "weight": "1000 g", "volume": "4 L", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -2083,8 +2083,8 @@ "description": "A thick and heavy leather jacket used most commonly by motorcyclists, equestrians and Australian vigilantes.", "weight": "2700 g", "volume": "3500 ml", - "price": 30000, - "price_postapoc": 1500, + "price": "300 USD", + "price_postapoc": "15 USD", "to_hit": -3, "material": [ "leather" ], "symbol": "[", @@ -2162,8 +2162,8 @@ "description": "A heavy wool coat, warm and with deep pockets.", "weight": "1800 g", "volume": "3 L", - "price": 18000, - "price_postapoc": 500, + "price": "180 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "wool" ], "symbol": "[", @@ -2215,8 +2215,8 @@ "description": "A loose-fitting outer garment with sleeves and a mysterious amount of well-hidden pockets.", "weight": "1000 g", "volume": "5 L", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -2300,8 +2300,8 @@ "description": "A white hooded ghost's robe characteristic of souls that haunt the living world.", "weight": "348 g", "volume": "500 ml", - "price": 2800, - "price_postapoc": 80, + "price": "28 USD", + "price_postapoc": "80 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -2336,8 +2336,8 @@ "description": "A cheap ghost costume comprised of a white sheet with two eye holes cut out. A simple hat is worn underneath to keep the sheet in place.", "weight": "880 g", "volume": "550 ml", - "price": 2000, - "price_postapoc": 60, + "price": "20 USD", + "price_postapoc": "60 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -2374,8 +2374,8 @@ "description": "A black hooded grim reaper's robe with a face cover to hide the user's lack of facial skin. It pairs nicely with a scythe. Use it to remove the face cover and show yourself before your victims.", "weight": "453 g", "volume": "550 ml", - "price": 3500, - "price_postapoc": 90, + "price": "35 USD", + "price_postapoc": "90 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -2449,8 +2449,8 @@ "description": "A mysterious and arcane-looking robe, signifying status in the wizarding world. It has a hood and some pockets for your magical artifacts.", "weight": "911 g", "volume": "5 L", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "robe", @@ -2504,8 +2504,8 @@ "description": "A traditional, double-layered Buddhist coat. Used as an outer cloak for various occasions.", "weight": "800 g", "volume": "2250 ml", - "price": 6500, - "price_postapoc": 50, + "price": "65 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -2533,8 +2533,8 @@ "description": "A red jacket, trimmed with white faux fur, commonly used by bearded men on Christmas. Warm and has a couple of small pockets.", "weight": "1500 g", "volume": "4500 ml", - "price": 45000, - "price_postapoc": 500, + "price": "450 USD", + "price_postapoc": "5 USD", "to_hit": -5, "symbol": "[", "looks_like": "coat_winter", @@ -2593,8 +2593,8 @@ "description": "A short red jacket with white faux fur as trim, similar to a Santa jacket but sleeveless, for a more revealing look on Christmas.", "weight": "1200 g", "volume": "2000 ml", - "price": 18000, - "price_postapoc": 70, + "price": "180 USD", + "price_postapoc": "70 cent", "to_hit": -5, "symbol": "[", "looks_like": "jacket_leather_red", @@ -2637,8 +2637,8 @@ "description": "An insulated, breathable hoodie made for alpine skiing. Very warm, and with sizable pockets.", "weight": "1105 g", "volume": "5 L", - "price": 18000, - "price_postapoc": 500, + "price": "180 USD", + "price_postapoc": "5 USD", "material": [ "nylon", "cotton" ], "symbol": "[", "looks_like": "coat_winter", @@ -2697,8 +2697,8 @@ "description": "A rugged full-length duster that leaves your arms unencumbered. Has plenty of storage space due to its many pockets.", "weight": "2380 g", "volume": "4500 ml", - "price": 13175, - "price_postapoc": 500, + "price": "131 USD 75 cent", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "canvas" ], "symbol": "[", @@ -2777,8 +2777,8 @@ "description": "A thick fur full-length duster without sleeves, leaving your arms unencumbered. Has plenty of storage space due to its many pockets.", "weight": "2007 g", "volume": "8250 ml", - "price": 83215, - "price_postapoc": 500, + "price": "832 USD 15 cent", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "fur" ], "symbol": "[", @@ -2867,8 +2867,8 @@ "description": "A thick leather full-length duster without sleeves, leaving your arms unencumbered. Has plenty of storage space due to its many pockets.", "weight": "2257 g", "volume": "6 L", - "price": 20825, - "price_postapoc": 500, + "price": "208 USD 25 cent", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -2947,8 +2947,8 @@ "description": "A thick canvas trenchcoat that leaves your arms unencumbered. Has plenty of storage space due to its many pockets.", "weight": "1904 g", "volume": "3750 ml", - "price": 13175, - "price_postapoc": 500, + "price": "131 USD 75 cent", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "canvas" ], "symbol": "[", @@ -2996,8 +2996,8 @@ "description": "A thick fur trenchcoat without sleeves, leaving your arms unencumbered. Has plenty of storage space due to its many pockets.", "weight": "1487 g", "volume": "6750 ml", - "price": 83215, - "price_postapoc": 500, + "price": "832 USD 15 cent", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "fur" ], "symbol": "[", @@ -3055,8 +3055,8 @@ "description": "A thick leather trenchcoat without sleeves, leaving your arms unencumbered. Has plenty of storage space due to its many pockets.", "weight": "1672 g", "volume": "4250 ml", - "price": 20825, - "price_postapoc": 500, + "price": "208 USD 25 cent", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -3103,8 +3103,8 @@ "description": "A sleeveless cloth garment that covers the torso and legs.", "weight": "240 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -3137,8 +3137,8 @@ "description": "A long, loose-fitting robe with wide sleeves. A traditional Arab garment.", "weight": "1200 g", "volume": "4500 ml", - "price": 10000, - "price_postapoc": 100, + "price": "100 USD", + "price_postapoc": "1 USD", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -3156,8 +3156,8 @@ "description": "A thick canvas trenchcoat, lined with pockets. Great for storage.", "weight": "2240 g", "volume": "4250 ml", - "price": 15500, - "price_postapoc": 500, + "price": "155 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "canvas" ], "symbol": "[", @@ -3199,8 +3199,8 @@ "description": "A thick fur trenchcoat, lined with pockets. Great for storage.", "weight": "1750 g", "volume": "7250 ml", - "price": 97900, - "price_postapoc": 750, + "price": "979 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "fur" ], "symbol": "[", @@ -3252,8 +3252,8 @@ "description": "A thick leather trenchcoat, lined with pockets. Great for storage.", "weight": "1967 g", "volume": "5250 ml", - "price": 24500, - "price_postapoc": 750, + "price": "245 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -3295,8 +3295,8 @@ "description": "A simple garment long enough to cover down to the knees.", "weight": "250 g", "volume": "1250 ml", - "price": 4200, - "price_postapoc": 100, + "price": "42 USD", + "price_postapoc": "1 USD", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -3325,8 +3325,8 @@ "description": "A poorly-made long tunic with a string tied around the waist to keep it all in place.", "weight": "683 g", "volume": "1 L", - "price": 70, - "price_postapoc": 60, + "price": "70 cent", + "price_postapoc": "60 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "tunic", @@ -3353,8 +3353,8 @@ "description": "A full-body tuxedo. Makes the apocalypse feel a little more classy.", "weight": "1587 g", "volume": "5500 ml", - "price": 21000, - "price_postapoc": 750, + "price": "210 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -5, "symbol": "[", "looks_like": "suit", @@ -3420,8 +3420,8 @@ "description": "An elegant waistcoat. Ideal for those occasions when wearing only a shirt would be too casual and a suit would be overdoing it.", "weight": "516 g", "volume": "1 L", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "blazer", @@ -3469,8 +3469,8 @@ "description": "A hooded jacket with lots of pockets, thickly padded for warmth. Favored by the military.", "weight": "1000 g", "volume": "3 L", - "price": 4375, - "price_postapoc": 750, + "price": "43 USD 75 cent", + "price_postapoc": "7 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "coat_winter", @@ -3534,8 +3534,8 @@ "description": "A thick black leather steampunk themed trenchcoat. Unlike a regular trenchcoat, this one has no pockets.", "weight": "1967 g", "volume": "5250 ml", - "price": 24500, - "price_postapoc": 750, + "price": "245 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -3569,8 +3569,8 @@ "description": "A dark robbed cassock worn by plague doctors.", "weight": "1300 g", "volume": "5 L", - "price": 800, - "price_postapoc": 60, + "price": "8 USD", + "price_postapoc": "60 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -3598,8 +3598,8 @@ "description": "A dark piece of clerical clothing. Typically worn by Christian nuns.", "weight": "1200 g", "volume": "5 L", - "price": 1000, - "price_postapoc": 80, + "price": "10 USD", + "price_postapoc": "80 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -3629,8 +3629,8 @@ "description": "A hefty camouflage jacket rattling with a spade of zippers, press-studs, and attachment points, featuring a high mandarin collar, Velcro cuffs, plates for ID tags, and enough pockets to make your internal Militiaman weep for joy.", "weight": "1052 g", "volume": "2250 ml", - "price": 14222, - "price_postapoc": 375, + "price": "142 USD 22 cent", + "price_postapoc": "3 USD 75 cent", "material": [ { "type": "nylon", "portion": 6 }, { "type": "cotton", "portion": 2 } ], "symbol": "[", "color": "green", diff --git a/data/json/items/armor/combat_exoskeleton.json b/data/json/items/armor/combat_exoskeleton.json index b4d9a3c19b25c..2a9b4870a8ba0 100644 --- a/data/json/items/armor/combat_exoskeleton.json +++ b/data/json/items/armor/combat_exoskeleton.json @@ -4,8 +4,8 @@ "category": "armor", "type": "ARMOR", "name": { "str": "abstract combat exoskeleton" }, - "price": 50000000, - "price_postapoc": 100000, + "price": "500 kUSD", + "price_postapoc": "1 kUSD", "symbol": "[", "volume": "36000 ml", "weight": "13000 g", diff --git a/data/json/items/armor/combat_exoskeleton_armor.json b/data/json/items/armor/combat_exoskeleton_armor.json index 58c49e66417ae..1beb8b104e313 100644 --- a/data/json/items/armor/combat_exoskeleton_armor.json +++ b/data/json/items/armor/combat_exoskeleton_armor.json @@ -6,8 +6,8 @@ "name": { "str": "heavy combat exoskeleton head armor" }, "description": "Put the tank in tank suit with this 6mm thick exoskeleton armor, it even feels like wearing a real tank, you should stay wary of anti-material rounds though.", "symbol": "[", - "price": 2000000, - "price_postapoc": 10000, + "price": "20 kUSD", + "price_postapoc": "100 USD", "volume": "3300 ml", "weight": "3500 g", "flags": [ "EXO_HELMET_PLATE", "STURDY", "CANT_WEAR" ], @@ -64,8 +64,8 @@ "name": { "str": "heavy combat exoskeleton torso armor" }, "description": "Put the tank in tank suit with this 6mm thick exoskeleton armor, it even feels like wearing a real tank, you should stay wary of anti-material rounds though.", "symbol": "[", - "price": 2000000, - "price_postapoc": 10000, + "price": "20 kUSD", + "price_postapoc": "100 USD", "volume": "12000 ml", "weight": "12700 g", "flags": [ "EXO_TORSO_PLATE", "STURDY", "CANT_WEAR" ], @@ -92,8 +92,8 @@ "name": { "str": "heavy combat exoskeleton arm armor" }, "description": "Put the tank in tank suit with this 6mm thick exoskeleton armor, it even feels like wearing a real tank, you should stay wary of anti-material rounds though.", "symbol": "[", - "price": 2000000, - "price_postapoc": 10000, + "price": "20 kUSD", + "price_postapoc": "100 USD", "volume": "9700 ml", "weight": "10300 g", "flags": [ "EXO_ARM_PLATE", "STURDY", "CANT_WEAR" ], @@ -144,8 +144,8 @@ "name": { "str": "heavy combat exoskeleton leg armor" }, "description": "Put the tank in tank suit with this 6mm thick exoskeleton armor, it even feels like wearing a real tank, you should stay wary of anti-material rounds though.", "symbol": "[", - "price": 2000000, - "price_postapoc": 10000, + "price": "20 kUSD", + "price_postapoc": "100 USD", "volume": "10000 ml", "weight": "10600 g", "flags": [ "EXO_LEG_PLATE", "STURDY", "CANT_WEAR" ], diff --git a/data/json/items/armor/exotic.json b/data/json/items/armor/exotic.json index 3f0cb6a31885a..56b715ea6e089 100644 --- a/data/json/items/armor/exotic.json +++ b/data/json/items/armor/exotic.json @@ -7,8 +7,8 @@ "description": "A chunk of otherworldly carapace that looks like it was at one point shaped like armor, but is now bulky and overgrown with sharp pieces jutting out haphazardly. Scarred into the outer surface you can barely make out the label \"STRIKE FACE\". It looks like you could force it into a ballistic vest.", "weight": "2800 g", "volume": "1533 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "alien_carapace", "flesh" ], "symbol": ",", "color": "dark_gray", @@ -37,8 +37,8 @@ "description": "A chunk of otherworldly carapace that seems to have been forced into the shape of a ballistic plate with a slightly concave profile. Scarred into the outer surface is the label \"STRIKE FACE\". It looks like you could force it into a ballistic vest.", "weight": "2000 g", "volume": "1533 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "alien_carapace", "flesh" ], "symbol": ",", "color": "dark_gray", @@ -71,8 +71,8 @@ "description": "A chunk of otherworldly carapace that seems to have been forced into the shape of a ballistic plate with a slightly concave profile. Scarred into the outer surface is the label \"STRIKE FACE\". The armor coverage is spotty and it appears to be oozing and pulsing like it is in pain.", "weight": "1500 g", "volume": "1533 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "alien_carapace", "flesh" ], "symbol": ",", "color": "dark_gray", @@ -105,8 +105,8 @@ "description": "A chunk of otherworldly flesh that seems to have been forced into the shape of a ballistic plate with a slightly concave profile. There is no armor left on this plate, just a mass of writhing alien flesh oozing in pain. However, it looks like it is slowly growing back.", "weight": "1000 g", "volume": "1533 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "flesh" ], "symbol": ",", "color": "dark_gray", @@ -133,8 +133,8 @@ "description": "A slimy layer of liquid has completely engulfed your body from the neck down and seems to move with you - the sensation is uncomfortable. The liquid appears bound to the resonating collar at your neck; the inside of the collar reads \"CAREFUL CHOKING HAZARD! THIS WAY DOWN\". The ooze flows freely, covering your entire body but never crossing the gorget to get to your head.", "weight": "1500 g", "volume": "1 L", - "price": 2500, - "price_postapoc": 400, + "price": "25 USD", + "price_postapoc": "4 USD", "material": [ "alien_liquid", "unobtanium" ], "symbol": "[", "looks_like": "union_suit", @@ -194,8 +194,8 @@ "description": "A heavy-duty gorget or collar made from odd materials that hums slightly. It feels damp to the touch and there is a mechanical button of some kind on the front. The inside reads \"CAREFUL CHOKING HAZARD! THIS WAY DOWN\".", "weight": "1500 g", "volume": "100 ml", - "price": 2500, - "price_postapoc": 400, + "price": "25 USD", + "price_postapoc": "4 USD", "material": [ "unobtanium" ], "symbol": "[", "looks_like": "silver_necklace", @@ -235,8 +235,8 @@ "description": "This is a collection of syringes with nozzles, an aerosol sprayer, and a few other attachments. It seems designed for looking after some kind of creature that wants to stay wet.", "weight": "85 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "plastic", "steel" ], "symbol": ",", @@ -264,8 +264,8 @@ "description": "A strange belt wrapped with circuitry and hundreds of banded metal discs. When you touch it, it seems to vibrate slightly.", "weight": "40 g", "volume": "200 ml", - "price": 0, - "price_postapoc": 8000, + "price": "0 cent", + "price_postapoc": "80 USD", "material": [ "unobtanium", "superalloy" ], "symbol": "[", "looks_like": "armor_lightplate", @@ -363,8 +363,8 @@ "flags": [ "SLEEP_IGNORE", "MUNDANE" ], "weight": "897 g", "volume": "1 L", - "price": 4900, - "price_postapoc": 750, + "price": "49 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -3, "material": [ "monolith" ], "symbol": "[", @@ -387,8 +387,8 @@ "description": "An impossibly large slab of dark reflective material wrapped in bands of multicolored alloy. It seems shaped to fit over a humanoid torso.", "weight": "300 kg", "volume": "6000 ml", - "price": 0, - "price_postapoc": 8000, + "price": "0 cent", + "price_postapoc": "80 USD", "material": [ { "type": "monolith_heavy", "portion": 19 }, { "type": "superalloy", "portion": 1 } ], "symbol": "[", "looks_like": "armor_lightplate", @@ -416,8 +416,8 @@ "description": "An impossibly large slab of dark reflective material wrapped in bands of multicolored alloy. It seems shaped as though it would tie to the upper arms.", "weight": "100 kg", "volume": "4000 ml", - "price": 0, - "price_postapoc": 8000, + "price": "0 cent", + "price_postapoc": "80 USD", "material": [ { "type": "monolith_heavy", "portion": 19 }, { "type": "superalloy", "portion": 1 } ], "symbol": "[", "looks_like": "armor_lightplate", @@ -444,8 +444,8 @@ "description": "An impossibly large slab of dark reflective material wrapped in bands of multicolored alloy. It has been forced into a conical shape as though it could somehow be worn as a skirt.", "weight": "275 kg", "volume": "5500 ml", - "price": 0, - "price_postapoc": 8000, + "price": "0 cent", + "price_postapoc": "80 USD", "material": [ { "type": "monolith_heavy", "portion": 19 }, { "type": "superalloy", "portion": 1 } ], "symbol": "[", "looks_like": "armor_lightplate", diff --git a/data/json/items/armor/eyewear.json b/data/json/items/armor/eyewear.json index fac624f56ef5f..39ff74ccf7a47 100644 --- a/data/json/items/armor/eyewear.json +++ b/data/json/items/armor/eyewear.json @@ -6,8 +6,8 @@ "description": "A pair of cardboard-framed glasses with UV and IR-filtered lenses topped with a layer of aluminum coating. They allow safe viewing of extremely bright and harmful sources of light, like the sun during a solar eclipse.", "weight": "27 g", "volume": "18 ml", - "price": 2500, - "price_postapoc": 10, + "price": "25 USD", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ { "type": "cardboard", "portion": 90 }, { "type": "plastic", "portion": 9 }, { "type": "aluminum", "portion": 1 } ], "symbol": "[", @@ -27,8 +27,8 @@ "description": "A patch of black leather to cover an eye, with a string to keep it from falling off. If wearing this doesn't make you feel a pirate, nothing will.", "weight": "50 g", "volume": "100 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "glasses_safety", @@ -44,8 +44,8 @@ "description": "A pair of stylish sunglasses. Look good while keeping the glare out of your eyes.", "weight": "42 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 50, + "price": "275 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -63,8 +63,8 @@ "description": "A pair of fit-over sunglasses designed to be worn over a pair of corrective glasses. Good for keeping the glare out of your eyes.", "weight": "45 g", "volume": "250 ml", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -83,8 +83,8 @@ "description": "Modern tactical eyewear that protects from small projectiles and fragments. Provides excellent protection from environmental dangers.", "weight": "184 g", "volume": "250 ml", - "price": 7500, - "price_postapoc": 500, + "price": "75 USD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "hard_plastic_transp", "nylon" ], "symbol": "[", @@ -103,8 +103,8 @@ "description": "A pair of bifocal glasses for those who are both near-sighted and far-sighted. You can use them to focus sunlight.", "weight": "30 g", "volume": "250 ml", - "price": 7900, - "price_postapoc": 750, + "price": "79 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -123,8 +123,8 @@ "description": "A pair of glasses for the near-sighted. The concave lenses diffuse the sunlight, rendering them useless for starting fires.", "weight": "30 g", "volume": "250 ml", - "price": 7900, - "price_postapoc": 500, + "price": "79 USD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -143,8 +143,8 @@ "description": "An essential article of the gentleman's apparel. Also corrects near-sightedness. The concave lens diffuses the sunlight, rendering it useless for starting fires.", "weight": "16 g", "volume": "5 ml", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -163,8 +163,8 @@ "ascii_picture": "glasses_reading", "weight": "30 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -183,8 +183,8 @@ "description": "A pair of plastic glasses, used in workshops, sports, chemistry labs, and many other places. Provides great protection from damage.", "weight": "60 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": "[", @@ -203,8 +203,8 @@ "description": "A pair of old-fashioned goggles with thick glass lenses, somewhat similar to those worn by the pilots of open-cockpit aircraft, but more crude looking. Won't protect your eyes from physical harm, but can keep hazardous chemicals out.", "weight": "90 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 200, + "price": "10 USD", + "price_postapoc": "2 USD", "material": [ "glass" ], "symbol": "[", "looks_like": "glasses_safety", @@ -221,8 +221,8 @@ "description": "A large pair of goggles that completely seal off your eyes. Provides excellent protection from environmental dangers.", "weight": "354 g", "volume": "500 ml", - "price": 4500, - "price_postapoc": 250, + "price": "45 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": "[", @@ -241,8 +241,8 @@ "description": "A dark pair of goggles. They make seeing very difficult, but protect you from bright flashes.", "weight": "153 g", "volume": "250 ml", - "price": 1400, - "price_postapoc": 500, + "price": "14 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "plastic" ], "symbol": "[", @@ -262,8 +262,8 @@ "description": "Eyewear carved from wood or bone, with only a thin slit to see out of. Helps reduce glare, traditionally used by the Inuit to protect against snow blindness.", "weight": "70 g", "volume": "250 ml", - "price": 4500, - "price_postapoc": 10, + "price": "45 USD", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "bone" ], "symbol": "[", @@ -281,8 +281,8 @@ "description": "A pair of sunglasses, good for keeping the glare out of your eyes.", "weight": "35 g", "volume": "250 ml", - "price": 5000, - "price_postapoc": 10, + "price": "50 USD", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -300,8 +300,8 @@ "description": "A pair of bifocal sunglasses for keeping the glare out of the eyes of those who are both near-sighted and far-sighted.", "weight": "30 g", "volume": "250 ml", - "price": 7900, - "price_postapoc": 750, + "price": "79 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -319,8 +319,8 @@ "description": "A pair of sunglasses for keeping the glare out of the eyes of those who are near-sighted.", "weight": "30 g", "volume": "250 ml", - "price": 7900, - "price_postapoc": 500, + "price": "79 USD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -339,8 +339,8 @@ "ascii_picture": "glasses_reading", "weight": "30 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -358,8 +358,8 @@ "description": "A pair of stylish bifocal glasses for those who are both near-sighted and far-sighted.", "weight": "30 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 5000, + "price": "275 USD", + "price_postapoc": "50 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -378,8 +378,8 @@ "description": "A pair of stylish glasses for the near-sighted. The concave lenses diffuse the sunlight, rendering them useless for starting fires.", "weight": "30 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 750, + "price": "275 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -398,8 +398,8 @@ "ascii_picture": "glasses_reading", "weight": "30 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 5000, + "price": "275 USD", + "price_postapoc": "50 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -418,8 +418,8 @@ "description": "A pair of stylish bifocal sunglasses for keeping the glare out of the eyes of those who are both near-sighted and far-sighted.", "weight": "30 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 7500, + "price": "275 USD", + "price_postapoc": "75 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -437,8 +437,8 @@ "description": "A pair of stylish sunglasses, looks good while keeping the glare out of the eyes of those who are near-sighted.", "weight": "30 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 750, + "price": "275 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -457,8 +457,8 @@ "ascii_picture": "glasses_reading", "weight": "30 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 5000, + "price": "275 USD", + "price_postapoc": "50 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -476,8 +476,8 @@ "description": "A pair of transition bifocal glasses for those who are both near-sighted and far-sighted. Contains photochromic dyes that cause the lenses to darken when exposed to ultraviolet rays from sunlight. When the UV light diminishes, the lenses fade back.", "weight": "30 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 7500, + "price": "275 USD", + "price_postapoc": "75 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -495,8 +495,8 @@ "description": "A pair of transition glasses for the near-sighted. Contains photochromic dyes that cause the lenses to darken when exposed to ultraviolet rays from sunlight. When the UV light diminishes, the lenses fade back.", "weight": "30 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 750, + "price": "275 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -515,8 +515,8 @@ "ascii_picture": "glasses_reading", "weight": "30 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 5000, + "price": "275 USD", + "price_postapoc": "50 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -534,8 +534,8 @@ "description": "A pair of stylish bifocal glasses for those who are both near-sighted and far-sighted. Contains photochromic dyes that cause the lenses to darken when exposed to ultraviolet rays from sunlight. When the UV light diminishes, the lenses fade back.", "weight": "30 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 7500, + "price": "275 USD", + "price_postapoc": "75 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -553,8 +553,8 @@ "description": "A stylish pair of glasses for the near-sighted. Contains photochromic dyes that cause the lenses to darken when exposed to ultraviolet rays from sunlight. When the UV light diminishes, the lenses fade back.", "weight": "30 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 800, + "price": "275 USD", + "price_postapoc": "8 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -573,8 +573,8 @@ "ascii_picture": "glasses_reading", "weight": "30 g", "volume": "250 ml", - "price": 27500, - "price_postapoc": 5000, + "price": "275 USD", + "price_postapoc": "50 USD", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", diff --git a/data/json/items/armor/gambesons.json b/data/json/items/armor/gambesons.json index 440b933827411..e77cd08f543ca 100644 --- a/data/json/items/armor/gambesons.json +++ b/data/json/items/armor/gambesons.json @@ -6,8 +6,8 @@ "description": "A padded greatcoat assembled by quilting readily available fabric and stuffing the layers with waste fabric or horse hair that was intended as standalone armor, being too thick to comfortably fit a cuirass over. Likely either a historical artifact or a low-quality reproduction. Though inferior to a proper layered aketon or gambeson it still offers decent protection.", "weight": "11850 g", "volume": "7500 ml", - "price": 20000, - "price_postapoc": 1500, + "price": "200 USD", + "price_postapoc": "15 USD", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -71,8 +71,8 @@ "description": "A thick padded surcoat assembled by quilting readily available fabric and stuffing the layers with waste fabric or horse hair that was intended as standalone armor, being too thick to comfortably fit a cuirass over. Likely either a historical artifact or a low-quality reproduction. Though inferior to a proper layered gambeson its sheer thickness is still quite protective.", "weight": "9120 g", "volume": "6000 ml", - "price": 20000, - "price_postapoc": 1000, + "price": "200 USD", + "price_postapoc": "10 USD", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -126,8 +126,8 @@ "description": "Thick pants made of quilted fabric, meant to be worn alongside a gambeson under or without armor.", "weight": "2736 g", "volume": "1750 ml", - "price": 14000, - "price_postapoc": 1000, + "price": "140 USD", + "price_postapoc": "10 USD", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -172,7 +172,7 @@ "description": "A cloth coif with neck and forehead protection. Resting on your shoulders, it serves as padding for a helmet. Though it's pretty warm, it is constructed of stuffed cloth layers and provides moderate protection.", "weight": "760 g", "volume": "500 ml", - "price_postapoc": 1000, + "price_postapoc": "10 USD", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -224,7 +224,7 @@ "description": "A thick cloth jack, intended to be worn below metal armor. This one is made of over a dozen layers of tough canvas, and it provides fairly decent protection on its own.", "weight": "5092 g", "volume": "3500 ml", - "price_postapoc": 4000, + "price_postapoc": "40 USD", "to_hit": -5, "material": [ "canvas" ], "symbol": "[", @@ -282,7 +282,7 @@ "description": "A thick cloth vest, intended to be worn below metal armor. This one is made of over a dozen layers of tough canvas, and it provides fairly decent protection on its own.", "weight": "3724 g", "volume": "2500 ml", - "price_postapoc": 2500, + "price_postapoc": "25 USD", "to_hit": -5, "material": [ "canvas" ], "symbol": "[", @@ -331,7 +331,7 @@ "description": "Tough cloth pants worn alongside an aketon underneath metal armor. These are made of many layers of canvas offering solid protection.", "weight": "2736 g", "volume": "1750 ml", - "price_postapoc": 2500, + "price_postapoc": "25 USD", "to_hit": -5, "material": [ "canvas" ], "symbol": "[", @@ -380,7 +380,7 @@ "description": "A cloth coif with neck and forehead protection. Resting on your shoulders, it serves as padding for a helmet. Though it's pretty warm, it is constructed of tough canvas and provides substantial protection even on its own.", "weight": "760 g", "volume": "500 ml", - "price_postapoc": 1000, + "price_postapoc": "10 USD", "to_hit": -5, "material": [ "canvas" ], "symbol": "[", @@ -430,7 +430,7 @@ "description": "Tough gloves made of canvas cloth, thin enough to wear under metal gauntlets. They help to keep your hands safe during a fight.", "weight": "304 g", "volume": "250 ml", - "price_postapoc": 1000, + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "canvas" ], "symbol": "[", @@ -483,7 +483,7 @@ "description": "A thick cloth greatcoat intended to be worn as standalone armor, as it's a little too thick to comfortably add chainmail or a cuirass on top. Made of thirty layers of tough canvas, this will protect you from almost everything, but it's very heavy and warm. The sleeves are a bit thinner for flexibility and it drapes below your legs, providing additional protection there.", "weight": "11856 g", "volume": "7500 ml", - "price_postapoc": 8500, + "price_postapoc": "85 USD", "to_hit": -5, "material": [ "canvas" ], "symbol": "[", @@ -555,7 +555,7 @@ "description": "A thick cloth greatcoat intended to be worn as standalone armor, as it's a little too thick to comfortably add chainmail or a cuirass on top. Made of thirty layers of tough canvas, this will protect you from almost everything, but it's very heavy and warm. The sleeves are a lot thinner for flexibility and it drapes below your legs, providing additional protection there.", "weight": "10488 g", "volume": "7000 ml", - "price_postapoc": 7500, + "price_postapoc": "75 USD", "to_hit": -5, "material": [ "canvas" ], "symbol": "[", @@ -627,7 +627,7 @@ "description": "A thick cloth surcoat intended to be worn as standalone armor, as it's a little too thick to comfortably add chainmail or a cuirass on top. Made of thirty layers of tough canvas, this will protect you from almost everything, but it's very heavy and warm. It drapes below your legs, providing additional protection there, and it lacks sleeves entirely.", "weight": "9120 g", "volume": "6000 ml", - "price_postapoc": 5000, + "price_postapoc": "50 USD", "to_hit": -5, "material": [ "canvas" ], "symbol": "[", @@ -685,7 +685,7 @@ "description": "Tough, extremely thick cloth pants worn on their own alongside a gambeson. These are made of a huge number of canvas layers offering very solid protection, though they're too thick to easily add metal armor on top and are both stuffy and restrictive.", "weight": "5472 g", "volume": "3750 ml", - "price_postapoc": 5000, + "price_postapoc": "50 USD", "to_hit": -5, "material": [ "canvas" ], "symbol": "[", @@ -735,7 +735,7 @@ "description": "Very thick canvas gauntlets worn in lieu of metal or leather armor. Though they make it hard to do anything other than swing a weapon, and they're very warm, they offer excellent protection.", "weight": "720 g", "volume": "500 ml", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "canvas" ], "symbol": "[", @@ -804,7 +804,7 @@ "description": "A thick cloth jack, intended to be worn below metal armor. This one is made of over a dozen layers of tough nylon, and it provides fairly decent protection on its own.", "weight": "3618 g", "volume": "3500 ml", - "price_postapoc": 4000, + "price_postapoc": "40 USD", "to_hit": -5, "material": [ "nylon" ], "symbol": "[", @@ -862,7 +862,7 @@ "description": "A thick cloth vest, intended to be worn below metal armor. This one is made of over a dozen layers of tough nylon, and it provides fairly decent protection on its own in addition to being quite light.", "weight": "2646 g", "volume": "2500 ml", - "price_postapoc": 2500, + "price_postapoc": "25 USD", "to_hit": -5, "material": [ "nylon" ], "symbol": "[", @@ -911,7 +911,7 @@ "description": "Tough cloth pants worn alongside an aketon underneath metal armor. These are made of many layers of nylon offering solid protection and the modern material is much lighter than organic fabrics.", "weight": "1944 g", "volume": "1750 ml", - "price_postapoc": 2500, + "price_postapoc": "25 USD", "to_hit": -5, "material": [ "nylon" ], "symbol": "[", @@ -960,7 +960,7 @@ "description": "A cloth coif with neck and forehead protection. Resting on your shoulders, it serves as padding for a helmet. It is constructed of tough nylon and provides decent protection even on its own in addition to being fairly light.", "weight": "540 g", "volume": "500 ml", - "price_postapoc": 1000, + "price_postapoc": "10 USD", "to_hit": -5, "material": [ "nylon" ], "symbol": "[", @@ -1010,7 +1010,7 @@ "description": "Tough gloves made of nylon cloth, thin enough to wear under metal gauntlets. They help to keep your hands safe during a fight.", "weight": "216 g", "volume": "250 ml", - "price_postapoc": 1000, + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "nylon" ], "symbol": "[", @@ -1063,7 +1063,7 @@ "description": "A thick cloth greatcoat intended to be worn as standalone armor, as it's a little too thick to comfortably add chainmail or a cuirass on top. Made of thirty layers of tough nylon, this will protect you from almost everything, but it's very heavy and warm. The sleeves are a bit thinner for flexibility and it drapes below your legs, providing additional protection there.", "weight": "8424 g", "volume": "7500 ml", - "price_postapoc": 8500, + "price_postapoc": "85 USD", "to_hit": -5, "material": [ "nylon" ], "symbol": "[", @@ -1135,7 +1135,7 @@ "description": "A thick cloth greatcoat intended to be worn as standalone armor, as it's a little too thick to comfortably add chainmail or a cuirass on top. Made of thirty layers of tough nylon, this will protect you from almost everything, but it's very heavy and warm. The sleeves are a lot thinner for flexibility and it drapes below your legs, providing additional protection there.", "weight": "7452 g", "volume": "7000 ml", - "price_postapoc": 7500, + "price_postapoc": "75 USD", "to_hit": -5, "material": [ "nylon" ], "symbol": "[", @@ -1207,7 +1207,7 @@ "description": "A thick cloth surcoat intended to be worn as standalone armor, as it's a little too thick to comfortably add chainmail or a cuirass on top. Made of thirty layers of tough nylon, this will protect you from almost everything, but it's very heavy and warm. It drapes below your legs, providing additional protection there, and it lacks sleeves entirely.", "weight": "6480 g", "volume": "6000 ml", - "price_postapoc": 5000, + "price_postapoc": "50 USD", "to_hit": -5, "material": [ "nylon" ], "symbol": "[", @@ -1265,7 +1265,7 @@ "description": "Tough, extremely thick nylon pants worn on their own alongside a gambeson. These are made of a huge number of canvas layers offering very solid protection, though they're too thick to easily add metal armor on top and are both stuffy and restrictive.", "weight": "3888 g", "volume": "3750 ml", - "price_postapoc": 5000, + "price_postapoc": "50 USD", "to_hit": -5, "material": [ "nylon" ], "symbol": "[", @@ -1315,7 +1315,7 @@ "description": "Very thick nylon gauntlets worn in lieu of metal or leather armor. Though they make it hard to do anything other than swing a weapon, and they're very warm, they offer excellent protection.", "weight": "486 g", "volume": "500 ml", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "nylon" ], "symbol": "[", @@ -1385,7 +1385,7 @@ "description": "A thick cloth jack, intended to be worn below metal armor. This one is made of layered wool quilting and it provides fairly decent protection on its own.", "weight": "4355 g", "volume": "3500 ml", - "price_postapoc": 4000, + "price_postapoc": "40 USD", "to_hit": -5, "material": [ "wool" ], "symbol": "[", @@ -1444,7 +1444,7 @@ "description": "A thick cloth vest, intended to be worn below metal armor. This one is made of layered wool quilting and it provides fairly decent protection on its own.", "weight": "3185 g", "volume": "2500 ml", - "price_postapoc": 2500, + "price_postapoc": "25 USD", "to_hit": -5, "material": [ "wool" ], "symbol": "[", @@ -1494,7 +1494,7 @@ "description": "Tough cloth pants worn alongside an aketon underneath metal armor. This one is made of layered wool quilting and it provides fairly decent protection on its own.", "weight": "2340 g", "volume": "1750 ml", - "price_postapoc": 2500, + "price_postapoc": "25 USD", "to_hit": -5, "material": [ "wool" ], "symbol": "[", @@ -1543,7 +1543,7 @@ "description": "A cloth coif with neck and forehead protection. Resting on your shoulders, it serves as padding for a helmet. Though it's pretty warm, it is constructed of layered wool quilting and provides substantial protection even on its own.", "weight": "650 g", "volume": "500 ml", - "price_postapoc": 1000, + "price_postapoc": "10 USD", "to_hit": -5, "material": [ "wool" ], "symbol": "[", @@ -1594,7 +1594,7 @@ "description": "Tough cloth gloves made of layered wool quilting, thin enough to wear under metal gauntlets. They help to keep your hands safe during a fight.", "weight": "260 g", "volume": "250 ml", - "price_postapoc": 1000, + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "wool" ], "symbol": "[", @@ -1648,7 +1648,7 @@ "description": "A thick cloth greatcoat intended to be worn as standalone armor, as it's a little too thick to comfortably add chainmail or a cuirass on top. Made of thickly layered wool quilting, this will protect you from almost everything, but it's very heavy and warm. The sleeves are a bit thinner for flexibility and it drapes below your legs, providing additional protection there.", "weight": "10140 g", "volume": "7500 ml", - "price_postapoc": 8500, + "price_postapoc": "85 USD", "to_hit": -5, "material": [ "wool" ], "symbol": "[", @@ -1721,7 +1721,7 @@ "description": "A thick cloth greatcoat intended to be worn as standalone armor, as it's a little too thick to comfortably add chainmail or a cuirass on top. Made of thickly layered wool quilting, this will protect you from almost everything, but it's very heavy and warm. The sleeves are a lot thinner for flexibility and it drapes below your legs, providing additional protection there.", "weight": "10488 g", "volume": "7500 ml", - "price_postapoc": 7500, + "price_postapoc": "75 USD", "to_hit": -5, "material": [ "wool" ], "symbol": "[", @@ -1794,7 +1794,7 @@ "description": "A thick cloth surcoat intended to be worn as standalone armor, as it's a little too thick to comfortably add chainmail or a cuirass on top. Made of thickly layered wool quilting, this will protect you from almost everything, but it's very heavy and warm. It drapes below your legs, providing additional protection there, and it lacks sleeves entirely.", "weight": "7800 g", "volume": "6000 ml", - "price_postapoc": 5000, + "price_postapoc": "50 USD", "to_hit": -5, "material": [ "wool" ], "symbol": "[", @@ -1853,7 +1853,7 @@ "description": "Tough, extremely thick cloth pants worn on their own alongside a gambeson. These are made of thickly layered wool quilting offering very solid protection, though they're too thick to easily add metal armor on top and are both stuffy and restrictive.", "weight": "4680 g", "volume": "3750 ml", - "price_postapoc": 5000, + "price_postapoc": "50 USD", "to_hit": -5, "material": [ "wool" ], "symbol": "[", @@ -1904,7 +1904,7 @@ "description": "Very thick wool gauntlets worn in lieu of metal or leather armor. Though they make it hard to do anything other than swing a weapon, and they're very warm, they offer excellent protection.", "weight": "585 g", "volume": "500 ml", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "wool" ], "symbol": "[", diff --git a/data/json/items/armor/gloves.json b/data/json/items/armor/gloves.json index 013829ca552cd..5563dd578f26a 100644 --- a/data/json/items/armor/gloves.json +++ b/data/json/items/armor/gloves.json @@ -6,8 +6,8 @@ "description": "A pair of white beekeeping gloves made out of smooth leather.", "weight": "120 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -26,8 +26,8 @@ "description": "A pair of big, red, 8 oz. boxing gloves made from thick leather.", "weight": "453 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -47,8 +47,8 @@ "description": "A pair of customized chainmail gloves that fully enclose the hands. The metal shows signs of rust and corrosion.", "weight": "957 g", "volume": "500 ml", - "price": 5012, - "price_postapoc": 2500, + "price": "50 USD 12 cent", + "price_postapoc": "25 USD", "to_hit": -1, "material": [ "budget_steel_chain" ], "symbol": "[", @@ -72,8 +72,8 @@ "description": "A pair of customized steel chainmail gloves that fully enclose the hands.", "weight": "957 g", "volume": "500 ml", - "price": 5012, - "price_postapoc": 2500, + "price": "50 USD 12 cent", + "price_postapoc": "25 USD", "to_hit": -1, "material": [ "lc_steel_chain" ], "symbol": "[", @@ -206,8 +206,8 @@ "description": "A heavy pair of gloves, used by firefighters and metalworkers for heat protection.", "weight": "572 g", "volume": "1 L", - "price": 8200, - "price_postapoc": 500, + "price": "82 USD", + "price_postapoc": "5 USD", "to_hit": 2, "material": [ "leather", "nomex" ], "symbol": "[", @@ -227,8 +227,8 @@ "description": "A pair of gauntlets made from the exoskeletons of insects.", "weight": "760 g", "volume": "1750 ml", - "price": 38000, - "price_postapoc": 1250, + "price": "380 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -2, "material": [ "chitin" ], "symbol": "[", @@ -276,7 +276,7 @@ "name": { "str": "pair of biosilicified chitin gauntlets", "str_pl": "pairs of biosilicified chitin gauntlets" }, "description": "A pair of gauntlets crafted from the carefully cleaned and pruned biosilicified exoskeletons of acidic ants. Acid-resistant but brittle.", "material": [ "acidchitin" ], - "price_postapoc": 1750, + "price_postapoc": "17 USD 50 cent", "relative": { "melee_damage": { "bash": 1 } } }, { @@ -302,8 +302,8 @@ "description": "A pair of well-made black stretch vinyl gloves, with black steel claws connected to the fingers. Used in BDSM performances or as part of a costume.", "weight": "160 g", "volume": "270 ml", - "price": 6000, - "price_postapoc": 140, + "price": "60 USD", + "price_postapoc": "1 USD 40 cent", "material": [ "plastic" ], "symbol": "[", "looks_like": "gloves_medical", @@ -321,8 +321,8 @@ "description": "A single suede glove with a sturdy cotton wrist, padded back, and well-fitting fingers.", "weight": "175 g", "volume": "250 ml", - "price": 6400, - "price_postapoc": 250, + "price": "64 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "leather", "cotton" ], "symbol": "[", @@ -340,8 +340,8 @@ "description": "A single suede glove with a sturdy cotton wrist, padded back, and well-fitting fingers. This one is left-handed.", "weight": "175 g", "volume": "250 ml", - "price": 6400, - "price_postapoc": 250, + "price": "64 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "leather", "cotton" ], "symbol": "[", @@ -360,8 +360,8 @@ "description": "A pair of heavy fingerless leather gloves.", "weight": "350 g", "volume": "750 ml", - "price": 3400, - "price_postapoc": 750, + "price": "34 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -2, "material": [ "leather" ], "symbol": "[", @@ -417,8 +417,8 @@ "description": "A pair of disposable plastic bags, adapted to be used as gloves.", "weight": "6 g", "volume": "250 ml", - "price": 50, - "price_postapoc": 10, + "price": "50 cent", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": "[", @@ -435,8 +435,8 @@ "description": "A pair of leather gloves without fingers.", "weight": "100 g", "volume": "250 ml", - "price": 1400, - "price_postapoc": 100, + "price": "14 USD", + "price_postapoc": "1 USD", "to_hit": 2, "material": [ "leather" ], "symbol": "[", @@ -467,8 +467,8 @@ "description": "A pair of leather gloves without fingers. These have been crudely reinforced with steel guards across the back.", "weight": "380 g", "volume": "500 ml", - "price": 9000, - "price_postapoc": 250, + "price": "90 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 2, "material": [ "steel", "leather" ], "symbol": "[", @@ -519,8 +519,8 @@ "//": "The weight assumes four small sheets of about 10cm x 10cm.", "weight": "480 g", "volume": "1250 ml", - "price": 400, - "price_postapoc": 100, + "price": "4 USD", + "price_postapoc": "1 USD", "to_hit": -2, "symbol": "[", "looks_like": "lc_mitten_gaunt", @@ -567,8 +567,8 @@ "description": "A pair of warm fur gloves.", "weight": "410 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "fur" ], "symbol": "[", @@ -602,8 +602,8 @@ "description": "A pair of warm faux fur gloves.", "weight": "410 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "faux_fur" ], "symbol": "[", @@ -637,8 +637,8 @@ "description": "A single white glove covered with hundreds of rhinestones.", "weight": "59 g", "volume": "250 ml", - "price": 50000, - "price_postapoc": 50, + "price": "500 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -663,8 +663,8 @@ "description": "A thin pair of black leather gloves.", "weight": "160 g", "volume": "250 ml", - "price": 4500, - "price_postapoc": 150, + "price": "45 USD", + "price_postapoc": "1 USD 50 cent", "to_hit": 2, "material": [ "leather" ], "symbol": "[", @@ -701,8 +701,8 @@ "//": "10 oz.", "weight": "150 g", "volume": "400 ml", - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "denim" ], "symbol": "[", @@ -720,7 +720,7 @@ "description": "A pair of fingerless denim gloves. Much less cumbersome this way, but not as protective or warm", "weight": "122 g", "volume": "270 ml", - "price_postapoc": 350, + "price_postapoc": "3 USD 50 cent", "to_hit": 1, "material": [ "denim" ], "symbol": "[", @@ -750,8 +750,8 @@ "description": "A pair of cotton gloves.", "weight": "118 g", "volume": "250 ml", - "price": 1100, - "price_postapoc": 250, + "price": "11 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -786,8 +786,8 @@ "description": "A pair of thin cotton gloves. Often used as a liner beneath other gloves.", "weight": "63 g", "volume": "250 ml", - "price": 600, - "price_postapoc": 50, + "price": "6 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -822,8 +822,8 @@ "description": "A pair of thin latex gloves, designed to limit the spread of disease. Too fragile to protect you from much else.", "weight": "3 g", "volume": "5 ml", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "[", "looks_like": "gloves_light", @@ -840,8 +840,8 @@ "description": "A pair of black cotton gloves.", "weight": "118 g", "volume": "250 ml", - "price": 1100, - "price_postapoc": 250, + "price": "11 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -860,8 +860,8 @@ "description": "An extremely heavy set of armor-plated leather gloves.", "weight": "980 g", "volume": "1500 ml", - "price": 40000, - "price_postapoc": 3000, + "price": "400 USD", + "price_postapoc": "30 USD", "to_hit": -2, "material": [ "iron", "leather" ], "symbol": "[", @@ -933,8 +933,8 @@ "description": "A pair of rubber gloves, often used while cleaning with caustic materials.", "weight": "20 g", "volume": "250 ml", - "price": 1300, - "price_postapoc": 50, + "price": "13 USD", + "price_postapoc": "50 cent", "to_hit": 2, "material": [ "rubber" ], "symbol": "[", @@ -954,8 +954,8 @@ "description": "A pair of flame- and cut-resistant aramid fabric gloves. Commonly used by police and military units.", "weight": "220 g", "volume": "500 ml", - "price": 5200, - "price_postapoc": 1500, + "price": "52 USD", + "price_postapoc": "15 USD", "to_hit": 2, "material": [ "kevlar", "leather" ], "symbol": "[", @@ -974,8 +974,8 @@ "description": "A pair of padded cotton gloves. Toasty!", "weight": "218 g", "volume": "750 ml", - "price": 6500, - "price_postapoc": 50, + "price": "65 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -992,8 +992,8 @@ "description": "A warm pair of wool gloves.", "weight": "100 g", "volume": "250 ml", - "price": 3500, - "price_postapoc": 50, + "price": "35 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "wool" ], "symbol": "[", @@ -1027,8 +1027,8 @@ "description": "A tough pair of gloves, for tough everyday work.", "weight": "195 g", "volume": "250 ml", - "price": 4500, - "price_postapoc": 100, + "price": "45 USD", + "price_postapoc": "1 USD", "to_hit": 2, "material": [ "leather", "cotton" ], "symbol": "[", @@ -1048,8 +1048,8 @@ "description": "A pair of cut-resistant gloves, useful for butchery or routine work with bladed objects.", "weight": "240 g", "volume": "250 ml", - "price": 9000, - "price_postapoc": 100, + "price": "90 USD", + "price_postapoc": "1 USD", "to_hit": 2, "material": [ "kevlar" ], "symbol": "[", @@ -1068,8 +1068,8 @@ "description": "Long pieces of cloth that are meant to be wrapped around your hands. They provide small amounts of protection while punching and performing other general mischief.", "weight": "100 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "to_hit": 2, "material": [ "cotton" ], "symbol": "[", @@ -1087,8 +1087,8 @@ "description": "Pieces of animal pelt that are meant to be wrapped around your hands. They provide small amounts of protection while punching and performing other general mischief.", "weight": "250 g", "volume": "500 ml", - "price": 700, - "price_postapoc": 10, + "price": "7 USD", + "price_postapoc": "10 cent", "to_hit": 2, "material": [ "fur" ], "symbol": "[", @@ -1106,8 +1106,8 @@ "description": "Pieces of leather that are meant to be wrapped around your hands. They provide small amounts of protection while punching and performing other general mischief.", "weight": "200 g", "volume": "500 ml", - "price": 525, - "price_postapoc": 10, + "price": "5 USD 25 cent", + "price_postapoc": "10 cent", "to_hit": 2, "material": [ "leather" ], "symbol": "[", @@ -1125,8 +1125,8 @@ "description": "Long pieces of wool that are meant to be wrapped around your hands. They provide small amounts of protection while punching and performing other general mischief.", "weight": "100 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "to_hit": 2, "material": [ "wool" ], "symbol": "[", @@ -1144,8 +1144,8 @@ "description": "Long white costume gloves.", "weight": "400 g", "volume": "1 L", - "price": 1100, - "price_postapoc": 100, + "price": "11 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -1172,8 +1172,8 @@ "description": "A pair of warm but cumbersome mittens.", "weight": "364 g", "volume": "750 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "wool" ], "symbol": "[", @@ -1191,8 +1191,8 @@ "description": "A snug-fitting pair of gloves made from thin and lightweight Nomex fabric.", "weight": "190 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "to_hit": -5, "material": [ "nomex" ], "symbol": "[", @@ -1211,8 +1211,8 @@ "description": "A pair of red gloves with white faux fur trim. Keeps your hands warm and your holiday spirit bright.", "weight": "400 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "cotton", "faux_fur" ], "symbol": "[", @@ -1229,8 +1229,8 @@ "description": "A pair of improvised gloves made from socks with holes poked through them.", "weight": "32 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "mittens", @@ -1294,8 +1294,8 @@ "description": "Long cotton tubes sized to fit over tentacles and help protect them from the cold.", "weight": "360 g", "volume": "1500 ml", - "price": 400, - "price_postapoc": 250, + "price": "4 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "arm_warmers", @@ -1312,8 +1312,8 @@ "description": "A pair of padded gloves. Favored by the military.", "weight": "218 g", "volume": "750 ml", - "price": 8125, - "price_postapoc": 250, + "price": "81 USD 25 cent", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -1354,8 +1354,8 @@ "description": "A thin pair of black leather golfing gloves.", "weight": "150 g", "volume": "250 ml", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "to_hit": 2, "material": [ "leather" ], "symbol": "[", @@ -1382,8 +1382,8 @@ "description": "A pair of fragmentation resistant pads for wearing over the backs of one's hands, providing protection from shrapnel in case things go wrong. Sold as an accessory for explosive ordnance disposal suits, but not often used due to the difficulty in armoring the entire hand and retaining dexterity.", "weight": "610 g", "volume": "1000 ml", - "price": 70000, - "price_postapoc": 8000, + "price": "700 USD", + "price_postapoc": "80 USD", "warmth": 10, "material": [ "kevlar_layered" ], "symbol": "[", @@ -1407,8 +1407,8 @@ "description": "A pair of leather gloves with chainmail protecting the fingers and palm, and plating over the back of the hand and wrist.", "weight": "750 g", "volume": "750 ml", - "price": 40000, - "price_postapoc": 3000, + "price": "400 USD", + "price_postapoc": "30 USD", "to_hit": -2, "symbol": "[", "looks_like": "fire_gauntlets", @@ -1527,8 +1527,8 @@ "description": "A pair of leather mittens with chainmail protecting the fingers and palm, and steel plating over the back of the hand, fingers, and wrist for additional protection.", "weight": "1250 g", "volume": "1250 ml", - "price": 40000, - "price_postapoc": 3000, + "price": "400 USD", + "price_postapoc": "30 USD", "to_hit": -2, "symbol": "[", "looks_like": "fire_gauntlets", @@ -1647,8 +1647,8 @@ "description": "A pair of fingerless gloves with hard plastic reinforcing the backs of the hands to protect against BB pellets and other light projectiles.", "weight": "200 g", "volume": "300 ml", - "price": 4000, - "price_postapoc": 1000, + "price": "40 USD", + "price_postapoc": "10 USD", "to_hit": 2, "material": [ "leather", "thermo_resin" ], "symbol": "[", diff --git a/data/json/items/armor/hats.json b/data/json/items/armor/hats.json index c91b8b04acec8..6ae56f80ea2d5 100644 --- a/data/json/items/armor/hats.json +++ b/data/json/items/armor/hats.json @@ -6,8 +6,8 @@ "description": "These may not be the Great Plains, but you can still be the Boss with this high-crowned, wide-brimmed hat.", "weight": "410 g", "volume": "2500 ml", - "price": 17900, - "price_postapoc": 250, + "price": "179 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "cowboy_hat", @@ -33,8 +33,8 @@ "description": "A cotton bandana, worn over the head.", "weight": "42 g", "volume": "250 ml", - "price": 600, - "price_postapoc": 10, + "price": "6 USD", + "price_postapoc": "10 cent", "use_action": { "type": "transform", "msg": "You adjust the %s to cover your mouth.", @@ -64,8 +64,8 @@ "description": "A soft cotton hat. Commonly worn by armed forces and existentialists.", "weight": "120 g", "volume": "250 ml", - "price": 1200, - "price_postapoc": 50, + "price": "12 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_cotton", @@ -89,8 +89,8 @@ "description": "A soft wool hat. Commonly worn by armed forces and existentialists.", "weight": "160 g", "volume": "250 ml", - "price": 1500, - "price_postapoc": 50, + "price": "15 USD", + "price_postapoc": "50 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "beret", @@ -114,8 +114,8 @@ "description": "The only hat for a made man. Look like a real good fella while laughing in the face of your foes!", "weight": "213 g", "volume": "1250 ml", - "price": 4500, - "price_postapoc": 50, + "price": "45 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_cotton", @@ -140,8 +140,8 @@ "description": "A wreath headdress made from plant material woven into a ring.", "weight": "46 g", "volume": "150 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "dry_plant" ], "symbol": "[", "looks_like": "hat_cotton", @@ -179,8 +179,8 @@ ], "weight": "390 g", "volume": "2 L", - "price": 9500, - "price_postapoc": 250, + "price": "95 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "bowhat", @@ -206,8 +206,8 @@ "color": "blue", "name": { "str": "drinking hat" }, "description": "An improvised harness that can be worn over other headgear or by itself, made from two small liquid containers, a rubber hose, a bundle of steel wire, and some cordage. A convenient and simple device for hands-free drinking, though it's not watertight and would spill if you put it into your backpack.", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton", "plastic" ], "weight": "733 g", "volume": "1500 ml", @@ -225,8 +225,8 @@ "description": "A high, black cap with a very narrow top. Traditionally worn by Shinto priests.", "weight": "120 g", "volume": "500 ml", - "price": 7000, - "price_postapoc": 50, + "price": "70 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "bowhat", @@ -250,8 +250,8 @@ "description": "Also known as a utility cover or utility cap, this is an eight pointed hat with a baseball-style visor at the front. Commonly worn by Marines and sailors, this hat is the standard headwear of both the United States Marine Corps and Navy.", "weight": "92 g", "volume": "500 ml", - "price": 1699, - "price_postapoc": 50, + "price": "16 USD 99 cent", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "cowboy_hat", @@ -276,8 +276,8 @@ "description": "A simple round cap in a camouflage pattern. Often used by the military when helmets aren't needed. Its brim helps keep the sun out of your eyes.", "weight": "92 g", "volume": "500 ml", - "price": 1500, - "price_postapoc": 80, + "price": "15 USD", + "price_postapoc": "80 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "cowboy_hat", @@ -302,8 +302,8 @@ "description": "Also called a \"bucket hat.\" Often used in the military. Its wide brim helps keep the sun out of your eyes.", "weight": "92 g", "volume": "500 ml", - "price": 1200, - "price_postapoc": 50, + "price": "12 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "cowboy_hat", @@ -329,8 +329,8 @@ "description": "A cotton cap with a rounded crown, an adjustable strap, and a long visor. It shields your eyes from the sun and provides a little bit of warmth. Traditionally worn by baseball players.", "weight": "88 g", "volume": "500 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_cotton", @@ -471,8 +471,8 @@ "description": "A traditional chef's hat, standing tall and proud against the vulgarities of the world.", "weight": "140 g", "volume": "500 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_cotton", @@ -554,8 +554,8 @@ "description": "A snug-fitting cotton hat. Quite warm.", "weight": "78 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_ball", @@ -580,8 +580,8 @@ "description": "A hat made from the pelts of animals. Extremely warm.", "weight": "246 g", "volume": "750 ml", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "material": [ "fur" ], "symbol": "[", "looks_like": "hat_knit", @@ -616,8 +616,8 @@ "weight": "430 g", "volume": "2500 ml", "longest_side": "28 cm", - "price": 1200, - "price_postapoc": 250, + "price": "12 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "symbol": "[", "looks_like": "hat_ball", @@ -830,8 +830,8 @@ "weight": "470 g", "volume": "2750 ml", "longest_side": "28 cm", - "price": 1200, - "price_postapoc": 300, + "price": "12 USD", + "price_postapoc": "3 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "hat_hard", @@ -1013,8 +1013,8 @@ "description": "A red plaid hunting cap with ear flaps. Notably warm.", "weight": "206 g", "volume": "750 ml", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "hat_ball", @@ -1039,8 +1039,8 @@ "description": "A snug-fitting wool hat. Very warm.", "weight": "120 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "wool" ], "symbol": "[", "looks_like": "hat_cotton", @@ -1065,8 +1065,8 @@ "description": "A slouching wool cap with a short front brim, traditionally associated with newspaper delivery boys. Quite warm.", "weight": "100 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "hat_ball", @@ -1091,8 +1091,8 @@ "description": "Padding over your ears, kept in place by some string. Blocks incoming sounds.", "weight": "72 g", "volume": "500 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_cotton", @@ -1118,8 +1118,8 @@ "description": "An orange felt sombrero with traditional white and yellow hand stitching. The wide brim keeps the sun out of your eyes, and a thin strap hooks around your chin.", "weight": "140 g", "volume": "3500 ml", - "price": 5500, - "price_postapoc": 100, + "price": "55 USD", + "price_postapoc": "1 USD", "material": [ "wool" ], "symbol": "[", "looks_like": "cowboy_hat", @@ -1144,8 +1144,8 @@ "description": "A thin, rounded skullcap. A traditional headdress in Judaism.", "weight": "80 g", "volume": "250 ml", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_cotton", @@ -1163,8 +1163,8 @@ "description": "A small, crimson skullcap. Traditionally worn by Catholic priests.", "weight": "100 g", "volume": "300 ml", - "price": 10000, - "price_postapoc": 50, + "price": "100 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_cotton", @@ -1182,8 +1182,8 @@ "description": "A brimless, short and rounded cap.", "weight": "88 g", "volume": "500 ml", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_cotton", @@ -1207,8 +1207,8 @@ "description": "A frilly white headpiece.", "weight": "10 g", "volume": "250 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_cotton", @@ -1248,8 +1248,8 @@ "description": "A flat-topped hat with circular indent and a narrow brim. Most popular in the 40s and 50s, still common among those in the mod scene, hipsters, and people named Heisenberg.", "weight": "213 g", "volume": "1250 ml", - "price": 5500, - "price_postapoc": 50, + "price": "55 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "bowhat", @@ -1274,8 +1274,8 @@ "description": "A traditional mail carrier's cap, with the US postal service logo embroidered on the front above the plastic brim. A symbol of a bygone world.", "weight": "90 g", "volume": "750 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton", "plastic" ], "symbol": "[", "looks_like": "hat_ball", @@ -1300,8 +1300,8 @@ "description": "A red hat with white faux fur trim, commonly used by bearded men on Christmas.", "weight": "200 g", "volume": "500 ml", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "material": [ "cotton", "faux_fur" ], "symbol": "[", "looks_like": "hat_knit", @@ -1326,8 +1326,8 @@ "description": "A hat woven out of straw. Its brim helps keep the sun out of your eyes.", "weight": "50 g", "volume": "750 ml", - "price": 300, - "price_postapoc": 100, + "price": "3 USD", + "price_postapoc": "1 USD", "material": [ "paper" ], "symbol": "[", "looks_like": "cowboy_hat", @@ -1353,8 +1353,8 @@ "description": "A sheet of aluminum foil that has been molded into a form-fitting hat. Perfect for protecting yourself from the government, Illuminati, aliens, and THEM.", "weight": "16 g", "volume": "250 ml", - "price": 16, - "price_postapoc": 10, + "price": "16 cent", + "price_postapoc": "10 cent", "material": [ "aluminum" ], "symbol": "[", "looks_like": "hat_cotton", @@ -1378,8 +1378,8 @@ "description": "The only hat for a gentleman. Look exquisite while laughing in the face of danger!", "weight": "233 g", "volume": "2500 ml", - "price": 19500, - "price_postapoc": 250, + "price": "195 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "porkpie", @@ -1404,8 +1404,8 @@ "description": "A classic design, the \"tricorne\", or three-cornered hat, simply pins a large and floppy brim out of the way, though this example adds well-embroidered designs and is oiled against water. Whether you're the \"guvnah\" of a settlement, or the captain of a post-apocalyptic crew, this is the hat for you.", "weight": "490 g", "volume": "2 L", - "price": 2500, - "price_postapoc": 750, + "price": "25 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "bowhat", @@ -1430,8 +1430,8 @@ "description": "Cloth wound around the head, worn by people of many cultures worldwide. Some historical examples could be huge and ostentatious, but this one is a very simple design.", "weight": "105 g", "volume": "250 ml", - "price": 85, - "price_postapoc": 10, + "price": "85 cent", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -1458,8 +1458,8 @@ "description": "You're not actually sure if this is called a golf cap, but it's the stereotypical cap golfers wear.", "weight": "85 g", "volume": "500 ml", - "price": 2200, - "price_postapoc": 50, + "price": "22 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_ball", @@ -1484,8 +1484,8 @@ "description": "A blue pointed hat with stars stitched into it. Wearing it makes you feel like a powerful wizard.", "weight": "300 g", "volume": "2 L", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "^", "color": "light_blue", @@ -1509,8 +1509,8 @@ "description": "A pointed hat suitable for a witch.", "weight": "40 g", "volume": "2 L", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "^", "color": "dark_gray", diff --git a/data/json/items/armor/head_attachments.json b/data/json/items/armor/head_attachments.json index 49630ebf105e8..ee0ff4f118b51 100644 --- a/data/json/items/armor/head_attachments.json +++ b/data/json/items/armor/head_attachments.json @@ -7,8 +7,8 @@ "description": "A pair of ear muffs attachable to a hard hat or helmet to reduce noise exposures to safe levels. Activate to put ear muffs into a working position, blocking most sounds.", "weight": "290 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 80, + "price": "10 USD", + "price_postapoc": "80 cent", "material": [ "thermo_resin", "cotton" ], "symbol": "[", "color": "yellow", @@ -54,8 +54,8 @@ "description": "A ballistic jaw guard designed to be attached on a military helmet, but easily adjustable to helmets with any kind of rail system installed.", "weight": "250 g", "volume": "250 ml", - "price": 6000, - "price_postapoc": 250, + "price": "60 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "thermo_resin" ], "symbol": "[", "color": "dark_gray", @@ -71,8 +71,8 @@ "description": "A plastic jaw guard designed to be strapped to any common hard hat or helmet, it was probably part of some costume before the world ended.", "weight": "250 g", "volume": "200 ml", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "material": [ "plastic" ], "symbol": "[", "color": "light_blue", @@ -88,8 +88,8 @@ "description": "A common plastic chin guard designed to be attached to the straps of any common hard hat or helmet.", "weight": "5 g", "volume": "10 ml", - "price": 100, - "price_postapoc": 1, + "price": "1 USD", + "price_postapoc": "1 cent", "material": [ "plastic" ], "symbol": "[", "color": "light_gray", @@ -105,8 +105,8 @@ "description": "A counterweight pouch attachable to the back of a hard hat or helmet to balance the weight on your head. You can store batteries or some other very small items in it.", "weight": "150 g", "volume": "150 ml", - "price": 400, - "price_postapoc": 10, + "price": "4 USD", + "price_postapoc": "10 cent", "material": [ "nylon" ], "symbol": "[", "color": "green", @@ -131,8 +131,8 @@ "description": "A common sun shield intended to be put over a hard hat to protect the user from the sun.", "weight": "98 g", "volume": "250 ml", - "price": 200, - "price_postapoc": 10, + "price": "2 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "[", "color": "light_gray", @@ -146,8 +146,8 @@ "description": "A common shield visor intended to be attached on a hard hat or helmet.", "weight": "40 g", "volume": "150 ml", - "price": 600, - "price_postapoc": 50, + "price": "6 USD", + "price_postapoc": "50 cent", "material": [ "plastic" ], "symbol": "[", "color": "light_blue", @@ -163,8 +163,8 @@ "description": "A thermoplastic face shield with a mounting bracket intended to be attached over a hard hat or helmet.", "weight": "170 g", "volume": "250 ml", - "price": 800, - "price_postapoc": 100, + "price": "8 USD", + "price_postapoc": "1 USD", "material": [ "thermo_resin" ], "symbol": "[", "color": "light_blue", @@ -180,8 +180,8 @@ "description": "A thick polycarbonate and plexiglass face shield with a mounting bracket intended to be attached to a ballistic helmet for protection from blast and fragmentation in 'non-permissive environments'.", "weight": "229 g", "volume": "250 ml", - "price": 83600, - "price_postapoc": 2400, + "price": "836 USD", + "price_postapoc": "24 USD", "material": [ "thermo_resin" ], "symbol": "[", "color": "light_gray", @@ -197,8 +197,8 @@ "description": "A plastic face shield with a mounting bracket intended to be attached over a hard hat or helmet. It doesn't protects you as much as one made from thermoplastic, but it's cheaper and more common.", "weight": "120 g", "volume": "250 ml", - "price": 650, - "price_postapoc": 50, + "price": "6 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "plastic" ], "symbol": "[", "color": "light_blue", @@ -214,8 +214,8 @@ "description": "A common nape protector intended to be attached on a hard hat or helmet to protect against the sun and dust.", "weight": "15 g", "volume": "150 ml", - "price": 50, - "price_postapoc": 10, + "price": "50 cent", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "color": "cyan", @@ -239,8 +239,8 @@ "description": "A common mesh nape protector intended to be attached on a hard hat or helmet to protect against the sun while letting the cold wind refresh your nape.", "weight": "10 g", "volume": "100 ml", - "price": 50, - "price_postapoc": 10, + "price": "50 cent", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "color": "yellow", @@ -263,8 +263,8 @@ "description": "A custom-made Kevlar strengthened nape protector intended to be attached on a hard hat or helmet to protect your nape against cuts and slashing attacks.", "weight": "40 g", "volume": "500 ml", - "price": 6500, - "price_postapoc": 100, + "price": "65 USD", + "price_postapoc": "1 USD", "material": [ "cotton", "kevlar" ], "symbol": "[", "color": "dark_gray", @@ -291,8 +291,8 @@ "description": "A wide chainmail ring designed to attach to a cap helmet, hanging down to extend protection to the face and neck.", "weight": "1000 g", "volume": "300 ml", - "price": 5012, - "price_postapoc": 1000, + "price": "50 USD 12 cent", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "lc_steel_chain" ], "symbol": "[", @@ -432,8 +432,8 @@ "description": "A wide chainmail draping designed to attach to a cap helmet, hanging down to extend protection to the face, neck and shoulders.", "weight": "1300 g", "volume": "450 ml", - "price": 5012, - "price_postapoc": 1300, + "price": "50 USD 12 cent", + "price_postapoc": "13 USD", "to_hit": -1, "material": [ "lc_steel_chain" ], "symbol": "[", @@ -572,8 +572,8 @@ "description": "A metal face mask designed to attach to a cap helmet to protect the lower half. This is a crude, dull facsimile of the original masterpieces made of mild steel.", "weight": "2000 g", "volume": "300 ml", - "price": 5012, - "price_postapoc": 1300, + "price": "50 USD 12 cent", + "price_postapoc": "13 USD", "to_hit": -1, "material": [ "lc_steel" ], "symbol": "[", diff --git a/data/json/items/armor/helmets.json b/data/json/items/armor/helmets.json index a42ea9e93cb6f..f965b0ca29d96 100644 --- a/data/json/items/armor/helmets.json +++ b/data/json/items/armor/helmets.json @@ -7,8 +7,8 @@ "description": "A helmet made from a soup pot. It's not very good protection, but it's better than nothing.", "weight": "760 g", "volume": "2 L", - "price": 4500, - "price_postapoc": 50, + "price": "45 USD", + "price_postapoc": "50 cent", "material": [ "iron" ], "symbol": "[", "looks_like": "helmet_plate", @@ -37,8 +37,8 @@ "description": "An enclosed helmet made from a stock pot with a 'T' crudely carved into the front and a blanket stuffed inside to cushion it. There are strings tied to the handles to help fasten it to your body, but it's extremely limiting and smothering.", "weight": "3580 g", "volume": "13 L", - "price": 4500, - "price_postapoc": 50, + "price": "45 USD", + "price_postapoc": "50 cent", "material": [ "mc_steel", "aluminum" ], "symbol": "[", "looks_like": "helmet_plate", @@ -112,8 +112,8 @@ "description": "Lightweight sports headgear designed to protect the head while sparring.", "weight": "500 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "plastic_pad", "leather" ], "symbol": "[", @@ -164,8 +164,8 @@ "weight": "1383 g", "volume": "1750 ml", "longest_side": "28 cm", - "price": 15000, - "price_postapoc": 1500, + "price": "150 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "kevlar_rigid", "plastic" ], "symbol": "[", @@ -264,9 +264,9 @@ "weight": "1400 g", "volume": "1900 ml", "longest_side": "28 cm", - "price": 20000, + "price": "200 USD", "//": "assuming this is an antique and not a cheap replica", - "price_postapoc": 1200, + "price_postapoc": "12 USD", "to_hit": -1, "material": [ "hc_steel", "plastic", "leather" ], "repairs_with": [ "hc_steel" ], @@ -312,8 +312,8 @@ "category": "armor", "name": { "str": "soviet tanker helmet" }, "description": "A Soviet era tanker helmet. It's distinctive foam pads are meant to protect a tank driver from bumps against the cramped interior.", - "price": 10000, - "price_postapoc": 1200, + "price": "100 USD", + "price_postapoc": "12 USD", "weight": "950 g", "volume": "1200 ml", "symbol": "[", @@ -344,8 +344,8 @@ "description": "An all-encompassing black helmet that covers your entire face and neck, providing excellent protection from all sorts of damage.", "weight": "1594 g", "volume": "2250 ml", - "price": 25000, - "price_postapoc": 2500, + "price": "250 USD", + "price_postapoc": "25 USD", "to_hit": -1, "material": [ "kevlar_rigid", "plastic" ], "symbol": "[", @@ -371,8 +371,8 @@ "description": "A lightweight black helmet that provides excellent protection from all sorts of damage. It has a military rail system for attachments.", "weight": "1180 g", "volume": "1850 ml", - "price": 20000, - "price_postapoc": 2000, + "price": "200 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "kevlar_rigid", "plastic" ], "symbol": "[", @@ -470,8 +470,8 @@ "weight": "1500 g", "volume": "1250 ml", "longest_side": "30 cm", - "price": 24000, - "price_postapoc": 500, + "price": "240 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "plastic", "nomex" ], "symbol": "[", @@ -510,8 +510,8 @@ "description": "A hard plastic helmet that covers the head and ears. Designed to protect against a baseball to the head.", "weight": "615 g", "volume": "1750 ml", - "price": 3100, - "price_postapoc": 250, + "price": "31 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "plastic", "plastic_pad" ], "symbol": "[", @@ -554,8 +554,8 @@ "description": "A medieval helmet that provides excellent protection for the head, with a Y shaped opening for the face.", "weight": "1175 g", "volume": "2500 ml", - "price": 30000, - "price_postapoc": 4000, + "price": "300 USD", + "price_postapoc": "40 USD", "material": [ "steel", "leather" ], "symbol": "[", "looks_like": "helmet_plate", @@ -620,8 +620,8 @@ "weight": "400 g", "volume": "1500 ml", "longest_side": "26 cm", - "price": 17000, - "price_postapoc": 250, + "price": "170 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic", "plastic_pad" ], "symbol": "[", "looks_like": "hat_hard", @@ -682,8 +682,8 @@ "description": "A helmet made from the exoskeletons of insects. Covers the entire head; very light and durable.", "weight": "1447 g", "volume": "2500 ml", - "price": 38000, - "price_postapoc": 1250, + "price": "380 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -2, "material": [ "chitin" ], "symbol": "[", @@ -743,8 +743,8 @@ "description": "A conical iron helm with additional protection for the neck, associated with the Mongol Empire.", "weight": "1425 g", "volume": "3500 ml", - "price": 40000, - "price_postapoc": 3500, + "price": "400 USD", + "price_postapoc": "35 USD", "material": [ "iron", "fur" ], "symbol": "[", "looks_like": "helmet_barbute", @@ -788,7 +788,7 @@ "type": "ARMOR", "name": { "str": "biosilicified chitin helmet" }, "description": "A helmet crafted from the carefully cleaned and pruned biosilicified exoskeletons of acidic ants. Acid-resistant but brittle.", - "price_postapoc": 1750, + "price_postapoc": "17 USD 50 cent", "material": [ "acidchitin" ], "relative": { "melee_damage": { "bash": 1 } } }, @@ -817,8 +817,8 @@ "description": "A heavy polycarbonate helmet normally worn by football players. It comes with a visor to protect the eyes.", "weight": "1360 g", "volume": "2250 ml", - "price": 19800, - "price_postapoc": 250, + "price": "198 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "thermo_resin", "plastic_pad" ], "symbol": "[", "looks_like": "helmet_motor", @@ -871,8 +871,8 @@ "description": "An Imperial Roman helmet, with distinct projections protecting the sides of the head.", "weight": "1310 g", "volume": "2500 ml", - "price": 35000, - "price_postapoc": 3500, + "price": "350 USD", + "price_postapoc": "35 USD", "material": [ "iron", "leather" ], "symbol": "[", "looks_like": "helmet_barbute", @@ -925,8 +925,8 @@ "description": "A medieval Japanese helmet with a scowling face mask that provides excellent protection to the entire head and face.", "weight": "1625 g", "volume": "3500 ml", - "price": 50000, - "price_postapoc": 5000, + "price": "500 USD", + "price_postapoc": "50 USD", "material": [ "iron", "leather" ], "symbol": "[", "looks_like": "helmet_barbute", @@ -991,8 +991,8 @@ "description": "A thick leather helmet that provides excellent protection for the head.", "weight": "658 g", "volume": "2 L", - "price": 14000, - "price_postapoc": 2000, + "price": "140 USD", + "price_postapoc": "20 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "hat_hard", @@ -1034,8 +1034,8 @@ "description": "The top part of a large wolf skull, equipped with leather straps to secure it on your head. Every inch of the skull has been carved with a maze of fine, intertwined symbols that make your eyes water.", "weight": "1 kg", "volume": "4 L", - "price": 1400, - "price_postapoc": 200, + "price": "14 USD", + "price_postapoc": "2 USD", "material": [ "leather", "bone" ], "symbol": "[", "color": "dark_gray", @@ -1063,8 +1063,8 @@ "description": "A cloth liner worn inside a helmet to help keep your head warm in cold climates.", "weight": "110 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -1085,8 +1085,8 @@ "weight": "1587 g", "volume": "2250 ml", "longest_side": "33 cm", - "price": 32500, - "price_postapoc": 750, + "price": "325 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "plastic", "hard_plastic_transp", "epoxy", "plastic_pad" ], "symbol": "[", @@ -1177,8 +1177,8 @@ "weight": "1587 g", "volume": "2250 ml", "longest_side": "33 cm", - "price": 32500, - "price_postapoc": 750, + "price": "325 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "plastic", "epoxy" ], "symbol": "[", @@ -1246,8 +1246,8 @@ "weight": "660 g", "volume": "1800 ml", "longest_side": "28 cm", - "price": 7000, - "price_postapoc": 300, + "price": "70 USD", + "price_postapoc": "3 USD", "techniques": [ "WBLOCK_1" ], "material": [ "plastic", "epoxy", "plastic_pad" ], "symbol": "[", @@ -1300,8 +1300,8 @@ "description": "An early medieval helmet with a projection guarding the nose, to better protect the face without obstructing vision. Proper Viking gear, unlike the stereotypical horned helm.", "weight": "907 g", "volume": "2 L", - "price": 26000, - "price_postapoc": 3000, + "price": "260 USD", + "price_postapoc": "30 USD", "material": [ "iron", "leather" ], "symbol": "[", "looks_like": "helmet_barbute", @@ -1369,8 +1369,8 @@ "description": "An early medieval helmet with a projection guarding the nose, to better protect the face without obstructing vision. Proper Viking gear, unlike the stereotypical horned helm. This one is made in modern times out of steel.", "weight": "1507 g", "volume": "2 L", - "price": 26000, - "price_postapoc": 3000, + "price": "260 USD", + "price_postapoc": "30 USD", "material": [ "lc_steel", "leather" ], "symbol": "[", "looks_like": "helmet_barbute", @@ -1539,8 +1539,8 @@ "description": "A medieval helmet that provides excellent protection to the entire head, at the cost of great encumbrance.", "weight": "2175 g", "volume": "2750 ml", - "price": 40000, - "price_postapoc": 5000, + "price": "400 USD", + "price_postapoc": "50 USD", "material": [ "steel", "leather" ], "symbol": "[", "looks_like": "helmet_barbute", @@ -1581,8 +1581,8 @@ "description": "A wide-brimmed helmet that looks somewhat like a metal cowboy hat. Sadly, it won't help protect your eyes from the sun.", "weight": "2555 g", "volume": "2050 ml", - "price": 30000, - "price_postapoc": 4000, + "price": "300 USD", + "price_postapoc": "40 USD", "material": [ "steel", "leather" ], "symbol": "n", "looks_like": "helmet_barbute", @@ -1628,8 +1628,8 @@ "description": "A helmet made from scraps of metal secured by simple strings; the loose collection of plates provides decent but not the most convenient protection.", "weight": "1692 g", "volume": "2750 ml", - "price": 35000, - "price_postapoc": 500, + "price": "350 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "budget_steel", "cotton" ], "symbol": "[", @@ -1676,8 +1676,8 @@ "weight": "4570 g", "//": "The weight assumes one large sheet of about 75cm x 40cm x 1.5mm and one circular sheet with a diameter of 24cm as the crown, and one gambeson hood.", "volume": "2 L", - "price": 4500, - "price_postapoc": 50, + "price": "45 USD", + "price_postapoc": "50 cent", "material": [ "lc_steel", "cotton" ], "repairs_with": [ "steel" ], "symbol": "[", @@ -1730,8 +1730,8 @@ "weight": "3690 g", "//": "The weight assumes one large sheet of about 75cm x 40cm x 1.5mm and one circular sheet with a diameter of 24cm as the crown, and one gambeson hood, but minus the weight of a 25cm x 30cm face cut out.", "volume": "2 L", - "price": 4500, - "price_postapoc": 50, + "price": "45 USD", + "price_postapoc": "50 cent", "material": [ "lc_steel", "cotton" ], "repairs_with": [ "lc_steel" ], "symbol": "[", @@ -1771,8 +1771,8 @@ "description": "A small metal helmet that covers the head and protects against cuts and percussion.", "weight": "1315 g", "volume": "1250 ml", - "price": 4500, - "price_postapoc": 750, + "price": "45 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "plastic", "iron" ], "symbol": "[", "looks_like": "helmet_bike", @@ -1799,8 +1799,8 @@ "description": "A spiked helmet once worn by German military officers. The spike is ornamental.", "weight": "980 g", "volume": "1750 ml", - "price": 24000, - "price_postapoc": 3500, + "price": "240 USD", + "price_postapoc": "35 USD", "to_hit": -3, "material": [ "leather", "iron" ], "symbol": "[", @@ -1845,8 +1845,8 @@ "description": "An ancient Greek bronze helmet that provides excellent protection for the head, with slits for the eyes and mouth.", "weight": "1310 g", "volume": "2500 ml", - "price": 30000, - "price_postapoc": 3500, + "price": "300 USD", + "price_postapoc": "35 USD", "material": [ "bronze" ], "symbol": "[", "looks_like": "helmet_plate", @@ -1905,8 +1905,8 @@ "description": "A solid, single piece closed bronze helmet with a slit for the eyes.", "weight": "1110 g", "volume": "2500 ml", - "price": 20000, - "price_postapoc": 2500, + "price": "200 USD", + "price_postapoc": "25 USD", "material": [ "bronze" ], "symbol": "[", "looks_like": "helmet_corinthian", @@ -1950,8 +1950,8 @@ "description": "A huge makeshift helmet made from a canning pot. For the truly desperate man-bear-pig.", "weight": "6425 g", "volume": "25 L", - "price": 22000, - "price_postapoc": 50, + "price": "220 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "[", "looks_like": "pot_helmet", @@ -1986,8 +1986,8 @@ "description": "A type of helmet that was developed in the late 15th century. Evolving from the sallet and armet, it includes a bevor to protect the neck. Activate it to raise the visor.", "weight": "2750 g", "volume": "3 L", - "price": 55000, - "price_postapoc": 5500, + "price": "550 USD", + "price_postapoc": "55 USD", "use_action": { "type": "transform", "msg": "You raise the helm's visor.", @@ -2261,8 +2261,8 @@ "description": "A type of helmet that was developed in the late 15th century. Evolving from the sallet and armet, it includes a bevor to protect the neck. Activate it to raise the visor.", "weight": "3750 g", "volume": "3 L", - "price": 74000, - "price_postapoc": 7400, + "price": "740 USD", + "price_postapoc": "74 USD", "use_action": { "type": "transform", "msg": "You raise the helm's visor.", "target": "lc_helm_close_raised", "menu_text": "Raise" }, "material": [ "lc_steel" ], "symbol": "o", @@ -2486,8 +2486,8 @@ "description": "A type of helmet that was developed in the late 15th century. Evolving from the sallet and armet, it includes a bevor to protect the neck. Activate it to raise the visor.", "weight": "4750 g", "volume": "3 L", - "price": 93500, - "price_postapoc": 9350, + "price": "935 USD", + "price_postapoc": "93 USD 50 cent", "use_action": { "type": "transform", "msg": "You raise the helm's visor.", @@ -2760,8 +2760,8 @@ "description": "A lightweight helmet that is fashioned to look like a real military helmet, but is made of plastic and only protects against BB's and other light threats. It has a military rail system for attachments.", "weight": "455 g", "volume": "1850 ml", - "price": 6000, - "price_postapoc": 1000, + "price": "60 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "plastic", "plastic_pad" ], "symbol": "[", @@ -2865,8 +2865,8 @@ "description": "A middle eastern helmet, cylindrical on the top with protection for the nose and ears but nothing lower. This one is made in modern times out of steel.", "weight": "2400 g", "volume": "1500 ml", - "price": 26000, - "price_postapoc": 2500, + "price": "260 USD", + "price_postapoc": "25 USD", "material": [ "lc_steel" ], "symbol": "[", "looks_like": "helmet_barbute", diff --git a/data/json/items/armor/holster.json b/data/json/items/armor/holster.json index 00af3f74d5681..9d978db32a3ea 100644 --- a/data/json/items/armor/holster.json +++ b/data/json/items/armor/holster.json @@ -6,8 +6,8 @@ "description": "A leather holster, big enough for a rifle or other large gun. Designed to be strapped to the back. Activate to holster/draw a gun.", "weight": "240 g", "volume": "1250 ml", - "price": 10000, - "price_postapoc": 1250, + "price": "100 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "quiver_large", @@ -36,8 +36,8 @@ "description": "A leather harness which can hold up to six pistol-sized guns in total, available for quick drawing. Historically, similar harnesses were used by pirates to carry multiple loaded flintlock pistols at once, as reloading them is a lengthy process. Activate to holster/draw a gun.", "weight": "1320 g", "volume": "3 L", - "price": 20000, - "price_postapoc": 2000, + "price": "200 USD", + "price_postapoc": "20 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "quiver_large", @@ -116,8 +116,8 @@ "description": "A small concealed holster worn on the ankle. It is awkward to use without practice. Activate to holster/draw a small pistol.", "weight": "200 g", "volume": "250 ml", - "price": 7400, - "price_postapoc": 500, + "price": "74 USD", + "price_postapoc": "5 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "holster", @@ -155,8 +155,8 @@ "description": "A somewhat complicated set of straps and fabric to keep your bow close to hand and (mostly) out of harm's way. Activate to holster/draw your bow.", "weight": "320 g", "volume": "500 ml", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "slingpack", @@ -185,8 +185,8 @@ "description": "A harness going over your shoulder and across your chest. Designed to connect to a rifle at a single point with the rifle hanging off your front. Great for fighting, not great for travel. Activate to holster/draw your weapon.", "weight": "320 g", "volume": "500 ml", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "slingpack", @@ -216,8 +216,8 @@ "description": "A leather strap worn on the hip for holding pistol-sized guns. Activate to holster/draw a gun.", "weight": "220 g", "volume": "500 ml", - "price": 9000, - "price_postapoc": 500, + "price": "90 USD", + "price_postapoc": "5 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "sheath", @@ -254,8 +254,8 @@ "description": "Holster made from nylon, rather than leather. A bit stronger and lighter, but not as fashionable. Activate to draw/holster a gun.", "weight": "200 g", "volume": "500 ml", - "price": 900, - "price_postapoc": 250, + "price": "9 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "sheath", @@ -292,7 +292,7 @@ "description": "A Western-style gun belt as worn by cowboys and gunfighters in the movies and on TV. Has loops across the back to hold spare ammo. Activate to holster/draw a gun.", "weight": "260 g", "volume": "550 ml", - "price_postapoc": 500, + "price_postapoc": "5 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "sheath", @@ -364,7 +364,7 @@ "type": "ARMOR", "name": { "str": "fast draw holster" }, "description": "A comfortable quick-draw holster for small guns. Activate to holster/draw a gun.", - "price_postapoc": 500, + "price_postapoc": "5 USD", "material": [ "leather" ], "pocket_data": [ { @@ -394,7 +394,7 @@ "type": "ARMOR", "name": { "str": "shoulder holster" }, "description": "A comfortable quick-draw holster for larger pistols. One side holsters a gun, and the other side holds two magazines. Activate to holster/draw a gun.", - "price_postapoc": 500, + "price_postapoc": "5 USD", "material": [ "leather" ], "pocket_data": [ { @@ -430,8 +430,8 @@ "description": "An elastic band with numerous provisions for concealing a very small pistol close to the body. It is awkward to use without practice. Activate to holster/draw a gun.", "weight": "120 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "material": [ "lycra" ], "pocket_data": [ { @@ -464,7 +464,7 @@ "description": "A wide elastic belly belt with a built-in holster for a pistol and a spare magazine. It is very awkward to use without practice. Activate to holster/draw a gun.", "weight": "240 g", "volume": "750 ml", - "price_postapoc": 500, + "price_postapoc": "5 USD", "material": [ "lycra" ], "warmth": 5, "sided": false, @@ -501,8 +501,8 @@ "description": "Two holsters attached together by a strap, right next to each other. The placement means that drawing guns out of either one is slower than a regular holster. Activate to holster/draw a gun.", "weight": "500 g", "volume": "1000 ml", - "price": 9000, - "price_postapoc": 1200, + "price": "90 USD", + "price_postapoc": "12 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "sheath", @@ -549,8 +549,8 @@ "description": "Two holsters attached together by a strap, one in front of the other. The placement means that drawing a gun out of the front holster is slower than the other holster. Activate to holster/draw a gun.", "weight": "500 g", "volume": "1000 ml", - "price": 9000, - "price_postapoc": 1200, + "price": "90 USD", + "price_postapoc": "12 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "sheath", @@ -597,8 +597,8 @@ "description": "Two nylon holsters attached together by a strap, right next to each other. The placement means that drawing guns out of either one is slower than a regular holster. Activate to holster/draw a gun.", "weight": "500 g", "volume": "1000 ml", - "price": 9000, - "price_postapoc": 1200, + "price": "90 USD", + "price_postapoc": "12 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "sheath", @@ -645,8 +645,8 @@ "description": "Two nylon holsters attached together by a strap, one in front of the other. The placement means that drawing a gun out of the front holster is slower than the other holster. Activate to holster/draw a gun.", "weight": "480 g", "volume": "1000 ml", - "price": 9000, - "price_postapoc": 1200, + "price": "90 USD", + "price_postapoc": "12 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "sheath", @@ -693,8 +693,8 @@ "description": "A belt holster consisting of a loop and strap intended for use with larger firearms. Slightly more cumbersome than a standard holster due to the straps that hold it flat against your leg. Activate to holster/draw a gun.", "weight": "320 g", "volume": "250 ml", - "price": 9000, - "price_postapoc": 750, + "price": "90 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "quiver_large", @@ -730,8 +730,8 @@ "description": "A belt holster consisting of a loop and strap intended for use with larger firearms, but made with nylon instead of leather. Activate to holster/draw a gun", "weight": "287 g", "volume": "250 ml", - "price": 900, - "price_postapoc": 500, + "price": "9 USD", + "price_postapoc": "5 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "quiver_large", diff --git a/data/json/items/armor/hoods.json b/data/json/items/armor/hoods.json index adc7503f61363..6e7bec5659b05 100644 --- a/data/json/items/armor/hoods.json +++ b/data/json/items/armor/hoods.json @@ -6,8 +6,8 @@ "description": "A beekeeping hood. Keeps the bees out, but lets fresh air in.", "weight": "260 g", "volume": "1500 ml", - "price": 4500, - "price_postapoc": 250, + "price": "45 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton", "plastic" ], "symbol": "[", "looks_like": "cowboy_hat", @@ -29,8 +29,8 @@ "description": "A customized chainmail hood. Can be worn comfortably under helmets.", "weight": "1315 g", "volume": "500 ml", - "price": 5012, - "price_postapoc": 2500, + "price": "50 USD 12 cent", + "price_postapoc": "25 USD", "to_hit": -1, "material": [ "budget_steel_chain" ], "symbol": "[", @@ -57,8 +57,8 @@ "description": "A customized chainmail hood. Can be worn comfortably under helmets.", "weight": "1315 g", "volume": "500 ml", - "price": 5012, - "price_postapoc": 2500, + "price": "50 USD 12 cent", + "price_postapoc": "25 USD", "to_hit": -1, "material": [ "lc_steel_chain" ], "symbol": "[", @@ -191,8 +191,8 @@ "description": "A waterproof hood made to be worn in bad weather.", "weight": "160 g", "volume": "750 ml", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "vinyl" ], "symbol": "[", "looks_like": "hat_cotton", @@ -210,8 +210,8 @@ "description": "A snug fitting garment that protects your head and neck, made from lightweight Nomex fire-resistant fabric. Tough yet breathable, it is light and comfortable to wear under clothing.", "weight": "210 g", "volume": "500 ml", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "to_hit": -5, "material": [ "nomex" ], "symbol": "[", @@ -230,8 +230,8 @@ "description": "A hood sewn from treated and split intestines, the perfect companion for a gutskin parka.", "weight": "40 g", "volume": "250 ml", - "price": 2600, - "price_postapoc": 150, + "price": "26 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "gutskin" ], "symbol": "[", "looks_like": "hood_rain", @@ -249,8 +249,8 @@ "description": "A black hood commonly used by ninja.", "weight": "80 g", "volume": "1000 ml", - "price": 3500, - "price_postapoc": 20, + "price": "35 USD", + "price_postapoc": "20 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "balclava", diff --git a/data/json/items/armor/integrated.json b/data/json/items/armor/integrated.json index d5e2cf1eb309d..319c71acaae32 100644 --- a/data/json/items/armor/integrated.json +++ b/data/json/items/armor/integrated.json @@ -7,8 +7,8 @@ "description": "A pliable but hefty layer of living plant matter.", "weight": "2 kg", "volume": "2100 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_wood", "veggy" ], "symbol": "x", "color": "light_green", @@ -36,8 +36,8 @@ "description": "A powerful layer of bark, thicker in parts.", "weight": "6 kg", "volume": "7500 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_wood" ], "symbol": "x", "color": "brown", @@ -61,8 +61,8 @@ "description": "Your bark is spread evenly across your body.", "weight": "12 kg", "volume": "15 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_wood" ], "symbol": "x", "color": "brown", @@ -86,8 +86,8 @@ "description": "Your bark is pulled together to protect your torso.", "weight": "12 kg", "volume": "15 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_wood" ], "symbol": "x", "color": "brown", @@ -133,8 +133,8 @@ "description": "Your bark is latticed into a larger frame.", "weight": "12 kg", "volume": "15 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_wood" ], "symbol": "x", "color": "brown", @@ -170,8 +170,8 @@ "description": "Iridescent feathers covering your entire body. Provides some warmth and protection from the elements, but could be thicker.", "weight": "640 g", "volume": "800 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_feather" ], "symbol": "x", "color": "white", @@ -195,8 +195,8 @@ "description": "Thin, patchy fur that clearly needs to grow more.", "weight": "300 g", "volume": "300 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_fur" ], "symbol": "x", "color": "white", @@ -226,8 +226,8 @@ "description": "Though it's quite warm, your fur is also quite protective.", "weight": "700 g", "volume": "700 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_fur" ], "symbol": "x", "color": "light_gray", @@ -263,8 +263,8 @@ "description": "A heavy shag carpet of fur, somewhere between a ballistic vest and attic insulation.", "weight": "2 kg", "volume": "2 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_fur" ], "symbol": "x", "color": "black", @@ -300,8 +300,8 @@ "description": "While still formidable, this furry hide has lost a lot of its bulk to better endure the summer months.", "weight": "2 kg", "volume": "2 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_fur" ], "symbol": "x", "color": "black", @@ -337,8 +337,8 @@ "description": "The fur of a strong, wild creature.", "weight": "1 kg", "volume": "1 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_fur" ], "symbol": "x", "color": "dark_gray", @@ -374,8 +374,8 @@ "description": "A covering of fur that has thinned out for the summer.", "weight": "1 kg", "volume": "1 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_fur" ], "symbol": "x", "color": "dark_gray", @@ -411,8 +411,8 @@ "description": "The fur of a proud, wise creature.", "weight": "1 kg", "volume": "1 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_fur" ], "symbol": "x", "color": "brown", @@ -442,8 +442,8 @@ "description": "A pile of fur around the neck, protecting from foes that go for the throat.", "weight": "200 g", "volume": "200 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_fur" ], "symbol": "*", "color": "brown", @@ -469,8 +469,8 @@ "description": "Skin like a spilled tub of paints, splattered in abstract shapes of chitin, fur, and hide.", "weight": "1 kg", "volume": "1 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "leather", "mut_fur", "leather_arthropod", "wool", "hflesh" ], "symbol": "x", "color": "light_red", @@ -500,8 +500,8 @@ "description": "Beauty is only skin deep, but with this skin, a knife might find itself broken in the beauty layer.", "weight": "2 kg", "volume": "500 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "leather", "bone", "mut_fur", "acidchitin", "leather_arthropod", "wool", "flesh" ], "symbol": "x", "color": "light_red", @@ -542,8 +542,8 @@ "description": "Folks that can't catch bullets with their skin insist that it's what's on the inside that counts. Those folks don't know anything.", "weight": "3 kg", "volume": "800 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "leather", "alien_carapace", "mut_bone", "mut_fur", "kevlar", "acidchitin", "leather_arthropod", "wool", "flesh" ], "symbol": "x", "color": "light_red", @@ -577,8 +577,8 @@ "description": "These are much better than puny human mouthparts.", "weight": "200 g", "volume": "200 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "chitin" ], "symbol": ";", "color": "dark_gray", @@ -601,8 +601,8 @@ "description": "Your fangs have properly developed, and are prepared for the kill.", "weight": "300 g", "volume": "200 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "sclerotin" ], "symbol": ";", "color": "brown", @@ -625,8 +625,8 @@ "description": "Your chitinous skin doesn't sweat so well and it's a bit stiffer than before, but it's far more durable than your old human skin.", "weight": "1 kg", "volume": "1500 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "leather_arthropod" ], "symbol": "x", "color": "green", @@ -656,8 +656,8 @@ "description": "The skin hardens, develops. Good, it will be needed.", "weight": "3 kg", "volume": "5 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "chitin" ], "symbol": "x", "color": "dark_gray", @@ -727,8 +727,8 @@ "description": "The exoskeleton is soft and vulnerable. It would be best to hide until it hardens.", "weight": "1500 g", "volume": "1 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "leather_arthropod" ], "symbol": "x", "color": "dark_gray", @@ -798,8 +798,8 @@ "description": "When the time comes to prey, this platemail will be ready for any resistance.", "weight": "12 kg", "volume": "15 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "sclerotin" ], "symbol": "x", "color": "brown", @@ -863,8 +863,8 @@ "description": "The exoskeleton is weak, it will require more time to harden.", "weight": "3 kg", "volume": "2 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "leather_arthropod" ], "symbol": "x", "color": "brown", @@ -928,8 +928,8 @@ "description": "Useful for the hunt, suitable for maximum efficiency.", "weight": "450 g", "volume": "500 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "sclerotin" ], "symbol": ",", "color": "brown", @@ -957,8 +957,8 @@ "description": "When the time comes to prey, this unwavering carapace will keep you safe from everything that could harm you.", "weight": "11 kg", "volume": "6 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "sclerotin" ], "symbol": "x", "color": "brown", @@ -1022,8 +1022,8 @@ "description": "This recently-molted carapace is still soft, and will need time to harden before it provides proper protection.", "weight": "4500 g", "volume": "3 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "leather_arthropod" ], "symbol": "x", "color": "brown", @@ -1087,8 +1087,8 @@ "description": "A powerful tool for snatching fish or breaking open shells.", "weight": "900 g", "volume": "1 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "sclerotin" ], "symbol": ",", "color": "brown", @@ -1117,8 +1117,8 @@ "description": "You have a large, protective shell on your back, but unfortunately, it doesn't have enough space to fit inside or store anything, makes wearing anything on your torso impossible, and makes backpacks encumbering.", "weight": "7 kg", "volume": "10 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "chitin_light" ], "symbol": "x", "color": "magenta", @@ -1143,8 +1143,8 @@ "description": "Your shell has grown larger and thicker. You can hide yourself in it, as well as use it as a backpack, but torso armor is still off limits.", "weight": "9 kg", "volume": "15 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "chitin_light" ], "symbol": "x", "color": "magenta", @@ -1178,8 +1178,8 @@ "description": "Your shell has grown larger and even thicker, and has a pearly sheen to it. You can hide yourself in it, as well as use it as a backpack, but torso armor is still off limits.", "weight": "9 kg", "volume": "15 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_bone" ], "symbol": "x", "color": "magenta", @@ -1213,8 +1213,8 @@ "description": "Your dermis has toughened and started to grow scales in places.", "weight": "400 g", "volume": "400 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "hflesh", "mut_scales" ], "symbol": "x", "color": "light_red", @@ -1262,8 +1262,8 @@ "description": "Your scales have grown thicker and cover most of your body, providing solid armor.", "weight": "1 kg", "volume": "900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "flesh", "mut_scales" ], "symbol": "x", "color": "light_red", @@ -1322,8 +1322,8 @@ "description": "Your skin has become a smooth and elegant mesh of interlocking scales.", "weight": "2 kg", "volume": "1800 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "flesh", "mut_scales" ], "symbol": "x", "color": "light_red", @@ -1377,8 +1377,8 @@ "description": "Leathery and heavily armored, your lamellar skin has toughened for the fiercest battles ahead.", "weight": "4 kg", "volume": "3600 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "leather", "mut_scales", "mut_bone" ], "symbol": "x", "color": "light_red", @@ -1454,8 +1454,8 @@ "description": "Highly protective lenses which seal off your eyes from danger, routing your tear ducts to your mouth.", "weight": "180 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "plastic", "lvl4ballisticglass" ], "symbol": "[", @@ -1497,8 +1497,8 @@ "weight": "100 g", "volume": "200 ml", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 4 ] ], - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "chitin" ], "symbol": ";", "color": "dark_gray", @@ -1526,8 +1526,8 @@ "weight": "100 g", "volume": "250 ml", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 6 ] ], - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "chitin" ], "symbol": ";", "color": "dark_gray", @@ -1555,8 +1555,8 @@ "weight": "100 g", "volume": "300 ml", "qualities": [ [ "CUT", 2 ], [ "CUT_FINE", 1 ], [ "BUTCHER", 8 ] ], - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "chitin" ], "symbol": ";", "color": "dark_gray", @@ -1584,8 +1584,8 @@ "weight": "100 g", "volume": "350 ml", "qualities": [ [ "CUT", 2 ], [ "CUT_FINE", 1 ], [ "BUTCHER", 12 ] ], - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "chitin" ], "symbol": ";", "color": "dark_gray", @@ -1612,8 +1612,8 @@ "description": "A pair of fangs sharp and sturdy enough to use in combat.", "weight": "50 g", "volume": "100 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "bone" ], "symbol": ",", "color": "white", @@ -1638,8 +1638,8 @@ "description": "A wicked pair of fangs, pointed and surgically sharp.", "weight": "100 g", "volume": "200 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "bone" ], "symbol": ",", "color": "white", diff --git a/data/json/items/armor/jewelry.json b/data/json/items/armor/jewelry.json index ce567d7715c57..38e0677d3909f 100644 --- a/data/json/items/armor/jewelry.json +++ b/data/json/items/armor/jewelry.json @@ -7,8 +7,8 @@ "looks_like": "copper_bracelet", "weight": "6 g", "volume": "10 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": "[", "color": "brown", @@ -31,8 +31,8 @@ "description": "A simple pair of earrings made of string and wooden beads.", "weight": "600 mg", "volume": "1 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": "[", "looks_like": "gold_ear", @@ -47,8 +47,8 @@ "looks_like": "silver_necklace", "weight": "18 g", "volume": "30 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": "u", "color": "brown", @@ -63,8 +63,8 @@ "looks_like": "copper_bracelet", "weight": "8 g", "volume": "10 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "wood", "plastic" ], "symbol": "[", "color": "red", @@ -86,8 +86,8 @@ "description": "A medal awarded for achieving third place in some event. It might be worth something if it was made of bronze; this one is made from brass.", "weight": "25 g", "volume": "10 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "brass" ], "symbol": "[", "looks_like": "copper_locket", @@ -131,8 +131,8 @@ "description": "Fake teeth inlaid with diamonds, worn over the teeth. Fits horribly, but looks very shiny. For that high-class gangsta rap look.", "weight": "10 g", "volume": "1 ml", - "price": 50000, - "price_postapoc": 250, + "price": "500 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "gold" ], "symbol": "[", "looks_like": "gold_dental_grill", @@ -148,8 +148,8 @@ "description": "Fake teeth inlaid with garnets, worn over the teeth. It looks very shiny.", "weight": "10 g", "volume": "1 ml", - "price": 30000, - "price_postapoc": 100, + "price": "300 USD", + "price_postapoc": "1 USD", "material": [ { "type": "gold", "portion": 9 }, { "type": "gemstone" } ], "symbol": "[", "looks_like": "gold_dental_grill", @@ -236,8 +236,8 @@ "description": "A barrette with lots of ornaments.", "weight": "5 g", "volume": "50 ml", - "price": 800, - "price_postapoc": 10, + "price": "8 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "[", "color": "pink", @@ -258,8 +258,8 @@ "description": "A gold ring with a sparkling diamond mounted on top of it. Back in the old days, this could have been worth a fortune.", "weight": "12 g", "volume": "1 ml", - "price": 190000, - "price_postapoc": 100, + "price": "1 kUSD 900 USD", + "price_postapoc": "1 USD", "material": [ { "type": "gold", "portion": 9 }, { "type": "diamond" } ], "symbol": "[", "looks_like": "ring_engagement", @@ -283,8 +283,8 @@ "description": "A waterproof, self-winding watch on a stainless steel watchband. Tells the time and current temperature. Activate to check the digital thermometer.", "weight": "100 g", "volume": "90 ml", - "price": 12000, - "price_postapoc": 700, + "price": "120 USD", + "price_postapoc": "7 USD", "to_hit": -1, "material": [ "steel" ], "symbol": "[", @@ -302,8 +302,8 @@ "description": "A staple accessory for gentlemen. Keeps your shirt collar in place and provides a more aesthetically pleasing arc to your necktie.", "weight": "10 g", "volume": "2 ml", - "price": 25000, - "price_postapoc": 10, + "price": "250 USD", + "price_postapoc": "10 cent", "material": [ "silver" ], "symbol": "[", "looks_like": "tieclip", @@ -317,8 +317,8 @@ "description": "An old-fashioned copper bracelet.", "weight": "45 g", "volume": "10 ml", - "price": 2500, - "price_postapoc": 10, + "price": "25 USD", + "price_postapoc": "10 cent", "material": [ "copper" ], "symbol": "[", "looks_like": "silver_bracelet", @@ -341,8 +341,8 @@ "description": "A pair of copper earrings. They're pretty heavy.", "weight": "8 g", "volume": "1 ml", - "price": 2900, - "price_postapoc": 10, + "price": "29 USD", + "price_postapoc": "10 cent", "material": [ "copper" ], "symbol": "[", "looks_like": "gold_ear", @@ -356,8 +356,8 @@ "description": "A hairpin made from copper.", "copy-from": "hairpin", "weight": "180 mg", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "material": [ "copper" ], "looks_like": "tieclip", "color": "brown", @@ -370,8 +370,8 @@ "description": "A circular copper locket. It's been tarnished with use, and has gained some dull green spots.", "weight": "45 g", "volume": "10 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "copper" ], "symbol": "[", "looks_like": "silver_necklace", @@ -395,8 +395,8 @@ "description": "A simple chain of copper, with a clasp in the middle to create a necklace.", "weight": "30 g", "volume": "10 ml", - "price": 3000, - "price_postapoc": 10, + "price": "30 USD", + "price_postapoc": "10 cent", "material": [ "copper" ], "symbol": "[", "looks_like": "silver_necklace", @@ -410,8 +410,8 @@ "description": "A plain, copper ring. Not very shiny, and not very popular.", "weight": "8 g", "volume": "1 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "copper" ], "symbol": "[", "looks_like": "ring_purity", @@ -435,8 +435,8 @@ "description": "An unmarked pair of silver cufflinks. Cufflinks are used to secure the cuffs of dress shirts - a must-have for men in formal wear.", "weight": "10 g", "volume": "1 ml", - "price": 3000, - "price_postapoc": 10, + "price": "30 USD", + "price_postapoc": "10 cent", "material": [ "silver" ], "symbol": "[", "color": "light_gray", @@ -449,8 +449,8 @@ "description": "An expensive pair of silver cufflinks, stylized with detailed overlays of gold gears and fractal patterns.", "weight": "11 g", "volume": "1 ml", - "price": 7000, - "price_postapoc": 50, + "price": "70 USD", + "price_postapoc": "50 cent", "material": [ { "type": "silver", "portion": 8 }, { "type": "gold", "portion": 2 } ], "symbol": "[", "color": "light_gray", @@ -463,8 +463,8 @@ "description": "A pair of cufflinks with inset garnets.", "weight": "15 g", "volume": "1 ml", - "price": 3500, - "price_postapoc": 50, + "price": "35 USD", + "price_postapoc": "50 cent", "material": [ { "type": "gold", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "cufflinks", "symbol": "[", @@ -590,8 +590,8 @@ "description": "A pair of cufflinks with inset garnets.", "weight": "9 g", "volume": "1 ml", - "price": 3500, - "price_postapoc": 100, + "price": "35 USD", + "price_postapoc": "1 USD", "material": [ { "type": "silver", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "cufflinks", "symbol": "[", @@ -745,8 +745,8 @@ "description": "A pair of cufflinks with inset garnets.", "weight": "15 g", "volume": "1 ml", - "price": 3500, - "price_postapoc": 100, + "price": "35 USD", + "price_postapoc": "1 USD", "material": [ { "type": "platinum", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "cufflinks", "symbol": "[", @@ -872,8 +872,8 @@ "description": "One of those round things people plug into their earlobes as earrings, also called an \"ear plug\" or \"ear spool.\"", "weight": "5 g", "volume": "5 ml", - "price": 1200, - "price_postapoc": 10, + "price": "12 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "[", "color": "dark_gray", @@ -887,8 +887,8 @@ "description": "A fancy golden bracelet.", "weight": "40 g", "volume": "25 ml", - "price": 46000, - "price_postapoc": 50, + "price": "460 USD", + "price_postapoc": "50 cent", "material": [ "gold" ], "symbol": "[", "color": "yellow", @@ -910,8 +910,8 @@ "description": "Fake golden teeth, worn over the teeth. Fits horribly, but looks very shiny.", "weight": "10 g", "volume": "1 ml", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "material": [ "gold" ], "symbol": "[", "color": "yellow", @@ -926,8 +926,8 @@ "description": "A pair of shiny gold earrings.", "weight": "19 g", "volume": "1 ml", - "price": 13000, - "price_postapoc": 10, + "price": "130 USD", + "price_postapoc": "10 cent", "material": [ "gold" ], "symbol": "[", "color": "yellow", @@ -939,8 +939,8 @@ "name": { "str": "gold hairpin" }, "description": "A gold hairpin, designed by the rich, for the rich.", "copy-from": "hairpin", - "price": 5000, - "price_postapoc": 25, + "price": "50 USD", + "price_postapoc": "25 cent", "material": [ "gold" ], "color": "yellow", "flags": [ "FANCY", "NO_WEAR_EFFECT" ] @@ -952,8 +952,8 @@ "description": "A heart-shaped gold locket with a frame inside to store photographs or small objects.", "weight": "50 g", "volume": "25 ml", - "price": 20000, - "price_postapoc": 25, + "price": "200 USD", + "price_postapoc": "25 cent", "material": [ "gold" ], "symbol": "[", "color": "yellow", @@ -976,8 +976,8 @@ "description": "A medal awarded for achieving first place in some event. Before everything fell apart, this was likely a source of great pride for its owner. Now it's just another shiny bauble.", "weight": "50 g", "volume": "25 ml", - "price": 10000, - "price_postapoc": 25, + "price": "100 USD", + "price_postapoc": "25 cent", "material": [ "gold" ], "symbol": "[", "color": "yellow", @@ -990,8 +990,8 @@ "description": "A medal awarded to military personnel for heroism, wounds suffered in combat, or distinguished service.", "weight": "50 g", "volume": "25 ml", - "price": 10000, - "price_postapoc": 25, + "price": "100 USD", + "price_postapoc": "25 cent", "material": [ { "type": "gold", "portion": 1 }, { "type": "bronze", "portion": 4 } ], "symbol": "[", "color": "brown", @@ -1004,8 +1004,8 @@ "description": "A shiny, unadorned gold necklace.", "weight": "50 g", "volume": "25 ml", - "price": 40000, - "price_postapoc": 50, + "price": "400 USD", + "price_postapoc": "50 cent", "material": [ "gold" ], "symbol": "[", "color": "yellow", @@ -1018,8 +1018,8 @@ "description": "A flashy gold ring.", "weight": "10 g", "volume": "1 ml", - "price": 30000, - "price_postapoc": 50, + "price": "300 USD", + "price_postapoc": "50 cent", "material": [ "gold" ], "symbol": "[", "color": "yellow", @@ -1042,8 +1042,8 @@ "description": "A gold-plated steel self-winding wristwatch, suitable for a retirement present. Tells the time and looks good.", "weight": "150 g", "volume": "90 ml", - "price": 50000, - "price_postapoc": 250, + "price": "500 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ { "type": "steel", "portion": 9 }, { "type": "gold" } ], "symbol": "[", @@ -1059,8 +1059,8 @@ "description": "A fancy silver tie clip, a great match for a necktie.", "weight": "12 g", "volume": "5 ml", - "price": 28000, - "price_postapoc": 10, + "price": "280 USD", + "price_postapoc": "10 cent", "material": [ "silver" ], "symbol": "[", "color": "light_gray", @@ -1073,8 +1073,8 @@ "description": "An elegant silver watch, crafted from silver-plated stainless steel. It's much cheaper than other metal watches, but more classy than an ordinary wristwatch.", "weight": "130 g", "volume": "90 ml", - "price": 18000, - "price_postapoc": 100, + "price": "180 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ { "type": "steel", "portion": 9 }, { "type": "silver" } ], "symbol": "[", @@ -1090,8 +1090,8 @@ "description": "A nice silver bracelet.", "weight": "30 g", "volume": "25 ml", - "price": 25000, - "price_postapoc": 25, + "price": "250 USD", + "price_postapoc": "25 cent", "material": [ "silver" ], "symbol": "[", "color": "light_gray", @@ -1113,8 +1113,8 @@ "description": "A pair of beautiful silver earrings.", "weight": "10 g", "volume": "1 ml", - "price": 8000, - "price_postapoc": 25, + "price": "80 USD", + "price_postapoc": "25 cent", "material": [ "silver" ], "symbol": "[", "color": "light_gray", @@ -1128,8 +1128,8 @@ "description": "A rather large and expensively-made wristwatch. Tells the time in elegantly wrought gold with silver detailing. It's really the only timepiece suitable for someone of your exquisitely discerning tastes.", "weight": "150 g", "volume": "100 ml", - "price": 2200000, - "price_postapoc": 500, + "price": "22 kUSD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "gold", "silver" ], "symbol": "[", @@ -1145,8 +1145,8 @@ "description": "A small relic from a forgotten saint. As extraordinary as the world has become, it may have some power yet.", "weight": "60 g", "volume": "15 ml", - "price": 1000, - "price_postapoc": 1000, + "price": "10 USD", + "price_postapoc": "10 USD", "material": [ { "type": "bone", "portion": 8 }, { "type": "silver", "portion": 2 } ], "symbol": "[", "color": "white", @@ -1173,8 +1173,8 @@ "description": "A necklace made of fine gold chain, bearing the symbol of a forgotten faith.", "weight": "50 g", "volume": "25 ml", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "gold" ], "symbol": ",", "color": "yellow", @@ -1562,8 +1562,8 @@ "description": "A simple necklace representing a religious faith.", "weight": "25 g", "volume": "25 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "material": [ "wood", "cotton" ], "symbol": ",", "color": "brown", @@ -1577,8 +1577,8 @@ "description": "A hand-crafted jade brooch of Oriental origin.", "weight": "2 g", "volume": "1 ml", - "price": 90000, - "price_postapoc": 25, + "price": "900 USD", + "price_postapoc": "25 cent", "material": [ "stone" ], "symbol": "[", "color": "green", @@ -1591,8 +1591,8 @@ "description": "A collar made from round and lustrous pearls, its former owner must have been a wealthy individual.", "weight": "200 g", "volume": "200 ml", - "price": 590000, - "price_postapoc": 25, + "price": "5 kUSD 900 USD", + "price_postapoc": "25 cent", "material": [ "stone" ], "symbol": "[", "color": "white", @@ -1606,8 +1606,8 @@ "weight": "180 g", "volume": "100 ml", "//": "far more expensive than gold watches, around $100,000 for most platinum watches ", - "price": 10000000, - "price_postapoc": 1000, + "price": "100 kUSD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "platinum" ], "symbol": "[", @@ -1623,8 +1623,8 @@ "description": "A flawless platinum bracelet.", "weight": "50 g", "volume": "25 ml", - "price": 38000, - "price_postapoc": 100, + "price": "380 USD", + "price_postapoc": "1 USD", "material": [ "platinum" ], "symbol": "[", "color": "white", @@ -1639,8 +1639,8 @@ "description": "Fake platinum-and-silver teeth. They may be cheaper than fake gold teeth, but they're much more rare. Fits horribly, but looks very shiny.", "weight": "15 g", "volume": "1 ml", - "price": 15000, - "price_postapoc": 100, + "price": "150 USD", + "price_postapoc": "1 USD", "material": [ "platinum", "silver" ], "symbol": "[", "color": "white", @@ -1655,8 +1655,8 @@ "description": "A pair of plain platinum earrings - if gold is getting boring, just use another rare metal.", "weight": "20 g", "volume": "1 ml", - "price": 12000, - "price_postapoc": 50, + "price": "120 USD", + "price_postapoc": "50 cent", "material": [ "platinum" ], "symbol": "[", "color": "white", @@ -1669,8 +1669,8 @@ "description": "The ultimate in esoteric, metal hair accessories, this hairpin is made from pure platinum.", "copy-from": "hairpin", "weight": "300 mg", - "price": 3500, - "price_postapoc": 50, + "price": "35 USD", + "price_postapoc": "50 cent", "material": [ "platinum" ], "color": "white", "flags": [ "FANCY", "NO_WEAR_EFFECT" ] @@ -1682,8 +1682,8 @@ "description": "A small, platinum locket for storing photographs or other small objects.", "weight": "65 g", "volume": "40 ml", - "price": 16000, - "price_postapoc": 50, + "price": "160 USD", + "price_postapoc": "50 cent", "material": [ "platinum" ], "symbol": "[", "color": "white", @@ -1706,8 +1706,8 @@ "description": "A platinum necklace, with a small, empty heart-shaped frame hanging from a chain.", "weight": "47 g", "volume": "25 ml", - "price": 50000, - "price_postapoc": 50, + "price": "500 USD", + "price_postapoc": "50 cent", "material": [ "platinum" ], "symbol": "[", "color": "white", @@ -1720,8 +1720,8 @@ "description": "A platinum ring, engraved with all manner of swirls and spirals.", "weight": "15 g", "volume": "1 ml", - "price": 24000, - "price_postapoc": 50, + "price": "240 USD", + "price_postapoc": "50 cent", "material": [ "platinum" ], "symbol": "[", "color": "white", @@ -1743,8 +1743,8 @@ "description": "This ring is an intricate gold band with a small cluster of diamonds set in the center. Before the world broke down, this ring would've cost a small fortune.", "weight": "14 g", "volume": "1 ml", - "price": 100000, - "price_postapoc": 25, + "price": "1 kUSD", + "price_postapoc": "25 cent", "material": [ { "type": "gold", "portion": 9 }, { "type": "diamond" } ], "symbol": "[", "color": "yellow", @@ -1766,8 +1766,8 @@ "description": "Also known as a promise ring, this ring is worn as a sign of chastity. This one bears the inscription, \"Love is patient.\"", "weight": "6 g", "volume": "1 ml", - "price": 1700, - "price_postapoc": 10, + "price": "17 USD", + "price_postapoc": "10 cent", "material": [ "silver" ], "symbol": "[", "color": "light_gray", @@ -1789,8 +1789,8 @@ "description": "A gold and silver ring with a wide stamp attached to the band. A long time ago, the stamp was legible, but now the pattern is too worn to discern its former use.", "weight": "14 g", "volume": "1 ml", - "price": 10000, - "price_postapoc": 25, + "price": "100 USD", + "price_postapoc": "25 cent", "material": [ "gold", "silver" ], "symbol": "[", "color": "yellow", @@ -1812,8 +1812,8 @@ "description": "A flawless ring, ensnaring a diamond with twists of pure gold. It's a constant reminder that the wearer is married.", "weight": "16 g", "volume": "2 ml", - "price": 150000, - "price_postapoc": 50, + "price": "1 kUSD 500 USD", + "price_postapoc": "50 cent", "material": [ { "type": "gold", "portion": 9 }, { "type": "diamond" } ], "symbol": "[", "color": "yellow", @@ -1835,8 +1835,8 @@ "description": "A nice silver necklace.", "weight": "30 g", "volume": "25 ml", - "price": 12000, - "price_postapoc": 25, + "price": "120 USD", + "price_postapoc": "25 cent", "material": [ "silver" ], "symbol": "[", "color": "light_gray", @@ -1849,8 +1849,8 @@ "description": "A shiny silver hairpin with a tiny bee engraved onto it.", "copy-from": "hairpin", "weight": "180 mg", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "silver" ], "color": "light_gray", "flags": [ "FANCY", "NO_WEAR_EFFECT" ] @@ -1862,8 +1862,8 @@ "description": "A small silver locket with a frame inside to store photographs or small objects.", "weight": "30 g", "volume": "25 ml", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "material": [ "silver" ], "symbol": "[", "color": "light_gray", @@ -1886,8 +1886,8 @@ "description": "A medal awarded for achieving second place in some event. Before everything fell apart, this was likely a source of pride for its owner. Now it's just another shiny bauble.", "weight": "50 g", "volume": "25 ml", - "price": 5000, - "price_postapoc": 10, + "price": "50 USD", + "price_postapoc": "10 cent", "material": [ "silver" ], "symbol": "[", "color": "light_gray", @@ -1900,8 +1900,8 @@ "description": "A simple, silver ring.", "weight": "10 g", "volume": "1 ml", - "price": 5000, - "price_postapoc": 10, + "price": "50 USD", + "price_postapoc": "10 cent", "material": [ "silver" ], "symbol": "[", "color": "light_gray", @@ -1923,8 +1923,8 @@ "description": "A black leather 'collar' with a bell dangling from the front. Don't worry, the bell is silent.", "weight": "100 g", "volume": "100 ml", - "price": 10000, - "price_postapoc": 25, + "price": "100 USD", + "price_postapoc": "25 cent", "material": [ "leather" ], "symbol": "-", "color": "dark_gray", @@ -1937,8 +1937,8 @@ "description": "A simple wristwatch on a plastic band. Tells the time and has an alarm clock feature.", "weight": "100 g", "volume": "100 ml", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "plastic", "steel" ], "ascii_picture": "wristwatch", @@ -1956,8 +1956,8 @@ "description": "A plastic badge with an embedded filmstrip. The text on the badge says the filmstrip changes color as it is exposed to radiation, and never goes back to how it initially looked. Wear on your lapel so you can notice if it changes.", "weight": "25 g", "volume": "25 ml", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "[", "color": "light_blue", @@ -1970,8 +1970,8 @@ "description": "This is a template for police/medical badges. If found in a game, it is a bug.", "weight": "60 g", "volume": "8 ml", - "price": 5000, - "price_postapoc": 700, + "price": "50 USD", + "price_postapoc": "7 USD", "material": [ "brass" ], "symbol": "[", "color": "yellow", @@ -1993,7 +1993,7 @@ "type": "ARMOR", "name": { "str": "detective badge" }, "description": "A tarnished golden shield gives an air of authority to the wearer.", - "price_postapoc": 500 + "price_postapoc": "5 USD" }, { "id": "badge_marshal", @@ -2018,7 +2018,7 @@ "material": [ "plastic" ], "weight": "50 g", "volume": "50 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "description": "A plastic name tag marking the wearer as a real doctor of the medical kind." }, { @@ -2027,7 +2027,7 @@ "type": "ARMOR", "name": { "str": "Foodkid badge" }, "material": [ "plastic" ], - "price_postapoc": 10, + "price_postapoc": "10 cent", "weight": "50 g", "volume": "50 ml", "description": "A star-shaped plastic badge. \"Foodkid\" is printed on it in bold letters. This badge marks its wearer as Foodperson's trusty sidekick, and comes included with every kid's meal at Foodplace." @@ -2039,8 +2039,8 @@ "description": "A fuzzy pair of brownish cat ears on a headband. It does nothing, but there's no reason not to look good even if no one's looking.", "weight": "100 g", "volume": "100 ml", - "price": 1500, - "price_postapoc": 10, + "price": "15 USD", + "price_postapoc": "10 cent", "material": [ "fur", "plastic" ], "symbol": "^", "color": "brown", @@ -2062,8 +2062,8 @@ "description": "A fuzzy tawny tail weighted down with tiny beads of plastic. Sways behind you when you walk.", "weight": "250 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "fur", "plastic" ], "symbol": "s", "color": "brown", @@ -2086,8 +2086,8 @@ "description": "A decorative 'collar' made out of fur, complete with a little bell hanging from the front. Don't worry, it's silent.", "weight": "100 g", "volume": "100 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "fur" ], "symbol": "-", "color": "brown", @@ -2109,8 +2109,8 @@ "description": "A shiny pair of black cat ears on a headband. It does nothing, but there's no reason not to look good even if no one's looking.", "weight": "100 g", "volume": "100 ml", - "price": 3000, - "price_postapoc": 10, + "price": "30 USD", + "price_postapoc": "10 cent", "material": [ "leather", "plastic" ], "symbol": "^", "color": "dark_gray", @@ -2123,8 +2123,8 @@ "description": "A glossy black leather tail weighted down with tiny beads of plastic. Sways behind you when you walk.", "weight": "250 g", "volume": "250 ml", - "price": 2500, - "price_postapoc": 10, + "price": "25 USD", + "price_postapoc": "10 cent", "material": [ "leather", "plastic" ], "symbol": "s", "color": "dark_gray", @@ -2137,8 +2137,8 @@ "type": "ARMOR", "name": { "str": "pair of diamond and gold earrings", "str_pl": "pairs of diamond and gold earrings" }, "description": "A pair of shiny diamond and gold earrings.", - "price": 13000, - "price_postapoc": 50, + "price": "130 USD", + "price_postapoc": "50 cent", "material": [ { "type": "gold", "portion": 9 }, { "type": "diamond" } ], "color": "white" }, @@ -2149,8 +2149,8 @@ "description": "A pair of shiny garnet and gold earrings.", "weight": "18 mg", "volume": "1 ml", - "price": 10000, - "price_postapoc": 25, + "price": "100 USD", + "price_postapoc": "25 cent", "material": [ { "type": "gold", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "gold_ear", "symbol": "[", @@ -2266,8 +2266,8 @@ "type": "ARMOR", "name": { "str": "pair of diamond and silver earrings", "str_pl": "pairs of diamond and silver earrings" }, "description": "A pair of shiny diamond and silver earrings.", - "price": 8000, - "price_postapoc": 2000, + "price": "80 USD", + "price_postapoc": "20 USD", "material": [ { "type": "silver", "portion": 9 }, { "type": "diamond" } ], "color": "white" }, @@ -2278,8 +2278,8 @@ "description": "A pair of shiny garnet and silver earrings.", "weight": "10 mg", "volume": "1 ml", - "price": 6000, - "price_postapoc": 1000, + "price": "60 USD", + "price_postapoc": "10 USD", "material": [ { "type": "silver", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "silver_ear", "symbol": "[", @@ -2423,8 +2423,8 @@ "type": "ARMOR", "name": { "str": "pair of diamond and platinum earrings", "str_pl": "pairs of diamond and platinum earrings" }, "description": "A pair of shiny diamond and platinum earrings.", - "price": 12000, - "price_postapoc": 25, + "price": "120 USD", + "price_postapoc": "25 cent", "material": [ { "type": "platinum", "portion": 9 }, { "type": "diamond" } ], "color": "white" }, @@ -2435,8 +2435,8 @@ "description": "A pair of shiny garnet and platinum earrings.", "weight": "19 mg", "volume": "1 ml", - "price": 10000, - "price_postapoc": 25, + "price": "100 USD", + "price_postapoc": "25 cent", "material": [ { "type": "platinum", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "platinum_ear", "symbol": "[", @@ -2553,8 +2553,8 @@ "description": "A gold ring with a garnet mounted on top of it.", "weight": "18 mg", "volume": "1 ml", - "price": 10000, - "price_postapoc": 1800, + "price": "100 USD", + "price_postapoc": "18 USD", "material": [ { "type": "gold", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "gold_ring", "symbol": "[", @@ -2679,8 +2679,8 @@ "type": "ARMOR", "name": { "str": "diamond and silver ring" }, "description": "A silver ring with a diamond mounted on top of it.", - "price": 12000, - "price_postapoc": 25, + "price": "120 USD", + "price_postapoc": "25 cent", "material": [ { "type": "silver", "portion": 9 }, { "type": "diamond" } ], "color": "white" }, @@ -2691,8 +2691,8 @@ "description": "A silver ring with a garnet mounted on top of it.", "weight": "10 mg", "volume": "1 ml", - "price": 10000, - "price_postapoc": 25, + "price": "100 USD", + "price_postapoc": "25 cent", "material": [ { "type": "silver", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "silver_ring", "symbol": "[", @@ -2845,8 +2845,8 @@ "type": "ARMOR", "name": { "str": "diamond and platinum ring" }, "description": "A platinum ring with a diamond mounted on top of it.", - "price": 12000, - "price_postapoc": 50, + "price": "120 USD", + "price_postapoc": "50 cent", "material": [ { "type": "platinum", "portion": 9 }, { "type": "diamond" } ], "color": "white" }, @@ -2857,8 +2857,8 @@ "description": "A platinum ring with a garnet mounted on top of it.", "weight": "19 mg", "volume": "1 ml", - "price": 10000, - "price_postapoc": 25, + "price": "100 USD", + "price_postapoc": "25 cent", "material": [ { "type": "platinum", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "platinum_ring", "symbol": "[", @@ -2983,9 +2983,9 @@ "type": "ARMOR", "name": { "str": "diamond and gold bracelet" }, "description": "A gold bracelet with sparkling diamonds.", - "price": 200000, + "price": "2 kUSD", "looks_like": "gold_bracelet", - "price_postapoc": 25, + "price_postapoc": "25 cent", "material": [ { "type": "gold", "portion": 9 }, { "type": "diamond" } ], "color": "white" }, @@ -2996,8 +2996,8 @@ "description": "A gold bracelet with sparkling garnets.", "weight": "190 mg", "volume": "10 ml", - "price": 15000, - "price_postapoc": 25, + "price": "150 USD", + "price_postapoc": "25 cent", "material": [ { "type": "gold", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "gold_bracelet", "symbol": "[", @@ -3115,9 +3115,9 @@ "type": "ARMOR", "name": { "str": "diamond and silver bracelet" }, "description": "A silver bracelet with sparkling diamonds.", - "price": 200000, + "price": "2 kUSD", "looks_like": "silver_bracelet", - "price_postapoc": 25, + "price_postapoc": "25 cent", "material": [ { "type": "silver", "portion": 9 }, { "type": "diamond" } ], "color": "white" }, @@ -3128,8 +3128,8 @@ "description": "A silver bracelet with sparkling garnets.", "weight": "100 mg", "volume": "10 ml", - "price": 15000, - "price_postapoc": 25, + "price": "150 USD", + "price_postapoc": "25 cent", "material": [ { "type": "silver", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "silver_bracelet", "symbol": "[", @@ -3275,9 +3275,9 @@ "type": "ARMOR", "name": { "str": "diamond and platinum bracelet" }, "description": "A platinum bracelet with sparkling diamonds.", - "price": 200000, + "price": "2 kUSD", "looks_like": "platinum_bracelet", - "price_postapoc": 50, + "price_postapoc": "50 cent", "material": [ { "type": "platinum", "portion": 9 }, { "type": "diamond" } ], "color": "white" }, @@ -3288,8 +3288,8 @@ "description": "A platinum bracelet with sparkling garnets.", "weight": "190 g", "volume": "10 ml", - "price": 15000, - "price_postapoc": 25, + "price": "150 USD", + "price_postapoc": "25 cent", "material": [ { "type": "platinum", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "platinum_bracelet", "symbol": "[", @@ -3408,8 +3408,8 @@ "description": "A shiny, gold necklace adorned with a garnet pendant.", "weight": "70 g", "volume": "15 ml", - "price": 50000, - "price_postapoc": 25, + "price": "500 USD", + "price_postapoc": "25 cent", "material": [ { "type": "gold", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "gold_necklace", "symbol": "[", @@ -3535,8 +3535,8 @@ "description": "A shiny, silver necklace adorned with a garnet pendant.", "weight": "70 g", "volume": "15 ml", - "price": 50000, - "price_postapoc": 25, + "price": "500 USD", + "price_postapoc": "25 cent", "material": [ { "type": "silver", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "silver_necklace", "symbol": "[", @@ -3690,8 +3690,8 @@ "description": "A shiny, platinum necklace adorned with a garnet pendant.", "weight": "70 g", "volume": "15 ml", - "price": 50000, - "price_postapoc": 25, + "price": "500 USD", + "price_postapoc": "25 cent", "material": [ { "type": "platinum", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "platinum_necklace", "symbol": "[", @@ -3817,8 +3817,8 @@ "description": "A shiny, platinum tiara adorned with garnets.", "weight": "200 g", "volume": "100 ml", - "price": 500000, - "price_postapoc": 25, + "price": "5 kUSD", + "price_postapoc": "25 cent", "material": [ { "type": "platinum", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "crown_golden", "symbol": "[", @@ -3946,8 +3946,8 @@ "description": "A shiny, gold tiara adorned with garnets.", "weight": "190 g", "volume": "100 ml", - "price": 400000, - "price_postapoc": 25, + "price": "4 kUSD", + "price_postapoc": "25 cent", "material": [ { "type": "gold", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "crown_golden", "symbol": "[", @@ -4087,8 +4087,8 @@ "description": "A shiny, silver tiara adorned with garnets.", "weight": "130 g", "volume": "100 ml", - "price": 200000, - "price_postapoc": 25, + "price": "2 kUSD", + "price_postapoc": "25 cent", "material": [ { "type": "silver", "portion": 9 }, { "type": "gemstone" } ], "looks_like": "crown_golden", "symbol": "[", @@ -4268,8 +4268,8 @@ "volume": "38 ml", "longest_side": "28 mm", "//": "Length is derived from averaging out the case lengths of a .22 Long Rifle, .357 Magnum, and .50 Action Express cartridge.", - "price": 500, - "price_postapoc": 0, + "price": "5 USD", + "price_postapoc": "0 cent", "material": [ { "type": "brass", "portion": 2 }, { "type": "cotton" } ], "symbol": "[", "color": "yellow", @@ -4415,8 +4415,8 @@ "volume": "32 ml", "longest_side": "28 mm", "//": "Length is derived from averaging out the case lengths of a .22 Long Rifle, .357 Magnum, and .50 Action Express cartridge.", - "price": 40000, - "price_postapoc": 50, + "price": "400 USD", + "price_postapoc": "50 cent", "material": [ { "type": "brass", "portion": 2 }, { "type": "gold", "portion": 2 }, { "type": "gemstone" } ], "symbol": "[", "color": "yellow", diff --git a/data/json/items/armor/legs_armor.json b/data/json/items/armor/legs_armor.json index be0ea20b2a137..c6608e3f0fb4e 100644 --- a/data/json/items/armor/legs_armor.json +++ b/data/json/items/armor/legs_armor.json @@ -7,8 +7,8 @@ "description": "A pair of improvised shin guards made from broken pieces of a plank that are tied to your shins with rags and string.", "weight": "300 g", "volume": "1500 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "wood" ], "symbol": "[", @@ -39,8 +39,8 @@ "weight": "2040 g", "//": "The weight assumes four squares of carpet of about 25cm x 30cm.", "volume": "3 L", - "price": 20, - "price_postapoc": 10, + "price": "20 cent", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "plastic", "carpet_pilling" ], "symbol": "[", @@ -74,8 +74,8 @@ "weight": "1020 g", "//": "The weight assumes two squares of carpet of about 25cm x 30cm.", "volume": "2 L", - "price": 20, - "price_postapoc": 10, + "price": "20 cent", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "plastic", "carpet_pilling" ], "symbol": "[", @@ -108,8 +108,8 @@ "description": "A pair of leg guards made from the exoskeletons of insects.", "weight": "790 g", "volume": "5000 ml", - "price": 25000, - "price_postapoc": 750, + "price": "250 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": 1, "material": [ "chitin" ], "symbol": "[", @@ -153,7 +153,7 @@ "copy-from": "legguard_chitin", "looks_like": "legguard_chitin", "type": "ARMOR", - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", "name": { "str": "pair of biosilicified chitin leg guards", "str_pl": "pairs of biosilicified chitin leg guards" }, "description": "A pair of leg guards crafted from the carefully cleaned and pruned biosilicified exoskeletons of acidic ants. Acid-resistant but brittle.", "material": [ "acidchitin" ] @@ -185,8 +185,8 @@ "description": "A heavy pair of protective overalls worn by firefighters as protection against heat.", "weight": "2290 g", "volume": "5 L", - "price": 81500, - "price_postapoc": 500, + "price": "815 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "nomex", "kevlar", "lycra" ], "symbol": "[", @@ -238,8 +238,8 @@ "weight": "4212 g", "volume": "1500 ml", "longest_side": "11 cm", - "price": 7500, - "price_postapoc": 2000, + "price": "75 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "steel" ], "symbol": "[", @@ -352,8 +352,8 @@ "weight": "3159 g", "volume": "1125 ml", "longest_side": "10 cm", - "price": 5625, - "price_postapoc": 1500, + "price": "56 USD 25 cent", + "price_postapoc": "15 USD", "armor": [ { "material": [ { "type": "steel", "covered_by_mat": 100, "thickness": 1.2 } ], @@ -653,8 +653,8 @@ "description": "This leg armor, made of interlocking plates of burnished bronze, appears to be either a high-quality recreation or a genuine artifact. Despite having an ancient design, it is in mint condition aside from some battle damage. It covers from the upper thigh to the lower shin, and is of extremely high quality.", "weight": "5212 g", "volume": "1500 ml", - "price": 7500, - "price_postapoc": 3000, + "price": "75 USD", + "price_postapoc": "30 USD", "to_hit": -1, "material": [ "fancy_bronze", "leather" ], "symbol": "[", @@ -682,8 +682,8 @@ "description": "A pair of black leather chaps. Very tough and light, but doesn't offer any storage.", "weight": "1414 g", "volume": "1250 ml", - "price": 21000, - "price_postapoc": 250, + "price": "210 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -711,7 +711,7 @@ "description": "A pair of tough chaps made of Kevlar. Chainsaw kickbacks are potentially fatal; personal protective equipment like these chaps help protect your femoral arteries. The layered Kevlar is designed to fray on contact with the chain and bind up the tool.", "weight": "1519 g", "copy-from": "chaps_leather", - "price": 7800, + "price": "78 USD", "material": [ "kevlar" ] }, { @@ -721,8 +721,8 @@ "description": "A pair of reinforced pants used by fencers to prevent injuries. They don't cover the lower leg.", "weight": "450 g", "volume": "2 L", - "price": 2500, - "price_postapoc": 500, + "price": "25 USD", + "price_postapoc": "5 USD", "material": [ "cotton", "nylon" ], "symbol": "[", "looks_like": "pants", @@ -756,8 +756,8 @@ "description": "A pair of knee pads made of stout plastic and cloth.", "weight": "210 g", "volume": "1500 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "plastic", "cotton" ], "symbol": "[", @@ -785,8 +785,8 @@ "description": "A pair of bronze leg guards with a simple leather lining.", "weight": "2520 g", "volume": "5500 ml", - "price": 40000, - "price_postapoc": 750, + "price": "400 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": 1, "material": [ "bronze", "leather" ], "symbol": "[", @@ -831,8 +831,8 @@ "description": "A pair of polyurethane leg guards with neoprene backing.", "weight": "625 g", "volume": "3 L", - "price": 3400, - "price_postapoc": 500, + "price": "34 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "plastic", "neoprene" ], "symbol": "[", @@ -862,8 +862,8 @@ "description": "A full assembly of medieval leg protection. Cuisses, poleyns, and greaves, with leather straps to secure each piece and connect it as part of a set.", "weight": "4080 g", "volume": "6 L", - "price": 20000, - "price_postapoc": 4000, + "price": "200 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "steel", "leather" ], "symbol": "[", @@ -908,8 +908,8 @@ "description": "A pair of iron leg guards with a simple leather lining.", "weight": "2260 g", "volume": "5500 ml", - "price": 40000, - "price_postapoc": 1000, + "price": "400 USD", + "price_postapoc": "10 USD", "to_hit": 1, "material": [ "iron", "leather" ], "symbol": "[", @@ -955,8 +955,8 @@ "weight": "3500 g", "//": "The weight assumes four sheets of about 25cm x 30cm x 1.5mm.", "volume": "2500 ml", - "price": 40000, - "price_postapoc": 1000, + "price": "400 USD", + "price_postapoc": "10 USD", "to_hit": 1, "material": [ "lc_steel" ], "symbol": "[", @@ -996,8 +996,8 @@ "weight": "1750 g", "//": "The weight assumes two sheets of about 25cm x 30cm x 1.5mm.", "volume": "1200 ml", - "price": 20000, - "price_postapoc": 500, + "price": "200 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "lc_steel" ], "symbol": "[", @@ -1037,8 +1037,8 @@ "weight": "4900 g", "//": "The weight assumes 2 sheets of about 30cm x 50cm x 1.5mm and 2 sheets of about 30cm x 25cm x 1.5mm", "volume": "2 L", - "price": 500, - "price_postapoc": 400, + "price": "5 USD", + "price_postapoc": "4 USD", "to_hit": 1, "material": [ "lc_steel" ], "symbol": "m", @@ -1075,8 +1075,8 @@ "weight": "700 g", "//": "The weight assumes 3 sheets of about 15cm x 15cm x 1.5mm.", "volume": "1 L", - "price": 500, - "price_postapoc": 400, + "price": "5 USD", + "price_postapoc": "4 USD", "to_hit": 1, "material": [ "lc_steel" ], "repairs_with": [ "steel" ], @@ -1130,8 +1130,8 @@ "description": "Leg guards made of stacked paper sheets held together with duct tape.", "weight": "370 g", "volume": "500 ml", - "price": 230, - "price_postapoc": 50, + "price": "2 USD 30 cent", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "paper" ], "symbol": "[", @@ -1160,8 +1160,8 @@ "description": "Leg guards made of thick chunks of tire held together with duct tape.", "weight": "2400 g", "volume": "2000 ml", - "price": 2300, - "price_postapoc": 250, + "price": "23 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "rubber" ], "symbol": "[", @@ -1190,8 +1190,8 @@ "description": "A pair of leg guards made from scraps of metal secured by simple strings.", "weight": "3104 g", "volume": "5 L", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "budget_steel", "cotton" ], "symbol": "[", @@ -1236,8 +1236,8 @@ "description": "A pair of leg guards made from thick chunks of tire secured by simple strings; the loose collection of rubber plates provides decent but not the most convenient protection.", "weight": "4800 g", "volume": "5 L", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "rubber" ], "symbol": "[", @@ -1281,8 +1281,8 @@ "description": "A pair of thick jeans interwoven with Kevlar for added durability and sporting integrated kneepads and flank protection, typically worn by motorcyclists to protect from road rash.", "weight": "1340 g", "volume": "2500 ml", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "kevlar", "denim", "plastic_pad" ], "symbol": "[", "looks_like": "jeans", @@ -1353,8 +1353,8 @@ "description": "A pair of jeans reinforced with hard plastic knee pads and metal sheets. The end product is not very sturdy and somewhat cumbersome, but protective.", "weight": "3810 g", "volume": "3500 ml", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "material": [ "denim", "plastic", "lc_steel" ], "symbol": "[", "looks_like": "motorbike_pants", @@ -1422,8 +1422,8 @@ "name": { "str": "hardened armored jeans", "str_pl": "pairs of hardened armored jeans" }, "copy-from": "jeans_mod", "description": "A pair of jeans reinforced with hard plastic knee pads and hardened steel sheets. Although its high protection outweighs its encumbrance, it's not really sturdy.", - "price": 15000, - "price_postapoc": 1250, + "price": "150 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "denim", "plastic", "ch_steel" ], "symbol": "[", "looks_like": "motorbike_pants", @@ -1460,8 +1460,8 @@ "description": "This is a heavy pair of trousers armored in Kevlar, Nomex, and foam padding, for use by explosive ordnance disposal technicians. While it offers near complete coverage in fragmentation resistant materials, it still offers insufficient protection from ballistic threats.", "weight": "6400 g", "volume": "7 L", - "price": 1006000, - "price_postapoc": 12000, + "price": "10 kUSD 60 USD", + "price_postapoc": "120 USD", "warmth": 65, "material": [ "kevlar", "nomex" ], "symbol": "[", @@ -1492,8 +1492,8 @@ "description": "This is a heavy pair of trousers armored in Kevlar, Nomex, and foam padding, for use by explosive ordnance disposal technicians in 'non-permissive environments'. While it offers near complete coverage in fragmentation resistant materials, it still offers insufficient protection from ballistic threats. These trousers are lighter than normal EOD armor to provide more maneuverability.", "weight": "3000 g", "volume": "7 L", - "price": 273440, - "price_postapoc": 3300, + "price": "2 kUSD 734 USD 40 cent", + "price_postapoc": "33 USD", "warmth": 40, "material": [ "kevlar", "nomex" ], "symbol": "[", @@ -1524,8 +1524,8 @@ "description": "A light leg guard, 1.25 mm at the thickest. This one has been made with mild steel.", "weight": "2500 g", "volume": "2916 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "lc_steel", "lc_steel_chain" ], "symbol": "[", @@ -1631,8 +1631,8 @@ "description": "A leg guard, 1.75 mm at the thickest. This one has been made with mild steel.", "weight": "3333 g", "volume": "2916 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "lc_steel", "lc_steel_chain" ], "symbol": "[", @@ -1738,8 +1738,8 @@ "description": "A heavy leg guard, 2.25 mm at the thickest. This one has been made with mild steel.", "weight": "4166 g", "volume": "2916 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "lc_steel", "lc_steel_chain" ], "symbol": "[", @@ -1845,7 +1845,7 @@ "description": "A pair of tough canvas pants with sections from leather pants affixed, excluding the joints. Offers mild protection without compromising mobility too much, but a lot of the pockets have been removed to make room for the leather.", "weight": "1970 g", "volume": "2500 ml", - "price_postapoc": 1200, + "price_postapoc": "12 USD", "looks_like": "technician_pants_gray", "to_hit": 1, "material": [ "canvas", "leather" ], @@ -1900,7 +1900,7 @@ "description": "A pair of tough canvas pants with sections of cotton sewn onto it in a crossing pattern, clearly done by an amateur.", "weight": "1970 g", "volume": "2500 ml", - "price_postapoc": 1200, + "price_postapoc": "12 USD", "looks_like": "technician_pants_gray", "to_hit": 1, "material": [ "canvas", "cotton" ], @@ -1954,8 +1954,8 @@ "description": "Hard leg guards used by riot police.", "weight": "500 g", "volume": "2500 ml", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -3, "material": [ "thermo_resin", "plastic_pad" ], "symbol": "[", @@ -1992,8 +1992,8 @@ "description": "A pair of tough leather leg guards. Light and comfortable.", "weight": "765 g", "volume": "2 L", - "price": 4000, - "price_postapoc": 1000, + "price": "40 USD", + "price_postapoc": "10 USD", "to_hit": 1, "material": [ "leather" ], "symbol": "[", diff --git a/data/json/items/armor/legs_clothes.json b/data/json/items/armor/legs_clothes.json index e18e38648558d..80f2cf51980be 100644 --- a/data/json/items/armor/legs_clothes.json +++ b/data/json/items/armor/legs_clothes.json @@ -6,8 +6,8 @@ "description": "A traditional, ankle-length Buddhist skirt. The bottom protrudes, and appears in the rough shape of a triangle.", "weight": "500 g", "volume": "250 ml", - "price": 6500, - "price_postapoc": 50, + "price": "65 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "kilt", @@ -41,8 +41,8 @@ "description": "A pair of basketball shorts. Comfortable and light.", "weight": "190 g", "volume": "1 L", - "price": 1300, - "price_postapoc": 50, + "price": "13 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -89,8 +89,8 @@ "description": "A well-made pair of old-fashioned pants, made of stiff yet baggy material. Comfortable, but lacks pockets.", "weight": "520 g", "volume": "1750 ml", - "price": 4900, - "price_postapoc": 50, + "price": "49 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -116,8 +116,8 @@ "description": "A breezy red cheerleader skirt. Easy to move in, and of an acceptable length for most real cheerleading.", "weight": "100 g", "volume": "250 ml", - "price": 6500, - "price_postapoc": 50, + "price": "65 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "skirt", @@ -137,8 +137,8 @@ "description": "A very short and breezy red cheerleader skirt. Easy to move in, but you will probably need shorts underneath to safely practice cheerleading in this.", "weight": "70 g", "volume": "200 ml", - "price": 6500, - "price_postapoc": 50, + "price": "65 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "skirt", @@ -157,8 +157,8 @@ "description": "Waterproof plastic fishing waders with a single large front pocket.", "weight": "1360 g", "volume": "9500 ml", - "price": 10000, - "price_postapoc": 50, + "price": "100 USD", + "price_postapoc": "50 cent", "material": [ "plastic" ], "symbol": "[", "looks_like": "pants_ski", @@ -190,8 +190,8 @@ "description": "A simple pair of short shorts.", "weight": "92 g", "volume": "250 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "boxer_briefs", @@ -207,8 +207,8 @@ "description": "A simple pair of fur short shorts.", "weight": "118 g", "volume": "250 ml", - "price": 5500, - "price_postapoc": 100, + "price": "55 USD", + "price_postapoc": "1 USD", "material": [ "fur" ], "symbol": "[", "looks_like": "hot_pants_leather", @@ -225,8 +225,8 @@ "description": "A simple pair of leather short shorts.", "weight": "106 g", "volume": "250 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "hot_pants", @@ -243,8 +243,8 @@ "description": "A pair of jeans with two deep pockets.", "weight": "600 g", "volume": "2 L", - "price": 5000, - "price_postapoc": 150, + "price": "50 USD", + "price_postapoc": "1 USD 50 cent", "to_hit": 1, "material": [ "denim" ], "symbol": "[", @@ -299,8 +299,8 @@ "description": "A pair of jeans that has been ripped over the knees. It may have been fashionable before Cataclysm, but it's just a pair of sub-par jeans now.", "weight": "580 g", "volume": "2 L", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "denim" ], "symbol": "[", @@ -361,8 +361,8 @@ "description": "A pair of vintage jeans that has started to lose its color. It appears to be slightly heavier and thicker; but hey, don't let that stop you from wearing the fashion of the olden days!", "weight": "700 g", "volume": "2 L", - "price": 11500, - "price_postapoc": 250, + "price": "115 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "denim" ], "symbol": "[", @@ -429,8 +429,8 @@ "description": "A pair of skinny jeans with two pockets.", "weight": "500 g", "volume": "1300 ml", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "to_hit": 2, "material": [ "denim" ], "symbol": "[", @@ -484,8 +484,8 @@ "description": "A pair of tight-fitting candy-apple-red jeans with two deep pockets.", "weight": "600 g", "volume": "2 L", - "price": 5000, - "price_postapoc": 150, + "price": "50 USD", + "price_postapoc": "1 USD 50 cent", "to_hit": 1, "material": [ "denim" ], "symbol": "[", @@ -534,8 +534,8 @@ "description": "No true Scotsman would leave home without his kilt.", "weight": "500 g", "volume": "1500 ml", - "price": 6500, - "price_postapoc": 50, + "price": "65 USD", + "price_postapoc": "50 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "skirt", @@ -564,8 +564,8 @@ "description": "No true Scotsman would leave home without his kilt.", "weight": "1814 g", "volume": "1500 ml", - "price": 6500, - "price_postapoc": 100, + "price": "65 USD", + "price_postapoc": "1 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "kilt", @@ -594,8 +594,8 @@ "description": "Skin-tight nylon leggings, sometimes used when exercising, that keep your legs nice and warm.", "weight": "155 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "lycra" ], "symbol": "[", "looks_like": "leg_warmers", @@ -703,8 +703,8 @@ "description": "Rags stitched together and tied into a makeshift loincloth. Covers your modesty, but not much else.", "weight": "75 g", "volume": "250 ml", - "price": 900, - "price_postapoc": 10, + "price": "9 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "briefs", @@ -720,8 +720,8 @@ "description": "A fur pelt tied into a loincloth. Covers your modesty, but not much else. Now you are a true barbarian warrior.", "weight": "250 g", "volume": "250 ml", - "price": 7500, - "price_postapoc": 10, + "price": "75 USD", + "price_postapoc": "10 cent", "material": [ "fur" ], "symbol": "[", "looks_like": "loincloth_leather", @@ -738,8 +738,8 @@ "description": "Leather patches stitched together and tied into a makeshift loincloth. Covers your modesty, but not much else.", "weight": "550 g", "volume": "250 ml", - "price": 7500, - "price_postapoc": 10, + "price": "75 USD", + "price_postapoc": "10 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "loincloth", @@ -755,8 +755,8 @@ "description": "Bits of wool stitched together and tied into a makeshift loincloth. Covers your modesty, but not much else.", "weight": "56 g", "volume": "250 ml", - "price": 900, - "price_postapoc": 10, + "price": "9 USD", + "price_postapoc": "10 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "loincloth", @@ -773,8 +773,8 @@ "description": "Apparently the microskirt wasn't short enough.", "weight": "115 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 10, + "price": "30 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "skirt", @@ -790,8 +790,8 @@ "description": "A pair of khaki pants. Slightly warmer than jeans.", "weight": "560 g", "volume": "2 L", - "price": 4900, - "price_postapoc": 100, + "price": "49 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -1261,8 +1261,8 @@ "description": "A tough pair of pants lined with pockets. Favored by the military.", "weight": "720 g", "volume": "2500 ml", - "price": 3500, - "price_postapoc": 250, + "price": "35 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "pants_cargo", @@ -1345,8 +1345,8 @@ "description": "A pair of pants lined with pockets, offering lots of storage.", "weight": "670 g", "volume": "2250 ml", - "price": 2500, - "price_postapoc": 250, + "price": "25 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "pants", @@ -1407,8 +1407,8 @@ "description": "In a pinch, these pants can be used for an impromptu game of checkers.", "weight": "630 g", "volume": "1250 ml", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "pants", @@ -1455,8 +1455,8 @@ "description": "A hefty pair of fur-lined pants.", "weight": "920 g", "volume": "4 L", - "price": 20000, - "price_postapoc": 100, + "price": "200 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "cotton", "fur" ], "symbol": "[", @@ -1515,8 +1515,8 @@ "description": "A pair of black trousers with calf and waistband ties. Comfortable to use but lacks pockets.", "weight": "400 g", "volume": "1500 ml", - "price": 4800, - "price_postapoc": 40, + "price": "48 USD", + "price_postapoc": "40 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "pants", @@ -1533,8 +1533,8 @@ "description": "A pair of black leather pants. Very tough, but cumbersome and without much storage.", "weight": "980 g", "volume": "2500 ml", - "price": 12000, - "price_postapoc": 250, + "price": "120 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -1569,8 +1569,8 @@ "description": "A pair of pants meant for alpine skiing.", "weight": "450 g", "volume": "2 L", - "price": 6500, - "price_postapoc": 250, + "price": "65 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "pants", @@ -1618,8 +1618,8 @@ "description": "A pair of tight-fitting police breeches. Offers lots of mobility for motorized officers.", "weight": "560 g", "volume": "1500 ml", - "price": 4900, - "price_postapoc": 100, + "price": "49 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -1643,8 +1643,8 @@ "description": "A pair of dark blue shorts, the kind used by postal service workers.", "weight": "230 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -1705,8 +1705,8 @@ "description": "A pair of red shorts with white trim. For when Santa is on summer vacation.", "weight": "230 g", "volume": "1 L", - "price": 2200, - "price_postapoc": 50, + "price": "22 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -1732,8 +1732,8 @@ "description": "A pair of red pants with white faux fur trim, commonly used by bearded men on Christmas. Somewhat warm and has two deep pockets.", "weight": "800 g", "volume": "3 L", - "price": 20000, - "price_postapoc": 100, + "price": "200 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "cotton", "faux_fur" ], "symbol": "[", @@ -1782,8 +1782,8 @@ "description": "A pair of khaki shorts.", "weight": "230 g", "volume": "1 L", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -1845,8 +1845,8 @@ "description": "A pair of shorts lined with pockets, offering decent storage.", "weight": "340 g", "volume": "1500 ml", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -1922,8 +1922,8 @@ "description": "A pair of denim shorts.", "weight": "260 g", "volume": "1250 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "denim" ], "symbol": "[", @@ -1978,8 +1978,8 @@ "//": "supossed to be a 10 oz denim skirt", "weight": "300 g", "volume": "700 ml", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "to_hit": 2, "material": [ "denim" ], "symbol": "[", @@ -2000,8 +2000,8 @@ "description": "A short, breezy cotton skirt. Easy to move in, but only has a single small pocket.", "weight": "225 g", "volume": "250 ml", - "price": 6500, - "price_postapoc": 50, + "price": "65 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "kilt", @@ -2105,8 +2105,8 @@ "description": "A long skirt with no pockets. Slightly more cumbersome but warmer than a normal skirt.", "weight": "500 g", "volume": "550 ml", - "price": 6500, - "price_postapoc": 75, + "price": "65 USD", + "price_postapoc": "75 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "kilt", @@ -2123,8 +2123,8 @@ "description": "A primitive skirt made from grass. Not actually useful for much other than looking like a tribal person.", "weight": "72 g", "volume": "500 ml", - "price": 100, - "price_postapoc": 5, + "price": "1 USD", + "price_postapoc": "5 cent", "material": [ "dry_plant" ], "symbol": "[", "looks_like": "kilt", @@ -2144,8 +2144,8 @@ "description": "A very short leather skirt, clearly designed to look good, not be practical.", "weight": "230 g", "volume": "250 ml", - "price": 9500, - "price_postapoc": 50, + "price": "95 USD", + "price_postapoc": "50 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "skirt", @@ -2170,8 +2170,8 @@ "description": "A pair of pants with horizontal black and white stripes.", "weight": "560 g", "volume": "2 L", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -2219,8 +2219,8 @@ "description": "A pair of gray canvas work pants.", "weight": "1040 g", "volume": "2 L", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "canvas" ], "symbol": "[", @@ -2273,8 +2273,8 @@ "description": "A tough pair of pants lined with pockets, thickly padded for warmth. Favored by the military.", "weight": "1000 g", "volume": "2500 ml", - "price": 4375, - "price_postapoc": 250, + "price": "43 USD 75 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "pants_army", @@ -2336,8 +2336,8 @@ "description": "Plain white zubon for use in martial arts.", "weight": "150 g", "volume": "750 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "pants", @@ -2354,8 +2354,8 @@ "description": "A water-resistant pair of lightweight, flexible hiking pants with a good number of pockets.", "weight": "250 g", "volume": "1750 ml", - "price": 5000, - "price_postapoc": 300, + "price": "50 USD", + "price_postapoc": "3 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "pants", @@ -2410,8 +2410,8 @@ "description": "Coated in more pockets than is probably either necessary or healthy and looking like they belong within a SWAT locker, these rugged combat pants possess a water-repellent coating, tough double-stitched seams, reinforced belt loops, and articulated knees.", "weight": "720 g", "volume": "2500 ml", - "price": 8099, - "price_postapoc": 250, + "price": "80 USD 99 cent", + "price_postapoc": "2 USD 50 cent", "material": [ { "type": "nylon", "portion": 7 }, { "type": "cotton", "portion": 3 } ], "symbol": "[", "looks_like": "pants", @@ -2584,8 +2584,8 @@ "description": "A short skirt for the Boston-Chan costume.", "weight": "230 g", "volume": "250 ml", - "price": 9500, - "price_postapoc": 50, + "price": "95 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "skirt", diff --git a/data/json/items/armor/masks.json b/data/json/items/armor/masks.json index b8cea744fd057..981625e6e4be6 100644 --- a/data/json/items/armor/masks.json +++ b/data/json/items/armor/masks.json @@ -6,8 +6,8 @@ "description": "A warm covering that protects the head and face from the cold.", "weight": "70 g", "volume": "250 ml", - "price": 3500, - "price_postapoc": 50, + "price": "35 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_cotton", @@ -34,7 +34,7 @@ "name": { "str": "cut-resistant balaclava" }, "description": "A face covering that helps protect from slashes and cuts, in addition to the cold.", "copy-from": "balclava", - "price": 7600, + "price": "76 USD", "material": [ "kevlar" ] }, { @@ -45,8 +45,8 @@ "description": "A cotton bandana, worn over the mouth for warmth and minor protection from dust and other contaminants.", "weight": "35 g", "volume": "250 ml", - "price": 600, - "price_postapoc": 10, + "price": "6 USD", + "price_postapoc": "10 cent", "use_action": { "type": "transform", "msg": "You adjust the %s to cover your head.", @@ -69,8 +69,8 @@ "description": "A tight mask made of black leather. The eyes and mouth can be closed using zippers.", "weight": "210 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "to_hit": -3, "material": [ "leather" ], "symbol": "[", @@ -110,8 +110,8 @@ "description": "A tough hood made of steel mesh used by fencers.", "weight": "520 g", "volume": "1250 ml", - "price": 3500, - "price_postapoc": 300, + "price": "35 USD", + "price_postapoc": "3 USD", "material": [ "cotton", "mc_steel" ], "symbol": "[", "looks_like": "balclava", @@ -152,8 +152,8 @@ "description": "A protective reinforced Kevlar mask that covers the face. Provides excellent protection from ballistic threats.", "weight": "512 g", "volume": "750 ml", - "price": 20000, - "price_postapoc": 1250, + "price": "200 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -3, "material": [ "kevlar_rigid", "plastic" ], "symbol": "[", @@ -172,8 +172,8 @@ "description": "A simple piece of cotton that straps over the mouth. Provides a small amount of protection from airborne illness and dust.", "weight": "168 g", "volume": "100 ml", - "price": 800, - "price_postapoc": 10, + "price": "8 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "cotton" ], "symbol": "[", @@ -277,8 +277,8 @@ "description": "Remember, remember, the fifth of November.", "weight": "45 g", "volume": "750 ml", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "plastic" ], "symbol": "[", @@ -299,8 +299,8 @@ "description": "A protective face mask made of thick plastic. Commonly worn by hockey goalies.", "weight": "228 g", "volume": "750 ml", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "plastic" ], "symbol": "[", @@ -319,8 +319,8 @@ "description": "A t-shirt with the sleeves tied behind the back of one's head. These are usually worn by rioters to hide their identity.", "weight": "123 g", "volume": "500 ml", - "price": 800, - "price_postapoc": 10, + "price": "8 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -340,8 +340,8 @@ "description": "A plastic mask that covers the face.", "weight": "50 g", "volume": "750 ml", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "plastic" ], "symbol": "[", @@ -412,8 +412,8 @@ "description": "A fake white beard that straps over the mouth. Perfect for your Santa costume!", "weight": "200 g", "volume": "150 ml", - "price": 800, - "price_postapoc": 10, + "price": "8 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "cotton" ], "symbol": "[", @@ -432,8 +432,8 @@ "description": "A simple piece of cotton that covers your face.", "weight": "160 g", "volume": "100 ml", - "price": 800, - "price_postapoc": 10, + "price": "8 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "cotton" ], "symbol": "[", @@ -503,8 +503,8 @@ "description": "A flimsy plastic pumpkin mask to wear over your head.", "weight": "120 g", "volume": "250 ml", - "price": 150, - "price_postapoc": 20, + "price": "1 USD 50 cent", + "price_postapoc": "20 cent", "material": [ "plastic" ], "symbol": "[", "color": "white", @@ -521,8 +521,8 @@ "description": "A flimsy leather zombie mask. When zombies were still works of fiction.", "weight": "100 g", "volume": "250 ml", - "price": 150, - "price_postapoc": 20, + "price": "1 USD 50 cent", + "price_postapoc": "20 cent", "material": [ "leather" ], "symbol": "[", "color": "white", @@ -582,8 +582,8 @@ "description": "A beaked leather mask used by plague doctors.", "weight": "50 g", "volume": "780 ml", - "price": 5000, - "price_postapoc": 10, + "price": "50 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "leather" ], "symbol": "[", diff --git a/data/json/items/armor/misc.json b/data/json/items/armor/misc.json index 69eb5a8799505..1dc8ef0798a6f 100644 --- a/data/json/items/armor/misc.json +++ b/data/json/items/armor/misc.json @@ -6,8 +6,8 @@ "description": "A colorful and ridiculous wig fit for a clown.", "weight": "125 g", "volume": "1 L", - "price": 2500, - "price_postapoc": 10, + "price": "25 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "cotton" ], "symbol": "[", @@ -25,8 +25,8 @@ "description": "A red latex nose often worn by clowns. Squeezing the nose makes it honk.", "weight": "100 g", "volume": "100 ml", - "price": 800, - "price_postapoc": 10, + "price": "8 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": ".", "use_action": { @@ -47,8 +47,8 @@ "description": "A delicate golden crown featuring flowering trees.", "weight": "1000 g", "volume": "1 L", - "price": 30000, - "price_postapoc": 100, + "price": "300 USD", + "price_postapoc": "1 USD", "material": [ "gold" ], "symbol": "[", "looks_like": "hat_cotton", @@ -64,8 +64,8 @@ "description": "A golden crown for the monarch of survivors.", "weight": "1000 g", "volume": "1 L", - "price": 30000, - "price_postapoc": 150, + "price": "300 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "gold" ], "symbol": "[", "looks_like": "crown_golden", @@ -82,8 +82,8 @@ "description": "A protective piece of equipment commonly used by athletes, worn inside the mouth to protect your teeth.", "weight": "20 g", "volume": "430 ml", - "price": 800, - "price_postapoc": 50, + "price": "8 USD", + "price_postapoc": "50 cent", "material": [ "plastic" ], "symbol": "[", "color": "yellow", @@ -99,8 +99,8 @@ "description": "A skinny black and white checkered necktie.", "weight": "12 g", "volume": "50 ml", - "price": 750, - "price_postapoc": 10, + "price": "7 USD 50 cent", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "color": "dark_gray", @@ -125,8 +125,8 @@ "description": "A large sleeping bag lined with fur, with a strap for carrying it on your back when not in use. Who needs a tent? It is currently unrolled; activate it roll it up for easy storage.", "weight": "1175 g", "volume": "2 L", - "price": 32500, - "price_postapoc": 2000, + "price": "325 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "cotton", "fur" ], "symbol": "[", @@ -168,8 +168,8 @@ "description": "A simple black bow tie. Best worn with a suit.", "weight": "5 g", "volume": "5 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "color": "black", @@ -182,8 +182,8 @@ "description": "A clip-on necktie with blue and silver stripes. It's quick and easy to put on, and really, who's going to know the difference?", "weight": "10 g", "volume": "20 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "color": "blue", @@ -196,8 +196,8 @@ "description": "An ordinary green necktie. Knowing how to properly tie it takes some practice, but it's an important skill to learn. Clip-ons are for children.", "weight": "15 g", "volume": "25 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "color": "green", @@ -210,8 +210,8 @@ "description": "A pair of white vampire fangs made of plastic.", "weight": "23 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": "[", @@ -228,8 +228,8 @@ "description": "A lacy white wedding veil.", "weight": "78 g", "volume": "750 ml", - "price": 8000, - "price_postapoc": 10, + "price": "80 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -247,8 +247,8 @@ "description": "A plastic sheet with several grommets for securing it with rope or cord. Useful for improvised rain protection.", "weight": "1244 g", "volume": "2 L", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "plastic" ], "symbol": "[", @@ -273,8 +273,8 @@ "description": "A set of leather straps attached to a wooden box, to fulfil the commandment written in Deuteronomy that states \"And you shall set these words of Mine upon your heart and upon your soul, and bind them for a sign upon your hand and they shall be for ornaments between your eyes.\" This one is for the left arm.", "weight": "250 g", "volume": "250 ml", - "price": 6400, - "price_postapoc": 250, + "price": "64 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "leather" ], "symbol": "[", @@ -292,8 +292,8 @@ "description": "A set of leather straps attached to a wooden box, to fulfil the commandment written in Deuteronomy that states \"And you shall set these words of Mine upon your heart and upon your soul, and bind them for a sign upon your hand and they shall be for ornaments between your eyes.\" This one is for the right arm.", "weight": "250 g", "volume": "250 ml", - "price": 6400, - "price_postapoc": 250, + "price": "64 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "leather" ], "symbol": "[", @@ -311,8 +311,8 @@ "description": "A set of leather straps attached to a wooden box, to fulfil the commandment written in Deuteronomy that states \"And you shall set these words of Mine upon your heart and upon your soul, and bind them for a sign upon your hand and they shall be for ornaments between your eyes.\" This one is for the forehead.", "weight": "200 g", "volume": "250 ml", - "price": 6400, - "price_postapoc": 250, + "price": "64 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "leather" ], "symbol": "[", @@ -329,8 +329,8 @@ "description": "A long blue hair wig for the Boston-Chan costume.", "weight": "125 g", "volume": "750 ml", - "price": 2500, - "price_postapoc": 10, + "price": "25 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "cotton" ], "symbol": "[", @@ -358,8 +358,8 @@ ], "weight": "5 g", "volume": "1 ml", - "price": 10, - "price_postapoc": 1, + "price": "10 cent", + "price_postapoc": "1 cent", "material": [ "steel" ], "symbol": "[", "color": "light_gray", diff --git a/data/json/items/armor/pets_cow_armor.json b/data/json/items/armor/pets_cow_armor.json index a8843a81bbf11..41770ce27c91d 100644 --- a/data/json/items/armor/pets_cow_armor.json +++ b/data/json/items/armor/pets_cow_armor.json @@ -17,8 +17,8 @@ "color": "yellow", "name": { "str": "Kevlar-lined cow peto" }, "description": "A heavy, mattress-like armor of cloth, leather and thick linings of Kevlar, originally used as protection in bullfighting. You could put this on a friendly cow.", - "price": 60000, - "price_postapoc": 6000, + "price": "600 USD", + "price_postapoc": "60 USD", "material": [ "cotton", "leather", "kevlar_layered" ], "weight": "35 kg", "volume": "180 L", @@ -31,8 +31,8 @@ "color": "green", "name": { "str": "biosilicified chitin cow armor" }, "description": "A makeshift assembly of criniere, peytral and croupiere made from biosilicified chitin fitted to a thin mesh. You could put this on a friendly cow. Acid-resistant but brittle.", - "price": 145000, - "price_postapoc": 10000, + "price": "1 kUSD 450 USD", + "price_postapoc": "100 USD", "material": [ "acidchitin" ], "weight": "40 kg", "volume": "180 L", @@ -46,8 +46,8 @@ "color": "green", "name": { "str": "chitin cow armor" }, "description": "A makeshift assembly of criniere, peytral and croupiere made from chitin fitted to a thin mesh. You could put this on a friendly cow.", - "price": 110000, - "price_postapoc": 7000, + "price": "1 kUSD 100 USD", + "price_postapoc": "70 USD", "material": [ "chitin" ], "weight": "40 kg", "volume": "180 L", @@ -61,8 +61,8 @@ "color": "green", "name": { "str": "chainmail cow armor" }, "description": "A heavy covering of chainmail, suitably made for cows as protection. You could put this on a friendly cow.", - "price": 50000, - "price_postapoc": 12000, + "price": "500 USD", + "price_postapoc": "120 USD", "material": [ "steel", "leather" ], "weight": "50 kg", "volume": "180 L", @@ -75,8 +75,8 @@ "color": "green", "name": { "str": "boiled leather cow barding with caparison", "str_pl": "boiled leather cow bardings with caparison" }, "description": "A full barding for cows consisting of boiled leather and cloth undercovering. This caparison depicts a battle between a monstrous dragon and regal griffin. You could put this on a friendly cow.", - "price": 35000, - "price_postapoc": 3500, + "price": "350 USD", + "price_postapoc": "35 USD", "material": [ "cotton", "leather" ], "weight": "18 kg", "volume": "180 L", @@ -89,8 +89,8 @@ "color": "green", "name": { "str": "boiled leather cow barding with bones", "str_pl": "boiled leather cow bardings with bones" }, "description": "Decorative bones affixed to leather cow barding to invoke fear in bandits and raiders and traders all! You could put this on a friendly cow.", - "price": 55000, - "price_postapoc": 3500, + "price": "550 USD", + "price_postapoc": "35 USD", "material": [ "leather" ], "weight": "20 kg", "volume": "180 L", @@ -103,8 +103,8 @@ "color": "green", "name": { "str": "cow rain sheet" }, "description": "A thin plastic covering designed to keep a cow dry in the rain. You could put this on a friendly cow.", - "price": 18000, - "price_postapoc": 1800, + "price": "180 USD", + "price_postapoc": "18 USD", "material": [ "neoprene", "plastic" ], "weight": "17 kg", "volume": "180 L", @@ -117,8 +117,8 @@ "color": "brown", "name": { "str": "iron cow armor" }, "description": "A heavy covering of strategically-placed iron plates and leather, suitably made for cows as protection. You could put this on a friendly cow.", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "material": [ "iron", "leather" ], "weight": "35 kg", "volume": "180 L", @@ -131,8 +131,8 @@ "color": "light_gray", "name": { "str": "steel cow armor" }, "description": "A heavy covering of steel plate and leather, suitably made for cows as protection. You could put this on a friendly cow.", - "price": 70000, - "price_postapoc": 18000, + "price": "700 USD", + "price_postapoc": "180 USD", "material": [ "steel", "leather" ], "weight": "60 kg", "volume": "180 L", @@ -145,8 +145,8 @@ "color": "yellow", "name": { "str": "bronze cow armor" }, "description": "A heavy covering of strategically-placed bronze plates and leather, suitably made for cows as protection. You could put this on a friendly cow.", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "material": [ "bronze", "leather" ], "weight": "35 kg", "volume": "180 L", diff --git a/data/json/items/armor/pets_dog_armor.json b/data/json/items/armor/pets_dog_armor.json index 33c806754ffb1..2895bfd196754 100644 --- a/data/json/items/armor/pets_dog_armor.json +++ b/data/json/items/armor/pets_dog_armor.json @@ -7,8 +7,8 @@ "color": "blue", "name": { "str": "Kevlar dog harness", "str_pl": "Kevlar dog harnesses" }, "description": "A blue bulletproof harness, designed to be worn by canines in the service of local law enforcement, that protects from the shoulders to the abdomen. You could put this on a friendly dog.", - "price": 30000, - "price_postapoc": 1000, + "price": "300 USD", + "price_postapoc": "10 USD", "material": [ "kevlar_layered" ], "weight": "2150 g", "volume": "4500 ml", @@ -57,8 +57,8 @@ "color": "green", "name": { "str": "biosilicified chitin dog mesh harness", "str_pl": "biosilicified chitin dog mesh harnesses" }, "description": "A makeshift canine harness of biosilicified chitin fitted to a thin mesh, protecting from the neck to the flank. You could put this on a friendly dog. Acid-resistant but brittle.", - "price": 50000, - "price_postapoc": 2500, + "price": "500 USD", + "price_postapoc": "25 USD", "material": [ "acidchitin" ], "weight": "5362 g", "environmental_protection": 7 @@ -69,8 +69,8 @@ "copy-from": "acidchitin_harness_dog", "name": { "str": "chitin dog mesh harness", "str_pl": "chitin dog mesh harnesses" }, "description": "A makeshift canine harness of chitin fitted to a thin mesh, protecting from the neck to the flank. You could put this on a friendly dog.", - "price": 35000, - "price_postapoc": 2000, + "price": "350 USD", + "price_postapoc": "20 USD", "material": [ "chitin" ], "environmental_protection": 4 }, @@ -84,8 +84,8 @@ "str": "Protecteth yon hund fram ful daemons! You could put this on a friendly dog.", "//~": "Description is reference to Churl scenario text - 'protect your dog from foul undead'." }, - "price": 25000, - "price_postapoc": 3500, + "price": "250 USD", + "price_postapoc": "35 USD", "material": [ "iron", "budget_steel" ], "weight": "6434 g", "material_thickness": 0.5 @@ -97,8 +97,8 @@ "color": "brown", "name": { "str": "leather dog harness", "str_pl": "leather dog harnesses" }, "description": "A neck to hip harness made from leather that can be attached to a canine for protection. You could put this on a friendly dog.", - "price": 17500, - "price_postapoc": 1750, + "price": "175 USD", + "price_postapoc": "17 USD 50 cent", "material": [ "leather" ], "weight": "2145 g", "extend": { "flags": [ "NO_SALVAGE" ] } @@ -109,8 +109,8 @@ "copy-from": "leather_harness_dog", "name": { "str": "leather dog harness with bones", "str_pl": "leather dog harnesses with bones" }, "description": "Decorative bones affixed to a leather dog harness for that true post-apocalyptic style, including a skull bone headpiece! You could put this on a friendly dog.", - "price": 19000, - "price_postapoc": 1900, + "price": "190 USD", + "price_postapoc": "19 USD", "material": [ "leather" ], "weight": "2645 g" }, @@ -121,8 +121,8 @@ "color": "dark_gray", "name": { "str": "rubber dog rainsuit" }, "description": "A thin plastic covering designed to keep a dog dry in the rain. You could put this on a friendly dog.", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "material": [ "neoprene", "plastic", "rubber" ], "weight": "1960 g", "material_thickness": 0.1, diff --git a/data/json/items/armor/pets_horse_armor.json b/data/json/items/armor/pets_horse_armor.json index 01270a965c801..4ecf6c8cb53b3 100644 --- a/data/json/items/armor/pets_horse_armor.json +++ b/data/json/items/armor/pets_horse_armor.json @@ -17,8 +17,8 @@ "color": "yellow", "name": { "str": "Kevlar-lined horse peto" }, "description": "A heavy, mattress-like armor of cloth, leather and thick linings of Kevlar, originally used as protection in bullfighting. You could put this on a friendly horse.", - "price": 50000, - "price_postapoc": 5000, + "price": "500 USD", + "price_postapoc": "50 USD", "material": [ "cotton", "leather", "kevlar_layered" ], "weight": "30 kg", "volume": "150 L", @@ -31,8 +31,8 @@ "color": "green", "name": { "str": "biosilicified chitin horse armor" }, "description": "A makeshift assembly of criniere, peytral and croupiere made from biosilicified chitin fitted to a thin mesh. You could put this on a friendly horse. Acid-resistant but brittle.", - "price": 120000, - "price_postapoc": 8000, + "price": "1 kUSD 200 USD", + "price_postapoc": "80 USD", "material": [ "acidchitin" ], "weight": "35 kg", "volume": "150 L", @@ -46,8 +46,8 @@ "color": "green", "name": { "str": "chitin horse armor" }, "description": "A makeshift assembly of criniere, peytral and croupiere made from chitin fitted to a thin mesh. You could put this on a friendly horse.", - "price": 100000, - "price_postapoc": 6000, + "price": "1 kUSD", + "price_postapoc": "60 USD", "material": [ "chitin" ], "weight": "35 kg", "volume": "150 L", @@ -61,8 +61,8 @@ "color": "green", "name": { "str": "chainmail horse armor" }, "description": "A heavy covering of chainmail, suitably made for horses as protection. You could put this on a friendly horse.", - "price": 40000, - "price_postapoc": 10000, + "price": "400 USD", + "price_postapoc": "100 USD", "material": [ "steel", "leather" ], "weight": "40 kg", "volume": "150 L", @@ -75,8 +75,8 @@ "color": "green", "name": { "str": "boiled leather horse barding with caparison", "str_pl": "boiled leather horse bardings with caparison" }, "description": "A full barding for horses consisting of boiled leather and cloth undercovering. This caparison depicts a battle between a monstrous dragon and regal griffin. You could put this on a friendly horse.", - "price": 30000, - "price_postapoc": 3000, + "price": "300 USD", + "price_postapoc": "30 USD", "material": [ "cotton", "leather" ], "weight": "15 kg", "volume": "150 L", @@ -123,8 +123,8 @@ "color": "green", "name": { "str": "boiled leather horse barding with bones", "str_pl": "boiled leather horse bardings with bones" }, "description": "Decorative bones affixed to leather horse barding to invoke fear in bandits and raiders and traders all! You could put this on a friendly horse.", - "price": 45000, - "price_postapoc": 3000, + "price": "450 USD", + "price_postapoc": "30 USD", "material": [ "leather" ], "weight": "17 kg", "volume": "150 L", @@ -137,8 +137,8 @@ "color": "green", "name": { "str": "horse rain sheet" }, "description": "A thin plastic covering designed to keep a horse dry in the rain. You could put this on a friendly horse.", - "price": 15000, - "price_postapoc": 1500, + "price": "150 USD", + "price_postapoc": "15 USD", "material": [ "neoprene", "plastic" ], "weight": "14 kg", "volume": "150 L", @@ -151,8 +151,8 @@ "color": "brown", "name": { "str": "iron horse armor" }, "description": "A heavy covering of strategically-placed iron plates and leather, suitably made for horses as protection. You could put this on a friendly horse.", - "price": 50000, - "price_postapoc": 10000, + "price": "500 USD", + "price_postapoc": "100 USD", "material": [ "iron", "leather" ], "weight": "30 kg", "volume": "150 L", @@ -165,8 +165,8 @@ "color": "light_gray", "name": { "str": "steel horse armor" }, "description": "A heavy covering of steel plate and leather, suitably made for horses as protection. You could put this on a friendly horse.", - "price": 60000, - "price_postapoc": 15000, + "price": "600 USD", + "price_postapoc": "150 USD", "material": [ "steel", "leather" ], "weight": "50 kg", "volume": "150 L", @@ -179,8 +179,8 @@ "color": "yellow", "name": { "str": "bronze horse armor" }, "description": "A heavy covering of strategically-placed bronze plates and leather, suitably made for horses as protection. You could put this on a friendly horse.", - "price": 50000, - "price_postapoc": 10000, + "price": "500 USD", + "price_postapoc": "100 USD", "material": [ "bronze", "leather" ], "weight": "30 kg", "volume": "150 L", @@ -193,8 +193,8 @@ "description": "A pair of covered pouches laid across the back of a horse behind the saddle.", "weight": "1 kg", "volume": "7500 ml", - "price": 15000, - "price_postapoc": 2500, + "price": "150 USD", + "price_postapoc": "25 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "dump_pouch", diff --git a/data/json/items/armor/robofac_armor.json b/data/json/items/armor/robofac_armor.json index 7343b15847bfa..3072494a0fa56 100644 --- a/data/json/items/armor/robofac_armor.json +++ b/data/json/items/armor/robofac_armor.json @@ -10,8 +10,8 @@ "//2": "Why no PALS? Fundamentally PALS is a decent system but adds a pile of additional weight in straps and fasteners, they also unless very well designed aren't particularly low profile and can catch on stuff. It's fun for a game but in the real world you can just buy a bag with the pockets and utility you want, or as the current fad in Tacticool Operators ™️ go with a micro rig or a dedicated pre pocketed harness. So for military use where you are expected to carry 270 rounds of ammo weight is a lot less splitting hairs. In an apocalypse scenario where you will be moving on foot, potentially with low calories to supplement and no chain of resupply that weight can really matter.", "weight": "960 g", "volume": "250 ml", - "price": 4000, - "price_postapoc": 750, + "price": "40 USD", + "price_postapoc": "7 USD 50 cent", "symbol": "[", "material": [ "nylon", "kevlar" ], "color": "light_gray", @@ -279,8 +279,8 @@ "//": "nv goggles weight 1020g. hub armor rig weight 960g for full body. figure this strikes a decent midpoint, esp. since weight here becomes head encumb. materials wise, same nylon/kevlar weave as the poncho; the visor is being handwaved per the riot helmet and motorcycle helmet visors as precedent.", "weight": "1200 g", "volume": "1200 ml", - "price": 10000, - "price_postapoc": 2000, + "price": "100 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "nylon", "kevlar" ], "symbol": "[", @@ -401,8 +401,8 @@ "description": "A modified army harness, repurposed to carry several small and a single medium sized drone alongside the tools to maintain them.", "weight": "425 g", "volume": "500 ml", - "price": 3900, - "price_postapoc": 3000, + "price": "39 USD", + "price_postapoc": "30 USD", "material": [ "canvas" ], "symbol": "[", "looks_like": "tool_belt", @@ -516,8 +516,8 @@ "name": "abstract mantle", "weight": "6853 g", "volume": "6600 ml", - "price": 60000, - "price_postapoc": 5000, + "price": "600 USD", + "price_postapoc": "50 USD", "material": [ "ceramic" ], "symbol": ",", "color": "dark_gray", @@ -559,8 +559,8 @@ "name": "abstract armored skirt", "weight": "2454 g", "volume": "3500 ml", - "price": 60000, - "price_postapoc": 5000, + "price": "600 USD", + "price_postapoc": "50 USD", "material": [ "ceramic" ], "symbol": ",", "color": "dark_gray", @@ -594,8 +594,8 @@ "looks_like": "armguard_hard", "weight": "845 g", "volume": "4000 ml", - "price": 60000, - "price_postapoc": 5000, + "price": "600 USD", + "price_postapoc": "50 USD", "material": [ "ceramic" ], "symbol": ",", "color": "dark_gray", @@ -621,8 +621,8 @@ "looks_like": "legguard_hard", "weight": "1295 g", "volume": "5000 ml", - "price": 60000, - "price_postapoc": 5000, + "price": "600 USD", + "price_postapoc": "50 USD", "material": [ "ceramic" ], "symbol": ",", "color": "dark_gray", @@ -647,8 +647,8 @@ "name": "abstract helmet", "weight": "1176 g", "volume": "1750 ml", - "price": 60000, - "price_postapoc": 5000, + "price": "600 USD", + "price_postapoc": "50 USD", "material": [ "ceramic" ], "symbol": ",", "color": "dark_gray", diff --git a/data/json/items/armor/scarfs.json b/data/json/items/armor/scarfs.json index 044085954fc24..043efda99db88 100644 --- a/data/json/items/armor/scarfs.json +++ b/data/json/items/armor/scarfs.json @@ -6,8 +6,8 @@ "description": "A snuggly woolen cowl. It's one of those stylish and bulky cowls you see in fashion magazines.", "weight": "272 g", "volume": "2 L", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "wool" ], "symbol": "[", @@ -26,8 +26,8 @@ "description": "A loose cloth worn over the head and around the neck.", "weight": "70 g", "volume": "250 ml", - "price": 85, - "price_postapoc": 50, + "price": "85 cent", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -46,8 +46,8 @@ "description": "A type of headdress traditionally used in the Middle East. It can be used in different ways to protect the head and mouth from the elements.", "weight": "425 g", "volume": "564 ml", - "price": 250, - "price_postapoc": 50, + "price": "2 USD 50 cent", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -67,8 +67,8 @@ "color": "light_gray", "name": { "str": "simple patchwork scarf", "str_pl": "simple patchwork scarves" }, "description": "A simple and light cloth scarf, worn over the mouth for warmth. Use it to loosen it if you get too warm.", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "weight": "60 g", "volume": "500 ml", @@ -88,8 +88,8 @@ "color": "light_gray", "name": { "str": "simple patchwork scarf (loose)", "str_pl": "simple patchwork scarves (loose)" }, "description": "A simple and light cloth scarf, worn over the mouth for warmth. Use it to wear it around your head if you get too cold.", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "weight": "60 g", "volume": "500 ml", @@ -115,8 +115,8 @@ "color": "light_gray", "name": { "str": "simple patchwork scarf (headwrap)", "str_pl": "simple patchwork scarves (headwrap)" }, "description": "A simple and light cloth scarf, worn over the head and mouth for warmth. Use it to wear it around your head.", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "weight": "60 g", "volume": "500 ml", @@ -136,8 +136,8 @@ "color": "light_gray", "name": { "str": "long patchwork scarf", "str_pl": "long patchwork scarves" }, "description": "A very long light cloth scarf, worn over the mouth for warmth. With the extra length, it's enough to handle nonstandard facial features and accommodate your hands too. Use it to loosen it if you get too warm.", - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "weight": "120 g", "volume": "1 L", @@ -157,8 +157,8 @@ "color": "light_gray", "name": { "str": "long patchwork scarf (loose)", "str_pl": "long patchwork scarves (loose)" }, "description": "A very long light cloth scarf, worn over the mouth for warmth. With the extra length, it's enough to handle nonstandard facial features and accommodate your hands too. Use it to wear it around your head if you get too cold.", - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "weight": "120 g", "volume": "1 L", @@ -184,8 +184,8 @@ "color": "light_gray", "name": { "str": "long patchwork scarf (headwrap)", "str_pl": "long patchwork scarves (headwrap)" }, "description": "A very long light cloth scarf, worn over the head and mouth for warmth. Use it to wear it around your mouth.", - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "weight": "120 g", "volume": "1 L", @@ -205,8 +205,8 @@ "color": "dark_gray", "name": { "str": "knit scarf", "str_pl": "knit scarves" }, "description": "A long knitted cotton scarf, worn over the mouth for warmth. Use it to loosen it if you get too warm.", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "weight": "96 g", "volume": "750 ml", @@ -226,8 +226,8 @@ "color": "dark_gray", "name": { "str": "knit scarf (loose)", "str_pl": "knit scarves (loose)" }, "description": "A long knitted cotton scarf, worn over the mouth for warmth. Use it to wear it around your head if you get too cold.", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "weight": "96 g", "volume": "750 ml", @@ -253,8 +253,8 @@ "color": "dark_gray", "name": { "str": "knit scarf (headwrap)", "str_pl": "knit scarves (headwrap)" }, "description": "A long knitted cotton scarf, worn over the head and mouth for warmth. Use it to wear it around your mouth.", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "weight": "96 g", "volume": "750 ml", @@ -274,8 +274,8 @@ "color": "dark_gray", "name": { "str": "long knit scarf", "str_pl": "long knit scarves" }, "description": "A really long knitted cotton scarf, worn over the mouth for warmth. With the extra length, it's enough to handle nonstandard facial features and accommodate your hands too. Use it to loosen it if you get too warm.", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "weight": "192 g", "volume": "1250 ml", @@ -295,8 +295,8 @@ "color": "dark_gray", "name": { "str": "long knit scarf (loose)", "str_pl": "long knit scarves (loose)" }, "description": "A really long knitted cotton scarf, worn over the mouth for warmth. With the extra length, it's enough to handle nonstandard facial features and accommodate your hands too. Use it to wear it tighter if you get too cold.", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "weight": "192 g", "volume": "1250 ml", @@ -322,8 +322,8 @@ "color": "dark_gray", "name": { "str": "long knit scarf (headwrap)", "str_pl": "long knit scarves (headwrap)" }, "description": "A really long knitted cotton scarf, worn over the head and mouth for warmth. Use it to wear it around your mouth.", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "weight": "192 g", "volume": "1250 ml", @@ -343,8 +343,8 @@ "color": "brown", "name": { "str": "wool scarf", "str_pl": "wool scarves" }, "description": "A long wool scarf, worn over the mouth for warmth. Use it to loosen it if you get too warm.", - "price": 3800, - "price_postapoc": 50, + "price": "38 USD", + "price_postapoc": "50 cent", "material": [ "wool" ], "weight": "100 g", "volume": "750 ml", @@ -364,8 +364,8 @@ "color": "brown", "name": { "str": "wool scarf (loose)", "str_pl": "wool scarves (loose)" }, "description": "A long wool scarf, worn over the mouth for warmth. Use it to wear it around your mouth.", - "price": 3800, - "price_postapoc": 50, + "price": "38 USD", + "price_postapoc": "50 cent", "material": [ "wool" ], "weight": "80 g", "volume": "750 ml", @@ -391,8 +391,8 @@ "color": "brown", "name": { "str": "wool scarf (headwrap)", "str_pl": "wool scarves (headwrap)" }, "description": "A long wool scarf, worn over the head and mouth for warmth. Use it to wear it around your mouth.", - "price": 3800, - "price_postapoc": 50, + "price": "38 USD", + "price_postapoc": "50 cent", "material": [ "wool" ], "weight": "80 g", "volume": "750 ml", @@ -412,8 +412,8 @@ "color": "brown", "name": { "str": "long wool scarf", "str_pl": "long wool scarves" }, "description": "A really long wool scarf, worn over the mouth for warmth. With the extra length, it's enough to handle nonstandard facial features and accommodate your hands too. Use it to loosen it if you get too warm.", - "price": 4500, - "price_postapoc": 100, + "price": "45 USD", + "price_postapoc": "1 USD", "material": [ "wool" ], "weight": "160 g", "volume": "1250 ml", @@ -433,8 +433,8 @@ "color": "brown", "name": { "str": "long wool scarf (loose)", "str_pl": "long wool scarves (loose)" }, "description": "A really long wool scarf, worn over the mouth for warmth. With the extra length, it's enough to handle nonstandard facial features and accommodate your hands too. Use it to wear it around your head if you get too cold.", - "price": 4500, - "price_postapoc": 100, + "price": "45 USD", + "price_postapoc": "1 USD", "material": [ "wool" ], "weight": "160 g", "volume": "1250 ml", @@ -460,8 +460,8 @@ "color": "brown", "name": { "str": "long wool scarf (headwrap)", "str_pl": "long wool scarves (headwrap)" }, "description": "A really long wool scarf, worn over the head and mouth for warmth. With the extra length, it's enough to handle nonstandard facial features and accommodate your hands too. Use it to wear it around your mouth.", - "price": 4500, - "price_postapoc": 100, + "price": "45 USD", + "price_postapoc": "1 USD", "material": [ "wool" ], "weight": "160 g", "volume": "1250 ml", @@ -481,8 +481,8 @@ "color": "brown", "name": { "str": "fur scarf", "str_pl": "fur scarves" }, "description": "A long fur scarf, worn over the mouth for warmth. Use it to loosen it if you get too warm.", - "price": 9000, - "price_postapoc": 250, + "price": "90 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "fur" ], "weight": "140 g", "volume": "1 L", @@ -502,8 +502,8 @@ "color": "brown", "name": { "str": "fur scarf (loose)", "str_pl": "fur scarves (loose)" }, "description": "A long fur scarf, worn over the mouth for warmth. Use it to wear it around your head if you get too cold.", - "price": 9000, - "price_postapoc": 250, + "price": "90 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "fur" ], "weight": "140 g", "volume": "1 L", @@ -529,8 +529,8 @@ "color": "brown", "name": { "str": "fur scarf (headwrap)", "str_pl": "fur scarves (headwrap)" }, "description": "A long fur scarf, worn over the head and mouth for warmth. Use it to wear it around your mouth.", - "price": 9000, - "price_postapoc": 250, + "price": "90 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "fur" ], "weight": "140 g", "volume": "1 L", @@ -550,8 +550,8 @@ "color": "brown", "name": { "str": "long fur scarf", "str_pl": "long fur scarves" }, "description": "A really long fur scarf, worn over the mouth for warmth. With the extra length, it's enough to handle nonstandard facial features and accommodate your hands too. Use it to loosen it if you get too warm.", - "price": 17700, - "price_postapoc": 300, + "price": "177 USD", + "price_postapoc": "3 USD", "material": [ "fur" ], "weight": "280 g", "volume": "2 L", @@ -571,8 +571,8 @@ "color": "brown", "name": { "str": "long fur scarf (loose)", "str_pl": "long fur scarves (loose)" }, "description": "A really long fur scarf, worn over the mouth for warmth. With the extra length, it's enough to handle nonstandard facial features and accommodate your hands too. Use it to wear it around your head if you get too cold.", - "price": 17700, - "price_postapoc": 300, + "price": "177 USD", + "price_postapoc": "3 USD", "material": [ "fur" ], "weight": "280 g", "volume": "2 L", @@ -598,8 +598,8 @@ "color": "brown", "name": { "str": "long fur scarf (headwrap)", "str_pl": "long fur scarves (headwrap)" }, "description": "A really long fur scarf, worn over the head and mouth for warmth. With the extra length, it's enough to handle nonstandard facial features and accommodate your hands too. Use it to wear it around your mouth.", - "price": 17700, - "price_postapoc": 300, + "price": "177 USD", + "price_postapoc": "3 USD", "material": [ "fur" ], "weight": "280 g", "volume": "2 L", @@ -619,8 +619,8 @@ "color": "brown", "name": { "str": "faux fur scarf", "str_pl": "faux fur scarves" }, "description": "A long faux fur scarf, worn over the mouth for warmth. Use it to loosen it if you get too warm.", - "price": 9000, - "price_postapoc": 250, + "price": "90 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "faux_fur" ], "weight": "140 g", "volume": "1 L", @@ -641,8 +641,8 @@ "color": "brown", "name": { "str": "faux fur scarf (loose)", "str_pl": "faux fur scarves (loose)" }, "description": "A long faux fur scarf, worn over the mouth for warmth. Use it to wear it around your head if you get too cold.", - "price": 9000, - "price_postapoc": 250, + "price": "90 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "faux_fur" ], "weight": "140 g", "volume": "1 L", @@ -668,8 +668,8 @@ "color": "brown", "name": { "str": "faux fur scarf (headwrap)", "str_pl": "faux fur scarves (headwrap)" }, "description": "A long faux fur scarf, worn over the head and mouth for warmth. Use it to wear it around your mouth.", - "price": 9000, - "price_postapoc": 250, + "price": "90 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "faux_fur" ], "weight": "140 g", "volume": "1 L", @@ -689,8 +689,8 @@ "color": "brown", "name": { "str": "long faux fur scarf", "str_pl": "long faux fur scarves" }, "description": "A really long faux fur scarf, worn over the mouth for warmth. With the extra length, it's enough to handle nonstandard facial features and accommodate your hands too. Use it to loosen it if you get too warm.", - "price": 17700, - "price_postapoc": 300, + "price": "177 USD", + "price_postapoc": "3 USD", "material": [ "faux_fur" ], "weight": "280 g", "volume": "2 L", @@ -711,8 +711,8 @@ "color": "brown", "name": { "str": "long faux fur scarf (loose)", "str_pl": "long faux fur scarves (loose)" }, "description": "A really long faux fur scarf, worn over the mouth for warmth. With the extra length, it's enough to handle nonstandard facial features and accommodate your hands too. Use it to wear it around your head if you get too cold.", - "price": 17700, - "price_postapoc": 300, + "price": "177 USD", + "price_postapoc": "3 USD", "material": [ "faux_fur" ], "weight": "280 g", "volume": "2 L", @@ -738,8 +738,8 @@ "color": "brown", "name": { "str": "long faux fur scarf (headwrap)", "str_pl": "long faux fur scarves (headwrap)" }, "description": "A really long faux fur scarf, worn over the head and mouth for warmth. Use it to wear it around your mouth.", - "price": 17700, - "price_postapoc": 300, + "price": "177 USD", + "price_postapoc": "3 USD", "material": [ "faux_fur" ], "weight": "280 g", "volume": "2 L", @@ -767,8 +767,8 @@ "description": "A grass sheet with cords to wear it like a Middle Eastern headdress. It's a bit itchy, but can keep your head and mouth a bit warmer if there's nothing in the way.", "weight": "152 g", "volume": "1250 ml", - "price": 10, - "price_postapoc": 5, + "price": "10 cent", + "price_postapoc": "5 cent", "to_hit": -1, "material": [ "dry_plant" ], "symbol": "[", @@ -787,8 +787,8 @@ "description": "A loose cloth headwrap and veil. Typically worn by Christian nuns.", "weight": "70 g", "volume": "250 ml", - "price": 600, - "price_postapoc": 60, + "price": "6 USD", + "price_postapoc": "60 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -807,8 +807,8 @@ "color": "blue", "name": { "str_sp": "tallit gadol" }, "description": "A large prayer shawl worn by observant Jews during morning prayers and certain other occasions.", - "price": 25000, - "price_postapoc": 50, + "price": "250 USD", + "price_postapoc": "50 cent", "material": [ "wool" ], "weight": "500 g", "volume": "1 L", diff --git a/data/json/items/armor/sheath.json b/data/json/items/armor/sheath.json index a1fee4b6613d9..2ed210be7e11a 100644 --- a/data/json/items/armor/sheath.json +++ b/data/json/items/armor/sheath.json @@ -6,8 +6,8 @@ "description": "A combination of leather and a metal ring to hold an axe on your waist.", "weight": "180 g", "volume": "600 ml", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "leather", "steel" ], "symbol": "[", "looks_like": "sheath", @@ -35,8 +35,8 @@ "description": "A leather scabbard, big enough for anything up to a longsword, or even a bit larger than that. Designed to be worn at the waist, secured to the sturdy leather belt. Activate to sheath/draw a sword.", "weight": "1625 g", "volume": "2 L", - "price": 7500, - "price_postapoc": 500, + "price": "75 USD", + "price_postapoc": "5 USD", "material": [ "leather", "wood" ], "symbol": "[", "looks_like": "sheath", @@ -116,8 +116,8 @@ "description": "A nylon strap knife sheath worn on the thigh, made to hold 6 very small knives, such as throwing knives, close at hand. Activate to sheathe/draw a weapon.", "weight": "250 g", "volume": "1000 ml", - "price": 5200, - "price_postapoc": 250, + "price": "52 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "sheath", @@ -199,8 +199,8 @@ "description": "A small concealed garter knife sheath worn on the thigh. Commonly used by assassins under a skirt or dress. Activate to sheathe/draw a weapon.", "weight": "160 g", "volume": "500 ml", - "price": 5200, - "price_postapoc": 250, + "price": "52 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "nylon", "plastic" ], "symbol": "[", "looks_like": "sheath", @@ -237,8 +237,8 @@ "description": "A small concealed garter double knife sheath worn on the thigh. Commonly used by overly cautious assassins under a skirt or dress. Activate to sheathe/draw a weapon.", "weight": "320 g", "volume": "1000 ml", - "price": 5200, - "price_postapoc": 250, + "price": "52 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "nylon", "plastic" ], "symbol": "[", "looks_like": "sheath", @@ -284,8 +284,8 @@ "description": "A small concealed knife sheath worn on the ankle. It is awkward to use without practice. Activate to sheathe/draw a weapon.", "weight": "160 g", "volume": "500 ml", - "price": 5200, - "price_postapoc": 250, + "price": "52 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -324,8 +324,8 @@ "description": "A handcrafted small concealed knife sheath worn on the ankle, made from birch bark. It is awkward to use without practice. Activate to sheathe/draw a weapon.", "weight": "190 g", "volume": "500 ml", - "price": 1200, - "price_postapoc": 150, + "price": "12 USD", + "price_postapoc": "1 USD 50 cent", "to_hit": -1, "material": [ "wood" ], "symbol": "[", @@ -364,8 +364,8 @@ "description": "A leather scabbard, big enough for almost any sword. Designed to be strapped to the back, it's very difficult to draw from without considerable practice. Activate to sheath/draw a sword.", "weight": "1890 g", "volume": "2250 ml", - "price": 9000, - "price_postapoc": 750, + "price": "90 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "leather", "wood" ], "symbol": "[", "looks_like": "baldric", @@ -394,8 +394,8 @@ "description": "A large, adjustable sheath for holding swords and other large blades. Activate to sheathe/draw a weapon.", "weight": "1360 g", "volume": "1750 ml", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "material": [ "leather", "wood" ], "symbol": "[", "looks_like": "holster", @@ -432,8 +432,8 @@ "description": "A large, adjustable sheath for holding swords and other large blades, made with nylon. Activate to sheathe/draw a weapon.", "weight": "1360 g", "volume": "1750 ml", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "material": [ "nylon", "wood" ], "symbol": "[", "looks_like": "holster", @@ -469,8 +469,8 @@ "description": "A leather sheath for holding knives and other small blades. It is easy to use without much practice. Activate to sheathe/draw a weapon.", "weight": "200 g", "volume": "500 ml", - "price": 3500, - "price_postapoc": 250, + "price": "35 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "leather" ], "symbol": "|", "looks_like": "scabbard", @@ -507,8 +507,8 @@ "description": "A handcrafted sheath made from birch bark, for holding knives and other small blades, with a strap attached. Activate to sheathe/draw a weapon.", "weight": "250 g", "volume": "500 ml", - "price": 1500, - "price_postapoc": 200, + "price": "15 USD", + "price_postapoc": "2 USD", "material": [ "wood" ], "symbol": "|", "looks_like": "sheath", @@ -544,8 +544,8 @@ "description": "A leather strap tied around the torso for toting spears while keeping your hands free. You have to duck to get through doors while one's in it, though. Activate to holster/draw a weapon.", "weight": "160 g", "volume": "500 ml", - "price": 5200, - "price_postapoc": 250, + "price": "52 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "leather" ], "symbol": "[", diff --git a/data/json/items/armor/storage.json b/data/json/items/armor/storage.json index 22a819f719ca9..8b501a56fd574 100644 --- a/data/json/items/armor/storage.json +++ b/data/json/items/armor/storage.json @@ -6,8 +6,8 @@ "description": "A small backpack. Good storage for a little encumbrance.", "weight": "633 g", "volume": "2 L", - "price": 3900, - "price_postapoc": 500, + "price": "39 USD", + "price_postapoc": "5 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "ragpouch", @@ -74,8 +74,8 @@ "description": "A large hiking backpack with plenty of storage space.", "weight": "2291 g", "volume": "14700 ml", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "backpack", @@ -212,8 +212,8 @@ "description": "A large hunting backpack with plenty of storage space and additional external space possible for large camping items or game bags.", "weight": "2767 g", "volume": "18000 ml", - "price": 60000, - "price_postapoc": 1000, + "price": "600 USD", + "price_postapoc": "10 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "backpack", @@ -357,8 +357,8 @@ "description": "A huge fabric backpack made mostly as a joke before the Cataclysm. Now, it's still rather silly, but it can store a lot of stuff.", "weight": "1200 g", "volume": "9186 ml", - "price": 4500, - "price_postapoc": 750, + "price": "45 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "backpack", @@ -399,8 +399,8 @@ "description": "A small leather backpack. Good storage for a little encumbrance.", "weight": "818 g", "volume": "2 L", - "price": 11900, - "price_postapoc": 500, + "price": "119 USD", + "price_postapoc": "5 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "backpack", @@ -435,8 +435,8 @@ "//": "It's modeled as our normal backpack but made of 16.5 oz denim.", "weight": "560 g", "volume": "2 L", - "price": 5000, - "price_postapoc": 300, + "price": "50 USD", + "price_postapoc": "3 USD", "material": [ "denim" ], "symbol": "[", "looks_like": "backpack", @@ -488,8 +488,8 @@ "description": "A large tactical multi-compartment backpack that has great lower back support.", "weight": "2291 g", "volume": "15 L", - "price": 9000, - "price_postapoc": 1250, + "price": "90 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "backpack", @@ -587,8 +587,8 @@ "description": "A plastic basket meant for storing and hauling clothing.", "weight": "680 g", "volume": "52500 ml", - "price": 75, - "price_postapoc": 10, + "price": "75 cent", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": ")", @@ -619,8 +619,8 @@ "description": "Also known as a \"bigpack\", this rucksack is prized by pack rats but may lead to a bad back.", "weight": "3539 g", "volume": "21 L", - "price": 20000, - "price_postapoc": 2500, + "price": "200 USD", + "price_postapoc": "25 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "rucksack", @@ -701,8 +701,8 @@ "description": "You're ready for a trip down some train tracks. Also known as a hobo stick.", "weight": "980 g", "volume": "3 L", - "price": 80, - "price_postapoc": 10, + "price": "80 cent", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "cotton", "wood" ], "symbol": "[", @@ -730,7 +730,7 @@ "looks_like": "jerrypack", "material": [ "wood", "cotton" ], "volume": "15750 ml", - "price_postapoc": 50, + "price_postapoc": "50 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -771,7 +771,7 @@ } ], "warmth": 5, - "price": 3500, + "price": "35 USD", "flags": [ "BELTED", "OVERSIZE", "NO_REPAIR" ], "armor": [ { "encumbrance": 20, "coverage": 80, "covers": [ "torso" ], "specifically_covers": [ "torso_hanging_back" ] } ], "melee_damage": { "bash": 16, "cut": 4 } @@ -784,8 +784,8 @@ "weight": "1700 g", "volume": "15750 ml", "longest_side": "46 cm", - "price": 24000, - "price_postapoc": 50, + "price": "240 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": "[", @@ -814,8 +814,8 @@ "description": "Useful to carry your precious musical instrument around protected from any harm.", "weight": "2800 g", "volume": "10500 ml", - "price": 24000, - "price_postapoc": 50, + "price": "240 USD", + "price_postapoc": "50 cent", "to_hit": -4, "material": [ "plastic", "steel", "leather" ], "symbol": "&", @@ -848,8 +848,8 @@ "weight": "411 g", "volume": "2100 ml", "//": "REI Co-op 22-liter daypack costs $54.95, so ballpark to $55", - "price": 5500, - "price_postapoc": 500, + "price": "55 USD", + "price_postapoc": "5 USD", "material": [ "nylon", "plastic" ], "material_thickness": 1, "pocket_data": [ @@ -917,8 +917,8 @@ "description": "A durable nylon bag marketed towards military personnel. It has clips on the top and back, making it easy to attach a strap and wear it comfortably as a fanny pack. MOLLE webbing on the back lets you affix it to body armor or a backpack.", "weight": "480 g", "volume": "300 ml", - "price": 3500, - "price_postapoc": 500, + "price": "35 USD", + "price_postapoc": "5 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "fanny", @@ -976,8 +976,8 @@ "description": "A lightweight mesh backpack, commonly worn by swimmers and divers.", "weight": "512 g", "volume": "1500 ml", - "price": 10900, - "price_postapoc": 500, + "price": "109 USD", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "backpack", @@ -1012,8 +1012,8 @@ "description": "A lightweight watertight backpack, commonly worn by swimmers and divers.", "weight": "580 g", "volume": "1750 ml", - "price": 13900, - "price_postapoc": 1000, + "price": "139 USD", + "price_postapoc": "10 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "dive_bag", @@ -1047,8 +1047,8 @@ "description": "A huge duffel bag. Provides plenty of storage, but is severely encumbering.", "weight": "933 g", "volume": "6 L", - "price": 12000, - "price_postapoc": 500, + "price": "120 USD", + "price_postapoc": "5 USD", "material": [ "canvas" ], "symbol": "[", "looks_like": "rucksack", @@ -1098,8 +1098,8 @@ "description": "A huge watertight duffel bag. Capable of floating. Provides plenty of storage, but is severely encumbering.", "weight": "1300 g", "volume": "10500 ml", - "price": 18000, - "price_postapoc": 1000, + "price": "180 USD", + "price_postapoc": "10 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "duffelbag", @@ -1149,8 +1149,8 @@ "description": "An expandable pouch secured with straps. Provides a bit of extra storage with minimal encumbrance.", "weight": "288 g", "volume": "525 ml", - "price": 4500, - "price_postapoc": 250, + "price": "45 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 2, "material": [ "nylon", "plastic" ], "symbol": "[", @@ -1179,7 +1179,7 @@ "description": "A small fabric bag worn on the waist, with the pouch in front for easy access. Once used as a visual shorthand for unstylish geeks and silly tourists, it was making a decent comeback before the apocalypse.", "weight": "272 g", "volume": "1050 ml", - "price": 3500, + "price": "35 USD", "price_postapoc": "1 USD", "to_hit": 2, "material": [ "nylon", "plastic" ], @@ -1216,8 +1216,8 @@ "description": "A tall canvas and plastic bag with fold-out legs used for golfing. It even has straps to be worn on the back and a slot for an umbrella.", "weight": "1900 g", "volume": "45 L", - "price": 800, - "price_postapoc": 750, + "price": "8 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "nylon", "plastic" ], "symbol": "[", "looks_like": "quiver_large", @@ -1291,7 +1291,7 @@ "symbol": "[", "looks_like": "hide_bag", "color": "pink", - "price_postapoc": 10, + "price_postapoc": "10 cent", "proportional": { "weight": 6.0, "volume": 6.0, "price": 6.0, "quench": 6.0, "calories": 6.0, "healthy": 6.0, "fun": 6.0 }, "armor_data": { "sided": true, @@ -1336,8 +1336,8 @@ "moves": 300 } ], - "price": 2000, - "price_postapoc": 1250 + "price": "20 USD", + "price_postapoc": "12 USD 50 cent" }, { "id": "jerrypack", @@ -1346,8 +1346,8 @@ "description": "A jerrycan modified to be worn in a similar manner to a backpack.", "weight": "1763 g", "volume": "10500 ml", - "price": 1450, - "price_postapoc": 250, + "price": "14 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "plastic", "cotton" ], "symbol": "[", @@ -1374,8 +1374,8 @@ "description": "A bag stitched together from leather scraps. Doesn't hold an awful lot but is easy to wear.", "weight": "250 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 150, + "price": "10 USD", + "price_postapoc": "1 USD 50 cent", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -1410,8 +1410,8 @@ "description": "A pouch that can be worn on the thighs using buckled straps. This variety is favored by the military.", "weight": "102 g", "volume": "525 ml", - "price": 1500, - "price_postapoc": 125, + "price": "15 USD", + "price_postapoc": "1 USD 25 cent", "material": [ "nylon" ], "symbol": "[", "color": "dark_gray", @@ -1446,8 +1446,8 @@ "//": "Based on skeletonized version of these https://fourthelement.com/product/technical-shorts/ with added lower buckles like here https://www.divegarage.com/neoprene-tech-shorts.html", "weight": "305 g", "volume": "1150 ml", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "neoprene", "nylon", "nylon_2" ], "symbol": "[", "color": "dark_gray", @@ -1569,8 +1569,8 @@ "description": "A bag that can be worn on the thighs and hips using adjustable buckled straps. Provides some extra storage for outdoor activities.", "weight": "258 g", "volume": "1550 ml", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "canvas" ], "symbol": "[", "looks_like": "legrig", @@ -1692,8 +1692,8 @@ "description": "A small pouch that can be worn on the upper arm using buckled straps. This is a favored item among sports & camping enthusiasts. Use it to adjust it to fit your leg.", "weight": "205 g", "volume": "550 ml", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "canvas", "plastic" ], "symbol": "[", "looks_like": "armguard_soft", @@ -1733,8 +1733,8 @@ "description": "A small concealed wallet pouch worn on the ankle. If you strap it under your clothes, it can help you keep your wallet hidden and safe.", "weight": "60 g", "volume": "150 ml", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "legpouch", @@ -1767,8 +1767,8 @@ "description": "A pair of pants with the bottom ends tied with string, and then passed through the belt loops so the knapsack can be carried on the back.", "weight": "560 g", "volume": "2 L", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "ragpouch", @@ -1808,8 +1808,8 @@ "description": "A large sheet tied into a crude, over-the-shoulder sling.", "weight": "771 g", "volume": "5 L", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "cotton" ], "symbol": "[", @@ -1846,8 +1846,8 @@ "description": "Light and easy to wear, but doesn't offer much storage.", "weight": "690 g", "volume": "2625 ml", - "price": 7900, - "price_postapoc": 250, + "price": "79 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "nylon", "plastic" ], "symbol": "[", @@ -1909,8 +1909,8 @@ "description": "The Modular Lightweight Load-carrying Equipment is an advanced military backpack. Covered with pockets and straps, it strikes a fine balance between storage space and encumbrance. Can attach accessory pockets to the outside rigging.", "weight": "1450 g", "volume": "6 L", - "price": 6700, - "price_postapoc": 1500, + "price": "67 USD", + "price_postapoc": "15 USD", "material": [ "nylon", "plastic" ], "symbol": "[", "looks_like": "backpack", @@ -2000,8 +2000,8 @@ "description": "The Modular Lightweight Load-carrying Equipment is an advanced military medium rucksack. Covered with straps for modularity, it strikes a fine balance between storage space and encumbrance. Can attach accessory pockets to the outside rigging.", "weight": "1600 g", "volume": "8000 ml", - "price": 8100, - "price_postapoc": 2100, + "price": "81 USD", + "price_postapoc": "21 USD", "material": [ "nylon", "plastic" ], "symbol": "[", "looks_like": "backpack", @@ -2091,8 +2091,8 @@ "description": "The Modular Lightweight Load-carrying Equipment is an advanced military large rucksack. Covered with straps for modularity, it strikes a fine balance between storage space and encumbrance. Can attach accessory pockets to the outside rigging.", "weight": "2200 g", "volume": "11000 ml", - "price": 9000, - "price_postapoc": 2500, + "price": "90 USD", + "price_postapoc": "25 USD", "material": [ "nylon", "plastic" ], "symbol": "[", "looks_like": "backpack", @@ -2181,7 +2181,7 @@ "description": "A bag woven together from strings, with straps to wear it on back. Lighter than a standard backpack, but more awkward to carry when loaded and unable to hold small or heavy items.", "weight": "192 g", "volume": "750 ml", - "price": 1000, + "price": "10 USD", "material": [ "cotton" ], "symbol": "[", "color": "green", @@ -2214,8 +2214,8 @@ "description": "Before the Cataclysm this would allow your four-legged friend to see the world, now it's used to shield them from the world.", "weight": "900 g", "volume": "36750 ml", - "price": 7900, - "price_postapoc": 250, + "price": "79 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "nylon", "plastic" ], "symbol": "[", "looks_like": "backpack", @@ -2245,8 +2245,8 @@ "category": "container", "weight": "2 g", "volume": "30 ml", - "price": 1, - "price_postapoc": 10, + "price": "1 cent", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": "[", @@ -2267,8 +2267,8 @@ "description": "A fancy leather purse from a well-known designer. A bit cumbersome to wear, but provides some storage.", "weight": "297 g", "volume": "1 L", - "price": 7500, - "price_postapoc": 100, + "price": "75 USD", + "price_postapoc": "1 USD", "to_hit": 2, "material": [ "leather" ], "symbol": "[", @@ -2303,8 +2303,8 @@ "description": "A makeshift bag, cobbled together from rags. Really gets in the way, but provides a decent amount of storage.", "weight": "35 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -2338,8 +2338,8 @@ "description": "A huge military rucksack, provides a lot of storage.", "weight": "1140 g", "volume": "11 L", - "price": 9200, - "price_postapoc": 1250, + "price": "92 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "nylon", "plastic" ], "symbol": "[", "looks_like": "backpack", @@ -2460,8 +2460,8 @@ "description": "The obvious choice for outdoor athletes, this ergonomic backpack is light and easy to wear, ensuring comfort when carrying heavy and bulky items.", "weight": "360 g", "volume": "1500 ml", - "price": 24000, - "price_postapoc": 500, + "price": "240 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "canvas", "plastic" ], "symbol": "[", @@ -2499,8 +2499,8 @@ "description": "A simple single-sling backpack. Easier to access than a normal backpack, but can't comfortably hold as much.", "weight": "566 g", "volume": "2100 ml", - "price": 2900, - "price_postapoc": 750, + "price": "29 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "nylon", "plastic" ], "symbol": "[", "looks_like": "purse", @@ -2536,8 +2536,8 @@ "description": "A handmade straw basket. Carry it with you for extra storage.", "weight": "100 g", "volume": "10500 ml", - "price": 200, - "price_postapoc": 50, + "price": "2 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "paper" ], "symbol": "[", @@ -2566,8 +2566,8 @@ "description": "A huge wheeled suitcase used mainly for transporting clothes and other possessions during trips, provides a decent amount of storage but hauling it around is neither fast nor comfortable.", "weight": "5000 g", "volume": "115500 ml", - "price": 21000, - "price_postapoc": 500, + "price": "210 USD", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "suitcase_m", @@ -2594,8 +2594,8 @@ "description": "A mid-sized wheeled suitcase used mainly for transporting clothes and other possessions during trips, provides a decent amount of storage but hauling it around is not exactly comfortable.", "weight": "3000 g", "volume": "47250 ml", - "price": 21000, - "price_postapoc": 250, + "price": "210 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "briefcase", @@ -2622,8 +2622,8 @@ "description": "A large canvas sack, re-purposed for makeshift storage. Goes well with a striped shirt and a domino mask.", "weight": "415 g", "volume": "1 L", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "canvas" ], "symbol": "[", @@ -2653,8 +2653,8 @@ "description": "A hiking pack used for short trips.", "weight": "636 g", "volume": "5 L", - "price": 7000, - "price_postapoc": 1500, + "price": "70 USD", + "price_postapoc": "15 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "backpack", @@ -2745,8 +2745,8 @@ "description": "A light vest covered in pockets and straps for storage.", "weight": "536 g", "volume": "1 L", - "price": 3900, - "price_postapoc": 500, + "price": "39 USD", + "price_postapoc": "5 USD", "material": [ "canvas" ], "symbol": "[", "looks_like": "tank_top", @@ -2802,7 +2802,7 @@ "weight": "712 g", "volume": "15004 ml", "longest_side": "42 cm", - "price": 1000, + "price": "10 USD", "material": [ "dry_plant" ], "symbol": "[", "color": "green", @@ -2827,8 +2827,8 @@ "description": "A pocket universe. Can store approximately 384 * 10^6 bugs.", "weight": "1 g", "volume": "1 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "backpack", @@ -2958,8 +2958,8 @@ "description": "A long duffel bag. Provides storage for long arms and rifles. Quite cumbersome.", "weight": "1203 g", "volume": "12 L", - "price": 18000, - "price_postapoc": 800, + "price": "180 USD", + "price_postapoc": "8 USD", "material": [ "canvas" ], "symbol": "[", "looks_like": "rucksack", @@ -2988,8 +2988,8 @@ "description": "A long soft rifle case. Provides storage for long arms and rifles. Includes a small pocket, strap and handle.", "weight": "708 g", "volume": "2 L", - "price": 18000, - "price_postapoc": 800, + "price": "180 USD", + "price_postapoc": "8 USD", "material": [ "canvas" ], "symbol": "[", "looks_like": "slingpack", @@ -3023,8 +3023,8 @@ "description": "A long soft leather rifle case. Provides storage for long arms and rifles. Includes a small pocket, strap and handle.", "weight": "1104 g", "volume": "2 L", - "price": 18000, - "price_postapoc": 800, + "price": "180 USD", + "price_postapoc": "8 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "slingpack", @@ -3058,8 +3058,8 @@ "description": "A long soft rifle case. Provides storage for 2 long arms and rifles. Includes 3 accessory pockets and a strap.", "weight": "1042 g", "volume": "3 L", - "price": 18000, - "price_postapoc": 800, + "price": "180 USD", + "price_postapoc": "8 USD", "material": [ "canvas" ], "symbol": "[", "looks_like": "slingpack", @@ -3109,8 +3109,8 @@ "description": "A long soft leather rifle case. Provides storage for 2 long arms and rifles. Includes 3 accessory pockets and a strap.", "weight": "1104 g", "volume": "2 L", - "price": 18000, - "price_postapoc": 800, + "price": "180 USD", + "price_postapoc": "8 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "slingpack", @@ -3160,8 +3160,8 @@ "description": "An extra long soft leather rifle case. Provides storage for long arms and rifles. Includes a small pocket, strap and handle.", "weight": "1104 g", "volume": "2 L", - "price": 18000, - "price_postapoc": 800, + "price": "180 USD", + "price_postapoc": "8 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "slingpack", @@ -3195,8 +3195,8 @@ "description": "A simple bag used to hold a camera, with a small pocket on the side for accessories. Comes with a carry strap.", "weight": "600 g", "volume": "7000 ml", - "price": 5500, - "price_postapoc": 700, + "price": "55 USD", + "price_postapoc": "7 USD", "material": [ "nylon", "plastic" ], "symbol": "[", "looks_like": "slingpack", @@ -3232,8 +3232,8 @@ "description": "An old-fashioned book strap carrier. Guaranteed to make you feel like a proper scholar.", "weight": "204 g", "volume": "350 ml", - "price": 12000, - "price_postapoc": 450, + "price": "120 USD", + "price_postapoc": "4 USD 50 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "leather_belt", @@ -3268,8 +3268,8 @@ "description": "A length of rope tied with a sliding knot into a loop. You can slip all sorts of large objects in and carry them as a bundle; if you want to tie a single item more securely you'd have to disassemble this loop. It takes a while to untie it and get things out, and attackers might pull the whole thing undone if you're not careful.", "weight": "216 g", "volume": "360 ml", - "price": 360, - "price_postapoc": 10, + "price": "3 USD 60 cent", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": ",", "color": "light_gray", @@ -3299,8 +3299,8 @@ "description": "A wooden frame with waterproofed cloth stretched around it, and a drawstring at the top to hold things in. It has straps to wear it on your back.", "weight": "10 kg", "volume": "45 L", - "price": 800, - "price_postapoc": 750, + "price": "8 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "wood", "canvas" ], "symbol": "[", "looks_like": "golf_bag", @@ -3329,8 +3329,8 @@ "description": "An L-shaped wooden frame with a waterproofed cloth sack attached to it. There's a drawstring to hold things in and straps to carry it on your back.", "weight": "5 kg", "volume": "10 L", - "price": 800, - "price_postapoc": 750, + "price": "8 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "wood", "canvas" ], "symbol": "[", "looks_like": "backpack", @@ -3358,8 +3358,8 @@ "description": "An L-shaped wooden frame with straps to secure a large item to it.", "weight": "5 kg", "volume": "10 L", - "price": 800, - "price_postapoc": 750, + "price": "8 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "wood" ], "symbol": "[", "looks_like": "backpack", @@ -3388,8 +3388,8 @@ "description": "A sturdy L-shaped wooden frame with leather straps to secure an oversized item to it. It has straps to wear it on your back.", "weight": "10 kg", "volume": "45 L", - "price": 800, - "price_postapoc": 750, + "price": "8 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "wood" ], "symbol": "[", "looks_like": "golf_bag", diff --git a/data/json/items/armor/suits_clothes.json b/data/json/items/armor/suits_clothes.json index 0f60e6af462fd..5c40713695785 100644 --- a/data/json/items/armor/suits_clothes.json +++ b/data/json/items/armor/suits_clothes.json @@ -6,8 +6,8 @@ "description": "A suit of snug black leather. Has no pockets, but does feature an abundance of unusually located zippers.", "weight": "1000 g", "volume": "3250 ml", - "price": 211000, - "price_postapoc": 50, + "price": "2 kUSD 110 USD", + "price_postapoc": "50 cent", "to_hit": -3, "material": [ "leather" ], "symbol": "[", @@ -31,7 +31,7 @@ "weight": "408 g", "volume": "2 L", "price": "45 USD", - "price_postapoc": 80, + "price_postapoc": "80 cent", "material": [ "lycra" ], "symbol": "[", "color": "blue", @@ -164,8 +164,8 @@ "description": "A colorful and ridiculous costume fit for a clown. Provides decent storage.", "weight": "1420 g", "volume": "5750 ml", - "price": 2500, - "price_postapoc": 10, + "price": "25 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "cotton", "plastic" ], "symbol": "[", @@ -192,8 +192,8 @@ "//": "16.5 oz heavy denim overalls, modeled after the work overalls despite the description.", "weight": "1200 g", "volume": "3300 ml", - "price": 6550, - "price_postapoc": 800, + "price": "65 USD 50 cent", + "price_postapoc": "8 USD", "to_hit": -3, "material": [ "denim" ], "symbol": "[", @@ -257,8 +257,8 @@ "description": "A full-body costume in the form of an anthropomorphic dinosaur. It is quite encumbering and has little storage but is very warm.", "weight": "7033 g", "volume": "12 L", - "price": 250000, - "price_postapoc": 1000, + "price": "2 kUSD 500 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "cotton" ], "symbol": "[", @@ -282,8 +282,8 @@ "description": "A full-body costume in the form of an anthropomorphic bull shark. It is quite encumbering and has little storage but is very warm.", "weight": "6033 g", "volume": "12 L", - "price": 250000, - "price_postapoc": 1000, + "price": "2 kUSD 500 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "cotton" ], "symbol": "[", @@ -306,8 +306,8 @@ "description": "A cartoonish recreation of a western dragon remade into a suit. Effectively useless nowadays, unless you think the mutants will treat you as one of their own if you wear this. The wings really get in the way.", "weight": "7033 g", "volume": "12 L", - "price": 250000, - "price_postapoc": 1000, + "price": "2 kUSD 500 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "cotton" ], "symbol": "[", @@ -332,8 +332,8 @@ "description": "A fursuit made to resemble an anthropomorphic feline of indistinguishable breed. It's a decent source of faux fur if you need it.", "weight": "7033 g", "volume": "12 L", - "price": 250000, - "price_postapoc": 1000, + "price": "2 kUSD 500 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "cotton", "faux_fur" ], "symbol": "[", @@ -357,8 +357,8 @@ "description": "A jumpsuit embroidered with a pattern of the American flag. Provides decent storage and is not very encumbering.", "weight": "558 g", "volume": "3500 ml", - "price": 9500, - "price_postapoc": 50, + "price": "95 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "jumpsuit", @@ -408,8 +408,8 @@ "description": "A thin, short-sleeved jumpsuit similar to those worn by prisoners. Provides decent storage and is not very encumbering.", "weight": "610 g", "volume": "3500 ml", - "price": 8900, - "price_postapoc": 50, + "price": "89 USD", + "price_postapoc": "50 cent", "to_hit": -3, "material": [ "cotton" ], "symbol": "[", @@ -461,8 +461,8 @@ "description": "A thin, short-sleeved jumpsuit updated for the trans-human who needs full-body clothing. Provides some storage and is adjustable to minimize encumbrance.", "weight": "810 g", "volume": "5 L", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "to_hit": -3, "material": [ "cotton" ], "symbol": "[", @@ -525,8 +525,8 @@ "description": "A black jumpsuit with a skeleton pattern printed on it. It can be zipped all the way up to cover your head and face in a skull pattern too. Use it to zip the head portion closed.", "weight": "939 g", "volume": "3500 ml", - "price": 9500, - "price_postapoc": 60, + "price": "95 USD", + "price_postapoc": "60 cent", "color": "white", "armor": [ { "covers": [ "torso" ], "coverage": 95, "encumbrance": [ 1, 1 ] }, @@ -595,8 +595,8 @@ "description": "An off-white jumpsuit printed to look like the tattered wrappings of an ancient mummy. Very easy to move in, but it doesn't offer any type of protection.", "weight": "639 g", "volume": "3500 ml", - "price": 8500, - "price_postapoc": 50, + "price": "85 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "jumpsuit", @@ -617,8 +617,8 @@ "description": "A fully covering jumpsuit made of waterproof canvas. Offers solid protection from everyday dangers on the job and plenty of storage pockets.", "weight": "1328 g", "volume": "1000 ml", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "canvas" ], "symbol": "[", @@ -706,8 +706,8 @@ "description": "A thick, fully covering jumpsuit made of waterproof canvas lined with extra fabric for warmth in brisk weather. Offers solid protection from everyday dangers on the job and plenty of storage pockets.", "weight": "2436 g", "volume": "2000 ml", - "price": 12000, - "price_postapoc": 1250, + "price": "120 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -3, "material": [ "cotton", "canvas" ], "symbol": "[", @@ -804,8 +804,8 @@ "description": "A thin, short-sleeved and short-legged one-piece suit. Judging by the odd tailoring and adjustment points… maybe you don't want to know who wore it. Provides nominal storage and is not very encumbering.", "weight": "810 g", "volume": "5 L", - "price": 11000, - "price_postapoc": 50, + "price": "110 USD", + "price_postapoc": "50 cent", "to_hit": -3, "material": [ "cotton", "plastic" ], "symbol": "[", @@ -831,8 +831,8 @@ "description": "A one-piece suit of full-body long underwear that helps to maintain body temperature. It laces closed in the front.", "weight": "168 g", "volume": "1 L", - "price": 2500, - "price_postapoc": 250, + "price": "25 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "jumpsuit", @@ -852,8 +852,8 @@ "description": "A full-body fursuit in the form of an anthropomorphic wolf. It is quite encumbering and has little storage but is very warm.", "weight": "7033 g", "volume": "12 L", - "price": 250000, - "price_postapoc": 1000, + "price": "2 kUSD 500 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "cotton", "faux_fur" ], "symbol": "[", @@ -879,8 +879,8 @@ "description": "An encumbering wool suit covered in nice patterns. It looks like full body armor but it only protects against cold, sadly.", "weight": "883 g", "volume": "3 L", - "price": 8000, - "price_postapoc": 350, + "price": "80 USD", + "price_postapoc": "3 USD 50 cent", "to_hit": -1, "material": [ "wool" ], "symbol": "[", @@ -903,8 +903,8 @@ "description": "Short for 'zenshin taitsu', a zentai is a form-fitting full-body nylon and spandex garment. Though it covers your face, you can see through the thin fabric. With a couple of these and some friends, you could put on some kabuki or harass a rival sports team.", "weight": "600 g", "volume": "500 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "lycra" ], "symbol": "[", "color": "dark_gray", diff --git a/data/json/items/armor/suits_protection.json b/data/json/items/armor/suits_protection.json index abdf694edf8e3..807271fa91891 100644 --- a/data/json/items/armor/suits_protection.json +++ b/data/json/items/armor/suits_protection.json @@ -7,8 +7,8 @@ "description": "Thick leather body armor that has been hardened via chemical treatment. Light and strong.", "weight": "6600 g", "volume": "9500 ml", - "price": 26000, - "price_postapoc": 3000, + "price": "260 USD", + "price_postapoc": "30 USD", "to_hit": -5, "material": [ "leather" ], "symbol": "[", @@ -39,8 +39,8 @@ "description": "Leg and body armor made from the exoskeletons of insects.", "weight": "2632 g", "volume": "17500 ml", - "price": 120000, - "price_postapoc": 3000, + "price": "1 kUSD 200 USD", + "price_postapoc": "30 USD", "to_hit": -5, "material": [ "chitin" ], "symbol": "[", @@ -87,7 +87,7 @@ "description": "Leg and body armor crafted from the carefully cleaned and pruned biosilicified exoskeletons of acidic ants. Acid-resistant but brittle.", "material": [ "acidchitin" ], "environmental_protection": 2, - "price_postapoc": 3500, + "price_postapoc": "35 USD", "relative": { "melee_damage": { "bash": 1 } } }, { @@ -115,8 +115,8 @@ "description": "Thick body armor made from furs.", "weight": "3414 g", "volume": "10 L", - "price": 100000, - "price_postapoc": 1500, + "price": "1 kUSD", + "price_postapoc": "15 USD", "to_hit": -5, "material": [ "fur" ], "symbol": "[", @@ -175,8 +175,8 @@ "description": "Thick body armor made from faux furs.", "weight": "3414 g", "volume": "10 L", - "price": 100000, - "price_postapoc": 1500, + "price": "1 kUSD", + "price_postapoc": "15 USD", "to_hit": -5, "material": [ "faux_fur" ], "symbol": "[", @@ -234,8 +234,8 @@ "description": "A full suit of thick leather body armor. Light and comfortable.", "weight": "4400 g", "volume": "7 L", - "price": 12000, - "price_postapoc": 2500, + "price": "120 USD", + "price_postapoc": "25 USD", "to_hit": -5, "material": [ "leather" ], "symbol": "[", @@ -283,8 +283,8 @@ "description": "A suit of Gothic plate armor. The metal shows signs of rust and corrosion, and the leather straps are tattered.", "weight": "11 kg", "volume": "17500 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "budget_steel", "leather" ], "symbol": "[", @@ -305,8 +305,8 @@ "description": "A full set of armor hammered out from sheet metal and tied in place with leather straps and belts. It's crude, heavy, and uncomfortable, but damn protective. Now, you're a true Post-Apocalyptic Warrior.", "weight": "22300 g", "volume": "17500 ml", - "price": 6000, - "price_postapoc": 1200, + "price": "60 USD", + "price_postapoc": "12 USD", "to_hit": -5, "material": [ "lc_steel" ], "symbol": "[", @@ -340,8 +340,8 @@ "description": "A full set of armor hammered out from sheet metal and tied in place with leather straps and belts, with a doubly-thick chest guard to keep all your important organs safe. You might be as mobile as a refrigerator wearing all this, but that's the price to pay to keep your flesh attached.", "weight": "31100 g", "volume": "17500 ml", - "price": 6000, - "price_postapoc": 1300, + "price": "60 USD", + "price_postapoc": "13 USD", "to_hit": -5, "material": [ "lc_steel" ], "symbol": "[", @@ -409,8 +409,8 @@ "description": "A full set of steel armor made from sheet metal hammered into shape and attached with chainmail covering the gaps. For the modern knight on a budget.", "weight": "24300 g", "volume": "17500 ml", - "price": 6000, - "price_postapoc": 1300, + "price": "60 USD", + "price_postapoc": "13 USD", "to_hit": -5, "material": [ "lc_steel", "lc_steel_chain" ], "symbol": "[", @@ -459,8 +459,8 @@ "description": "A full set of steel armor made from sheet metal hammered into shape and attached with chainmail covering the gaps, with an extra-thick chestpiece. About as heavy as a car but nowhere near as mobile, this suit is nonetheless quite protective.", "weight": "33100 g", "volume": "17500 ml", - "price": 6000, - "price_postapoc": 1300, + "price": "60 USD", + "price_postapoc": "13 USD", "to_hit": -5, "material": [ "lc_steel", "lc_steel_chain" ], "symbol": "[", @@ -584,8 +584,8 @@ "description": "A light suit of plate armor with a 2 mm thick chestpiece. This one has been made with mild steel.", "weight": "15 kg", "volume": "17500 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "lc_steel", "lc_steel_chain" ], "symbol": "[", @@ -709,8 +709,8 @@ "description": "A suit of plate armor with a 4 mm thick chestpiece. This one has been made with mild steel.", "weight": "20 kg", "volume": "17500 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "lc_steel", "lc_steel_chain" ], "symbol": "[", @@ -837,8 +837,8 @@ "description": "A heavy suit of plate armor with a 6 mm thick chestpiece. This one has been made with mild steel.", "weight": "25 kg", "volume": "17500 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "lc_steel", "lc_steel_chain" ], "symbol": "[", @@ -962,8 +962,8 @@ "description": "Thick leather body armor that has been reinforced with strategically-placed metal plates.", "weight": "6280 g", "volume": "9 L", - "price": 110000, - "price_postapoc": 3000, + "price": "1 kUSD 100 USD", + "price_postapoc": "30 USD", "to_hit": -5, "material": [ "leather", "budget_steel" ], "symbol": "[", @@ -1045,8 +1045,8 @@ "description": "An extremely heavy suit of ornamental armor. The metal shows signs of rust and corrosion, and the leather straps are tattered.", "weight": "18 kg", "volume": "30 L", - "price": 780000, - "price_postapoc": 6000, + "price": "7 kUSD 800 USD", + "price_postapoc": "60 USD", "to_hit": -5, "material": [ "budget_steel", "leather" ], "symbol": "[", @@ -1067,8 +1067,8 @@ "description": "A full suit of black plastic body armor plates used by riot police. Cleverly placed velcro straps secure each piece, resulting in slightly less encumbrance then its constituent parts. MOLLE webbing is attached to the torso and the word POLICE is emblazoned across the front.", "weight": "3 kg", "volume": "12500 ml", - "price": 60000, - "price_postapoc": 4000, + "price": "600 USD", + "price_postapoc": "40 USD", "to_hit": -3, "material": [ "thermo_resin", "plastic_pad" ], "symbol": "[", @@ -1135,8 +1135,8 @@ "description": "An ornamental suit of Japanese samurai armor.", "weight": "9220 g", "volume": "11500 ml", - "price": 90000, - "price_postapoc": 8000, + "price": "900 USD", + "price_postapoc": "80 USD", "material": [ "iron", "leather" ], "symbol": "[", "looks_like": "armor_lightplate", @@ -1156,8 +1156,8 @@ "description": "A suit of armor made from scraps of metal secured by simple strings to cloth wraps; the loose collection of plates provides decent but uncomfortable protection.", "weight": "9534 g", "volume": "15500 ml", - "price": 60000, - "price_postapoc": 250, + "price": "600 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "budget_steel", "cotton" ], "symbol": "[", @@ -1221,8 +1221,8 @@ "description": "A suit of armor made from thick chunks of rubber tire secured by simple strings; the loose collection of rubber plates provides decent but not the most convenient protection.", "weight": "14400 g", "volume": "15500 ml", - "price": 50000, - "price_postapoc": 200, + "price": "500 USD", + "price_postapoc": "2 USD", "to_hit": -5, "material": [ "rubber" ], "symbol": "[", @@ -1241,8 +1241,8 @@ "description": "A white suit commonly worn by professional beekeepers with straps on your ankles and wrists to prevent bees from flying in. It's not a very tough fabric, but it's lightweight and has plenty of storage thanks to a chest pocket.", "weight": "1587 g", "volume": "3500 ml", - "price": 12000, - "price_postapoc": 100, + "price": "120 USD", + "price_postapoc": "1 USD", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -1278,8 +1278,8 @@ "//": "Should be lighter when irl hauberk as it does not cover legs", "volume": "2750 ml", "longest_side": "14 cm", - "price": 35988, - "price_postapoc": 3000, + "price": "359 USD 88 cent", + "price_postapoc": "30 USD", "looks_like": "armor_blarmor", "pocket_data": [ { @@ -1803,8 +1803,8 @@ "weight": "13131 g", "volume": "3250 ml", "longest_side": "15 cm", - "price": 45000, - "price_postapoc": 8000, + "price": "450 USD", + "price_postapoc": "80 USD", "looks_like": "touring_suit", "pocket_data": [ { @@ -2611,8 +2611,8 @@ "description": "A simple hazardous materials handling suit. Though somewhat restrictive and fragile, wearing it will provide excellent protection against ambient radiation.", "weight": "2100 g", "volume": "2500 ml", - "price": 7700, - "price_postapoc": 1250, + "price": "77 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "plastic" ], "symbol": "[", "looks_like": "jumpsuit", @@ -2637,8 +2637,8 @@ "description": "A flame-resistant whole-body garment worn by firefighters as protection against extreme heat. It requires a separate gas mask for full protection against smoke.", "weight": "2900 g", "volume": "6 L", - "price": 240500, - "price_postapoc": 2500, + "price": "2 kUSD 405 USD", + "price_postapoc": "25 USD", "material": [ "nomex", "kevlar" ], "symbol": "[", "looks_like": "jumpsuit", @@ -2680,8 +2680,8 @@ "description": "Designed to stop the injuries of dog bites, this thick, one piece suit is often used in the rehabilitation of abused animals and in training dogs by the police and military. A base layer of aramid fabric has had strips of soft body armor sewn into it to mimic quilting, and to soften the blunt of animals jumping, slashing, or pouncing on the wearer.", "weight": "11556 g", "volume": "8255 ml", - "price": 20000, - "price_postapoc": 10000, + "price": "200 USD", + "price_postapoc": "100 USD", "to_hit": -5, "//": "real bite suits are made with linen, but we don't have linen, so denim is the closest approx. (canvas is always waterproofed and these suits are not)", "material": [ "kevlar", "denim" ], @@ -2743,8 +2743,8 @@ "description": "An impermeable whole-body garment worn as protection against hazardous materials. Restrictive and fragile, wearing it will provide complete protection against ambient radiation. It requires a separate gas mask for full protection.", "weight": "5000 g", "volume": "17 L", - "price": 117500, - "price_postapoc": 1500, + "price": "1 kUSD 175 USD", + "price_postapoc": "15 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "beekeeping_suit", @@ -2768,8 +2768,8 @@ "description": "A snug body suit made from thin and lightweight Nomex fire-resistant fabric. Tough yet breathable, it is light and comfortable to wear under clothing.", "weight": "688 g", "volume": "1500 ml", - "price": 13000, - "price_postapoc": 750, + "price": "130 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -5, "material": [ "nomex" ], "symbol": "[", @@ -2805,8 +2805,8 @@ "description": "A lightweight environmental suit incorporating Kevlar-lined boots and gloves, worn by Hub personnel in their rare forays aboveground. Colored brown and blue, the white seal of Hub 01 is embroidered on both of its upper arms. It requires a separate gas mask for full protection.", "weight": "4000 g", "volume": "14 L", - "price": 117500, - "price_postapoc": 2000, + "price": "1 kUSD 175 USD", + "price_postapoc": "20 USD", "material": [ "nomex", "kevlar", "hc_steel", "thermo_resin", "lycra", "vinyl" ], "symbol": "[", "looks_like": "hazmat_suit", @@ -3082,8 +3082,8 @@ "description": "The WebbStar moisture retention suit utilizes advanced technology to prevent up to 30% of moisture loss through perspiration. The suit is powered by the micro-motions of the body, especially breathing and walking motions. Because of this, your walking speed is impaired while wearing it.", "weight": "3481 g", "volume": "7500 ml", - "price": 4500000, - "price_postapoc": 2000, + "price": "45 kUSD", + "price_postapoc": "20 USD", "material": [ "lycra", "neoprene" ], "symbol": "[", "looks_like": "jumpsuit", @@ -3101,8 +3101,8 @@ "description": "A full-body cotton suit. Makes the apocalypse a truly gentlemanly experience.", "weight": "1587 g", "volume": "4750 ml", - "price": 20000, - "price_postapoc": 500, + "price": "200 USD", + "price_postapoc": "5 USD", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -3182,8 +3182,8 @@ "description": "A leather bodysuit with padding in high-impact areas, meant for motorcyclists out on the track. The leather is stiff but makes the armor much sturdier and more protective than lighter counterparts.", "weight": "4700 g", "volume": "6500 ml", - "price": 58000, - "price_postapoc": 1000, + "price": "580 USD", + "price_postapoc": "10 USD", "to_hit": -5, "material": [ "leather", "plastic_pad" ], "symbol": "[", @@ -3248,8 +3248,8 @@ "description": "A military officer's dress uniform from before the Cataclysm, complete with rank and ribbons. Just looking at it gives you an air of authority. Perhaps not the most practical military wear, but a very stylish option.", "weight": "1653 g", "volume": "4750 ml", - "price": 22400, - "price_postapoc": 550, + "price": "224 USD", + "price_postapoc": "5 USD 50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -3282,8 +3282,8 @@ "description": "A sage-green US military flight suit. It has various insignia embroidered onto it.", "weight": "1315 g", "volume": "4687 ml", - "price": 22065, - "price_postapoc": 500, + "price": "220 USD 65 cent", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "nomex" ], "symbol": "[", diff --git a/data/json/items/armor/swimming.json b/data/json/items/armor/swimming.json index e7dc92adb3c86..ef1396b604199 100644 --- a/data/json/items/armor/swimming.json +++ b/data/json/items/armor/swimming.json @@ -102,8 +102,8 @@ ], "weight": "32 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "lycra" ], "symbol": "[", "looks_like": "panties", @@ -119,8 +119,8 @@ "description": "A very short pair of bikini bottoms, commonly called a thong.", "weight": "15 g", "volume": "150 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "lycra" ], "symbol": "[", "looks_like": "bikini_bottom", @@ -227,8 +227,8 @@ ], "weight": "32 g", "volume": "250 ml", - "price": 1800, - "price_postapoc": 50, + "price": "18 USD", + "price_postapoc": "50 cent", "material": [ "lycra" ], "symbol": "[", "looks_like": "bra", @@ -244,8 +244,8 @@ "description": "A very short bikini top. It doesn't cover much, but was in fashion before the world ended.", "weight": "15 g", "volume": "150 ml", - "price": 1800, - "price_postapoc": 10, + "price": "18 USD", + "price_postapoc": "10 cent", "material": [ "lycra" ], "symbol": "[", "looks_like": "bikini_top", @@ -262,8 +262,8 @@ "description": "A simple swimsuit.", "weight": "136 g", "volume": "750 ml", - "price": 1150, - "price_postapoc": 60, + "price": "11 USD 50 cent", + "price_postapoc": "60 cent", "material": [ { "type": "nylon", "portion": 8 }, { "type": "lycra", "portion": 2 } ], "symbol": "[", "looks_like": "wetsuit_spring", @@ -374,8 +374,8 @@ "description": "A long-sleeved rashguard shirt. Commonly used to protect against rashes from abrasion or sun exposure.", "weight": "250 g", "volume": "2 L", - "price": 5250, - "price_postapoc": 100, + "price": "52 USD 50 cent", + "price_postapoc": "1 USD", "to_hit": -2, "material": [ { "type": "nylon", "portion": 8 }, { "type": "lycra", "portion": 2 } ], "symbol": "[", @@ -503,8 +503,8 @@ "description": "A pair of very short black swim briefs. Commonly used by male competitive swimmers and bodybuilders.", "weight": "45 g", "volume": "250 ml", - "price": 6000, - "price_postapoc": 50, + "price": "60 USD", + "price_postapoc": "50 cent", "material": [ { "type": "nylon", "portion": 8 }, { "type": "lycra", "portion": 2 } ], "symbol": "[", "color": "dark_gray", @@ -520,8 +520,8 @@ "description": "A pair of blue swim briefs. Commonly used by male competitive swimmers.", "weight": "75 g", "volume": "250 ml", - "price": 6000, - "price_postapoc": 50, + "price": "60 USD", + "price_postapoc": "50 cent", "material": [ { "type": "nylon", "portion": 8 }, { "type": "lycra", "portion": 2 } ], "looks_like": "briefs", "symbol": "[", @@ -538,8 +538,8 @@ "description": "A tightly fitted, skin-tight head garment made of Lycra. Commonly used by recreational and competitive swimmers.", "weight": "50 g", "volume": "250 ml", - "price": 2500, - "price_postapoc": 10, + "price": "25 USD", + "price_postapoc": "10 cent", "material": [ "lycra" ], "symbol": "[", "looks_like": "hood_rain", @@ -564,8 +564,8 @@ "description": "A pair of swimming trunks, with netting.", "weight": "210 g", "volume": "750 ml", - "price": 1800, - "price_postapoc": 50, + "price": "18 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "cotton" ], "symbol": "[", @@ -585,8 +585,8 @@ "description": "A pair of 3 mm split-toe neoprene diving socks with thin rubber soles.", "weight": "130 g", "volume": "1 L", - "price": 6800, - "price_postapoc": 250, + "price": "68 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "neoprene", "nylon", "rubber" ], "symbol": "[", "looks_like": "boots_rubber", @@ -721,8 +721,8 @@ "description": "A pair of rubber flippers worn on the feet, which improve swimming speed while greatly impeding the wearer's ability to walk.", "weight": "680 g", "volume": "1250 ml", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "rubber" ], "symbol": "[", "looks_like": "clownshoes", @@ -766,8 +766,8 @@ "description": "A full-body 3 mm thick neoprene wetsuit with nylon lining.", "weight": "825 g", "volume": "5 L", - "price": 12000, - "price_postapoc": 500, + "price": "120 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "neoprene", "nylon" ], "symbol": "[", @@ -831,8 +831,8 @@ "description": "A full-body 5 mm thick neoprene wetsuit with nylon lining.", "weight": "2200 g", "volume": "6 L", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "neoprene", "nylon" ], "symbol": "[", @@ -897,8 +897,8 @@ "description": "A 3 mm neoprene hood, commonly worn by divers.", "weight": "160 g", "volume": "1 L", - "price": 4500, - "price_postapoc": 250, + "price": "45 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "neoprene", "nylon" ], "symbol": "[", "looks_like": "hood_rain", @@ -979,8 +979,8 @@ "description": "A long-sleeved neoprene jacket. Keeps you warm and protected from the elements.", "weight": "520 g", "volume": "2500 ml", - "price": 7500, - "price_postapoc": 350, + "price": "75 USD", + "price_postapoc": "3 USD 50 cent", "to_hit": -2, "material": [ "neoprene", "nylon" ], "symbol": "[", @@ -1033,8 +1033,8 @@ "description": "A short-sleeved neoprene shirt. Good for use on the beach.", "weight": "272 g", "volume": "1500 ml", - "price": 6500, - "price_postapoc": 250, + "price": "65 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "neoprene", "nylon" ], "symbol": "[", "looks_like": "tshirt", @@ -1144,8 +1144,8 @@ "description": "A long-sleeved neoprene shirt. Good for surfing and other water sports.", "weight": "500 g", "volume": "4 L", - "price": 6500, - "price_postapoc": 250, + "price": "65 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "neoprene", "nylon" ], "symbol": "[", @@ -1237,8 +1237,8 @@ "description": "A pair of light and stretchy neoprene pants. Good for surfing and other water sports.", "weight": "450 g", "volume": "4 L", - "price": 6500, - "price_postapoc": 250, + "price": "65 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "neoprene", "nylon" ], "symbol": "[", @@ -1282,8 +1282,8 @@ "description": "A pair of light and stretchy neoprene shorts. Good for use on the beach.", "weight": "220 g", "volume": "1 L", - "price": 6500, - "price_postapoc": 150, + "price": "65 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "neoprene", "nylon" ], "symbol": "[", "color": "dark_gray", @@ -1338,8 +1338,8 @@ "//2": "A recipe to make these into leg pouches?", "weight": "500 g", "volume": "1500 ml", - "price": 6500, - "price_postapoc": 150, + "price": "65 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "neoprene", "nylon", "nylon_2" ], "symbol": "[", "color": "dark_gray", @@ -1517,8 +1517,8 @@ "description": "A long-sleeved spring wetsuit with pink color details and cleavage-enhancing, hip-accentuating construction. Not as protective as a full-body suit, but also less restrictive.", "weight": "550 g", "volume": "4 L", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "neoprene" ], "symbol": "[", @@ -1602,8 +1602,8 @@ "description": "A sleeveless spring wetsuit with an ocean blue color and cleavage-enhancing, hip-accentuating construction. Not as protective as a full-body suit, but also less restrictive.", "weight": "300 g", "volume": "3 L", - "price": 8000, - "price_postapoc": 450, + "price": "80 USD", + "price_postapoc": "4 USD 50 cent", "to_hit": -2, "material": [ "neoprene" ], "symbol": "[", @@ -1658,8 +1658,8 @@ "//": "Will be based on this: https://www.hammacher.com/product/chainmail-sharkproof-suit", "weight": "8164 g", "volume": "3500 ml", - "price": 35000, - "price_postapoc": 6000, + "price": "350 USD", + "price_postapoc": "60 USD", "to_hit": -1, "material": [ "lc_steel_chain" ], "symbol": "[", @@ -1707,8 +1707,8 @@ "//": "Will be based on this: https://www.hammacher.com/product/chainmail-sharkproof-suit, helmet will be a separate piece", "weight": "8164 g", "volume": "3500 ml", - "price": 35000, - "price_postapoc": 5000, + "price": "350 USD", + "price_postapoc": "50 USD", "to_hit": -1, "material": [ "lc_steel_chain" ], "symbol": "[", @@ -1755,8 +1755,8 @@ "description": "A small pair of goggles made for swimming.", "weight": "81 g", "volume": "250 ml", - "price": 1100, - "price_postapoc": 50, + "price": "11 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "plastic", "rubber" ], "symbol": "[", @@ -1785,8 +1785,8 @@ "description": "A pair of flexible neoprene-silicone rubber gloves, suitable for underwater use.", "weight": "80 g", "volume": "500 ml", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "neoprene", "nylon" ], "symbol": "[", @@ -1869,8 +1869,8 @@ "//": "Based on OTS Spectrum mask", "weight": "1040 g", "volume": "1500 ml", - "price": 40000, - "price_postapoc": 2000, + "price": "400 USD", + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "plastic", "rubber", "thermo_resin" ], "symbol": "[", @@ -1912,8 +1912,8 @@ "//": "Based on Kirby Morgan M-48 MOD-1 mask", "weight": "830 g", "volume": "1500 ml", - "price": 40000, - "price_postapoc": 2000, + "price": "400 USD", + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "plastic", "rubber", "thermo_resin" ], "symbol": "[", diff --git a/data/json/items/armor/torso_armor.json b/data/json/items/armor/torso_armor.json index 5669ebd5d02e8..8d7b9b4d0da05 100644 --- a/data/json/items/armor/torso_armor.json +++ b/data/json/items/armor/torso_armor.json @@ -7,8 +7,8 @@ "description": "An ancient Greek breastplate made of bronze.", "weight": "5896 g", "volume": "6 L", - "price": 50000, - "price_postapoc": 3000, + "price": "500 USD", + "price_postapoc": "30 USD", "to_hit": -5, "material": [ "bronze" ], "symbol": "[", @@ -46,8 +46,8 @@ "description": "A solid, single-piece cuirass made from bronze. It isn't particularly well designed, but it does its job.", "weight": "4896 g", "volume": "6 L", - "price": 40000, - "price_postapoc": 2000, + "price": "400 USD", + "price_postapoc": "20 USD", "to_hit": -5, "material": [ "bronze" ], "symbol": "[", @@ -83,8 +83,8 @@ "description": "A cuirass made of multiple pieces of tough leather, laced together for durable yet flexible protection.", "weight": "2108 g", "volume": "9250 ml", - "price": 26000, - "price_postapoc": 2500, + "price": "260 USD", + "price_postapoc": "25 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "vest_leather", @@ -138,8 +138,8 @@ "description": "A cuirass made of small strips of sheet metal laced together, something of an intermediary between chain mail and plate armor. It's less Mad Max and more Garage Mongolian, but the classics are classic for a reason.", "weight": "14000 g", "volume": "9250 ml", - "price": 26000, - "price_postapoc": 2500, + "price": "260 USD", + "price_postapoc": "25 USD", "material": [ "lc_steel" ], "symbol": "[", "looks_like": "armor_lorica", @@ -230,8 +230,8 @@ "weight": "6800 g", "//": "Assuming roughly 1m^2 at a density of 1.4 lbs/ft^2", "volume": "9250 ml", - "price": 120, - "price_postapoc": 50, + "price": "1 USD 20 cent", + "price_postapoc": "50 cent", "material": [ "plastic", "carpet_pilling" ], "symbol": "[", "looks_like": "tunic_rag", @@ -285,8 +285,8 @@ "description": "An ancient Roman laminar armor, made of overlapping metal strips connected to internal leather straps.", "weight": "5286 g", "volume": "6 L", - "price": 50000, - "price_postapoc": 3500, + "price": "500 USD", + "price_postapoc": "35 USD", "to_hit": -5, "material": [ "iron", "leather" ], "symbol": "[", @@ -333,8 +333,8 @@ "description": "This armor, made of interlocking plates of burnished bronze, appears to be either a high-quality recreation or a genuine artifact. Despite having an ancient design, it is in mint condition aside from some battle damage. It covers from the shoulders to the hips and is of extremely high quality.", "weight": "7286 g", "volume": "6 L", - "price": 50000, - "price_postapoc": 7000, + "price": "500 USD", + "price_postapoc": "70 USD", "to_hit": -5, "material": [ "fancy_bronze", "leather" ], "symbol": "[", @@ -375,8 +375,8 @@ "weight": "8800 g", "//": "The weight assumes the sheet metal is 75cm x 50cm x 1.5mm.", "volume": "4 L", - "price": 500, - "price_postapoc": 400, + "price": "5 USD", + "price_postapoc": "4 USD", "to_hit": -2, "material": [ "lc_steel" ], "symbol": "H", @@ -407,8 +407,8 @@ "weight": "17600 g", "//": "The weight assumes the sheet metal is 75cm x 50cm x 1.5mm, doubled.", "volume": "4 L", - "price": 1000, - "price_postapoc": 400, + "price": "10 USD", + "price_postapoc": "4 USD", "to_hit": -3, "material": [ "lc_steel" ], "repairs_with": [ "steel" ], @@ -439,8 +439,8 @@ "weight": "4400 g", "//": "The weight assumes the sheets are 35cm x 50cm x 1.5mm.", "volume": "2 L", - "price": 500, - "price_postapoc": 400, + "price": "5 USD", + "price_postapoc": "4 USD", "to_hit": -2, "material": [ "lc_steel" ], "repairs_with": [ "steel" ], @@ -481,8 +481,8 @@ "description": "A crude form of armor made from thickly-stacked paper and rolls of duct tape.", "weight": "5790 g", "volume": "9500 ml", - "price": 4200, - "price_postapoc": 100, + "price": "42 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "paper" ], "symbol": "O", @@ -502,8 +502,8 @@ "description": "Armor fashioned from from overlapping chunks of tire and rolls of duct tape, covering the shoulders and torso.", "weight": "5790 g", "volume": "9500 ml", - "price": 4200, - "price_postapoc": 100, + "price": "42 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "rubber" ], "symbol": "O", @@ -524,8 +524,8 @@ "weight": "6894 g", "volume": "1 L", "longest_side": "10 cm", - "price": 10000, - "price_postapoc": 2000, + "price": "100 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "steel" ], "symbol": "[", @@ -732,7 +732,7 @@ "description": "A thick cotton sweatshirt that an amateur tailor sewed ever-increasing amounts of cloth onto, providing noticeable, if haphazard padding.", "weight": "1000 g", "volume": "3500 ml", - "price_postapoc": 200, + "price_postapoc": "2 USD", "to_hit": -2, "material": [ "cotton" ], "symbol": "[", @@ -773,7 +773,7 @@ "description": "A thick cotton shirt with the sleeves cut off and large amounts of cloth sewn in to make a padded vest. It would be fashionable, if not for all the disparate colors from the patchwork cotton cannibalized from other random clothes.", "weight": "600 g", "volume": "2000 ml", - "price_postapoc": 100, + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "cotton" ], "symbol": "[", @@ -804,8 +804,8 @@ "description": "A solid vest of plastic padding protecting your torso.", "weight": "1000 g", "volume": "7 L", - "price": 60000, - "price_postapoc": 500, + "price": "600 USD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "plastic", "neoprene" ], "symbol": "H", @@ -826,8 +826,8 @@ "description": "A steel breastplate, and a vital part of plate armor. Even as full armor went into decline, cuirasses remained in use among cavalry in Europe.", "weight": "4200 g", "volume": "6 L", - "price": 20000, - "price_postapoc": 4000, + "price": "200 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "steel", "leather" ], "symbol": "[", @@ -877,8 +877,8 @@ "description": "A cuirass made from scraps of metal secured by simple strings.", "weight": "3366 g", "volume": "5750 ml", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "budget_steel", "cotton" ], "repairs_with": [ "budget_steel" ], @@ -926,8 +926,8 @@ "description": "A cuirass made from thick chunks of tire secured by simple strings; the loose collection of rubber plates provides decent but not the most convenient protection.", "weight": "4800 g", "volume": "5750 ml", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "rubber" ], "symbol": "[", @@ -963,8 +963,8 @@ "description": "A padded jacket with a zipper on the back, used by fencers to prevent accidents.", "weight": "800 g", "volume": "2500 ml", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "cotton", "nylon" ], "symbol": "[", "looks_like": "coat_lab", @@ -982,8 +982,8 @@ "description": "A thick motorcycle jacket with metal plates drilled onto various areas for increased protection.", "weight": "7500 g", "volume": "4500 ml", - "price": 17900, - "price_postapoc": 2500, + "price": "179 USD", + "price_postapoc": "25 USD", "to_hit": -3, "material": [ "leather", "lc_steel" ], "symbol": "[", @@ -1036,8 +1036,8 @@ "description": "A denim jacket reinforced with metal plates. Adequately protective, but not very sturdy.", "weight": "6350 g", "volume": "5750 ml", - "price": 15000, - "price_postapoc": 2000, + "price": "150 USD", + "price_postapoc": "20 USD", "material": [ "denim", "lc_steel" ], "symbol": "[", "looks_like": "jacket_jean", @@ -1089,8 +1089,8 @@ "description": "A denim vest reinforced with metal plates. Adequately protective, but not very sturdy.", "weight": "4100 g", "volume": "4100 ml", - "price": 13000, - "price_postapoc": 1800, + "price": "130 USD", + "price_postapoc": "18 USD", "material": [ "denim", "lc_steel" ], "symbol": "[", "looks_like": "jacket_jean", @@ -1132,7 +1132,7 @@ "name": { "str": "hardened armored motorcycle jacket" }, "description": "A thick motorcycle jacket with hardened metal plates drilled onto various areas for highly increased protection.", "copy-from": "jacket_leather_mod", - "price_postapoc": 3500, + "price_postapoc": "35 USD", "material": [ "leather", "ch_steel" ], "looks_like": "jacket_leather_mod", "armor": [ @@ -1162,7 +1162,7 @@ "name": { "str": "hardened armored jean jacket" }, "description": "A denim jacket reinforced with hardened steel plates. Highly protective, but not very sturdy.", "copy-from": "jacket_jean_mod", - "price_postapoc": 3000, + "price_postapoc": "30 USD", "material": [ "denim", "ch_steel" ], "looks_like": "jacket_jean_mod", "armor": [ @@ -1192,7 +1192,7 @@ "name": { "str": "hardened armored jean vest" }, "description": "A denim vest reinforced with hardened steel plates. Highly protective, but not very sturdy.", "copy-from": "vest_jean_mod", - "price_postapoc": 2800, + "price_postapoc": "28 USD", "material": [ "denim", "ch_steel" ], "looks_like": "jacket_jean_mod", "armor": [ @@ -1215,7 +1215,7 @@ "copy-from": "jacket_leather_mod", "weight": "5000 g", "volume": "6000 ml", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "material": [ "leather", "bone" ], "armor": [ { @@ -1246,7 +1246,7 @@ "description": "A motorcycle jacket reinforced with chunks of thick rubber tire. Thick and highly resistant to blunt force.", "weight": "5800 g", "volume": "6 L", - "price_postapoc": 2500, + "price_postapoc": "25 USD", "material": [ "rubber", "leather" ], "copy-from": "jacket_leather_mod", "looks_like": "jacket_leather_mod", @@ -1281,8 +1281,8 @@ "description": "A thin, lightweight conductive vest with the zipper on the back used by fencers for electronic scoring. Its outer layer is a woven mix of sturdy cotton and stainless steel strands.", "weight": "843 g", "volume": "2500 ml", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton", "budget_steel" ], "symbol": "[", "color": "light_gray", @@ -1298,8 +1298,8 @@ "description": "A thin, lightweight conductive jacket used by fencers for electronic scoring. Its outer layer is a woven mix of sturdy cotton and stainless steel strands.", "weight": "1043 g", "volume": "2500 ml", - "price": 8500, - "price_postapoc": 250, + "price": "85 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton", "budget_steel" ], "symbol": "[", "color": "light_gray", @@ -1316,8 +1316,8 @@ "description": "Heavy polycarbonate armor for your upper torso. Normally worn by football players.", "weight": "2810 g", "volume": "7 L", - "price": 11000, - "price_postapoc": 250, + "price": "110 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "thermo_resin", "cotton", "plastic_pad" ], "symbol": "[", "looks_like": "chestguard_hard", @@ -1357,8 +1357,8 @@ "description": "A lightweight level II ballistic vest, suitable for wearing under a coat or other outer wear.", "weight": "1960 g", "volume": "4 L", - "price": 35000, - "price_postapoc": 1250, + "price": "350 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -3, "material": [ "kevlar_layered", "nylon" ], "symbol": "[", @@ -1401,8 +1401,8 @@ "description": "A light jacket made of a stretch mesh covered in plastic pads meant for motorcyclists. Made to be much more comfortable to wear than leather alternatives, but the underlying Lycra isn't protective at all.", "weight": "1066 g", "volume": "2 L", - "price": 15000, - "price_postapoc": 1000, + "price": "150 USD", + "price_postapoc": "10 USD", "material": [ "plastic_pad", "lycra" ], "symbol": "[", "looks_like": "jacket_leather", @@ -1440,8 +1440,8 @@ "description": "A sturdy cotton plastron that protects much of the torso, the dominant shoulder, and underarm while fencing.", "weight": "110 g", "volume": "500 ml", - "price": 1600, - "price_postapoc": 50, + "price": "16 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "color": "white", @@ -1457,8 +1457,8 @@ "description": "A rigid plastic plastron with molded cups to be worn by female fencers for protection while fencing.", "weight": "194 g", "volume": "850 ml", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "material": [ "plastic" ], "symbol": "[", "color": "white", @@ -1474,8 +1474,8 @@ "description": "An armored vest made from thick leather and metal plates.", "weight": "4000 g", "volume": "3 L", - "price": 17900, - "price_postapoc": 1200, + "price": "179 USD", + "price_postapoc": "12 USD", "to_hit": -3, "material": [ "leather", "lc_steel" ], "symbol": "[", @@ -1517,7 +1517,7 @@ "type": "ARMOR", "name": { "str": "hardened armored leather vest" }, "description": "An armored vest made from thick leather and metal plates which have been hardened for superb protection.", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "copy-from": "vest_leather_mod", "looks_like": "vest_leather_mod", "replace_materials": { "lc_steel": "ch_steel" } @@ -1530,8 +1530,8 @@ "description": "A light chestplate, 2 mm thick. This one has been made with mild steel.", "weight": "7500 g", "volume": "8750 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "leather", "lc_steel" ], "symbol": "[", @@ -1646,8 +1646,8 @@ "description": "A chestplate, 4 mm thick. This one has been made with mild steel.", "weight": "10 kg", "volume": "17500 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "leather", "lc_steel" ], "symbol": "[", @@ -1762,8 +1762,8 @@ "description": "A heavy chestplate, 6 mm thick. This one has been made with mild steel.", "weight": "17500 g", "volume": "17500 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "material": [ "leather", "lc_steel" ], "symbol": "[", @@ -1878,7 +1878,7 @@ "description": "Armor made of combined pre-Cataclysm clothing. Sections from leather clothing are tightened and affixed to a thick cotton shirt, excluding the joints.", "weight": "2000 g", "volume": "2500 ml", - "price_postapoc": 3500, + "price_postapoc": "35 USD", "to_hit": -2, "material": [ "cotton", "leather" ], "symbol": "[", @@ -1925,7 +1925,7 @@ "description": "Armor made of combined pre-Cataclysm clothing. Sections from leather clothing are tightened and affixed to a thick cotton shirt. The sleeves have been cut off.", "weight": "1500 g", "volume": "2000 ml", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "cotton", "leather" ], "symbol": "[", @@ -1955,8 +1955,8 @@ "description": "A hard chest protector, attached to thigh and upper arm guards. Used by riot police officers. MOLLE webbing is attached to the torso and the word POLICE is emblazoned across the front.", "weight": "2 kg", "volume": "10000 ml", - "price": 40000, - "price_postapoc": 2500, + "price": "400 USD", + "price_postapoc": "25 USD", "to_hit": -3, "material": [ "thermo_resin", "plastic_pad" ], "symbol": "[", @@ -2005,8 +2005,8 @@ "description": "A leather chest plate with attached shoulder guards.", "weight": "3250 g", "volume": "3500 ml", - "price": 6000, - "price_postapoc": 1250, + "price": "60 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -5, "material": [ "leather" ], "symbol": "[", @@ -2058,8 +2058,8 @@ "description": "Mirror armor is either round or square plates connected by fasteners to cover all four sides of the vital areas of the torso, mirror plate was usually worn on top of other armor like chainmail or brigandines. This set is crude square plates made of mild steel.", "weight": "1000 g", "volume": "2 L", - "price": 20000, - "price_postapoc": 4000, + "price": "200 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "lc_steel", "leather" ], "symbol": "[", diff --git a/data/json/items/armor/torso_clothes.json b/data/json/items/armor/torso_clothes.json index fe0c739eadeb9..ef4b5eaba62ba 100644 --- a/data/json/items/armor/torso_clothes.json +++ b/data/json/items/armor/torso_clothes.json @@ -7,7 +7,7 @@ "copy-from": "apron_cotton", "volume": "1750 ml", "weight": "226 g", - "price": 1000, + "price": "10 USD", "material": [ "cotton" ], "color": "white", "delete": { "flags": [ "WATER_FRIENDLY" ] }, @@ -140,7 +140,7 @@ "copy-from": "apron_cotton", "volume": "350 ml", "weight": "136 g", - "price": 2500, + "price": "25 USD", "material": [ "cotton" ], "color": "white", "delete": { "flags": [ "WATER_FRIENDLY" ] }, @@ -273,7 +273,7 @@ "copy-from": "apron_leather", "volume": "1750 ml", "weight": "357 g", - "price": 1000, + "price": "10 USD", "material": [ "cotton" ], "color": "white", "material_thickness": 1.5, @@ -396,8 +396,8 @@ "description": "An apron made of leather.", "weight": "1925 g", "volume": "2250 ml", - "price": 1500, - "price_postapoc": 50, + "price": "15 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -452,7 +452,7 @@ "description": "An apron made of Kevlar fabric.", "copy-from": "apron_leather", "weight": "576 g", - "price": 3800, + "price": "38 USD", "material": [ "kevlar" ], "color": "dark_gray", "material_thickness": 2.5 @@ -464,8 +464,8 @@ "description": "A short black and yellow dress, reminiscent of a bee. It includes bee wings, a hood, and a pair of antennae.", "weight": "739 g", "volume": "4000 ml", - "price": 7500, - "price_postapoc": 50, + "price": "75 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "dress", @@ -508,8 +508,8 @@ "description": "A professional-looking wool blazer.", "weight": "680 g", "volume": "3500 ml", - "price": 12000, - "price_postapoc": 50, + "price": "120 USD", + "price_postapoc": "50 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "jacket_light", @@ -553,8 +553,8 @@ "description": "A light and breezy cheerleader dress. It's blue and white with the word \"Cheers\" printed at the top.", "weight": "200 g", "volume": "500 ml", - "price": 1250, - "price_postapoc": 50, + "price": "12 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "sundress", @@ -574,8 +574,8 @@ "description": "A short red cheerleader tank top. It has the word \"Cheers\" printed at the top.", "weight": "100 g", "volume": "250 ml", - "price": 800, - "price_postapoc": 50, + "price": "8 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "tank_top", @@ -591,8 +591,8 @@ "description": "An oddly balanced long-sleeved shirt with a thin, breathable torso and thicker arms more appropriate for a jacket. The arms are covered in a camouflage pattern and have two shoulder pockets. It has a pocket for your pen!", "weight": "450 g", "volume": "3 L", - "price": 6400, - "price_postapoc": 750, + "price": "64 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "nylon" ], "symbol": "[", "looks_like": "jacket_army", @@ -635,8 +635,8 @@ "description": "A long cotton dress.", "weight": "680 g", "volume": "3500 ml", - "price": 18000, - "price_postapoc": 50, + "price": "180 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -655,8 +655,8 @@ "//": "This is for 12 oz denim shirt, which I found to be average", "weight": "680 g", "volume": "1 L", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "denim" ], "looks_like": "dress_shirt", "symbol": "[", @@ -690,8 +690,8 @@ "description": "A white button-down shirt with long sleeves. Looks professional!", "weight": "250 g", "volume": "750 ml", - "price": 1500, - "price_postapoc": 50, + "price": "15 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "longshirt", @@ -720,8 +720,8 @@ "description": "A beautiful white wedding dress. What good will it be now?", "weight": "9333 g", "volume": "18 L", - "price": 59000, - "price_postapoc": 50, + "price": "590 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -742,8 +742,8 @@ "description": "A t-shirt embroidered with an American flag pattern.", "weight": "158 g", "volume": "500 ml", - "price": 6000, - "price_postapoc": 50, + "price": "60 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "tshirt", @@ -768,8 +768,8 @@ "description": "A brightly-colored vest designed to keep you upright and floating in water.", "weight": "451 g", "volume": "9 L", - "price": 11000, - "price_postapoc": 250, + "price": "110 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "plastic", "canvas" ], "symbol": "[", @@ -788,8 +788,8 @@ "description": "A flotation vest made of inflated animal skins.", "weight": "451 g", "volume": "9 L", - "price": 11000, - "price_postapoc": 250, + "price": "110 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "leather" ], "symbol": "[", @@ -808,8 +808,8 @@ "description": "A luxurious evening gown. It accentuates your curves, or lack thereof.", "weight": "1800 g", "volume": "5 L", - "price": 21000, - "price_postapoc": 50, + "price": "210 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "dress", @@ -826,8 +826,8 @@ "description": "A short top made from cotton.", "weight": "100 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -845,8 +845,8 @@ "description": "A sweatshirt with a hood and a \"kangaroo pocket\" in the front for storage.", "weight": "420 g", "volume": "3 L", - "price": 3800, - "price_postapoc": 100, + "price": "38 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "sweater", @@ -960,8 +960,8 @@ "description": "A shirt made of cotton, printed with the name and logo of a sports team.", "weight": "480 g", "volume": "2250 ml", - "price": 8900, - "price_postapoc": 50, + "price": "89 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "tshirt", @@ -1006,8 +1006,8 @@ "description": "A skin-tight spandex garment, covering the body from the groin to the shoulders. With its deep scoop-cut back and high waist cuts, this garment is perfect for showcasing your physique on the stage.", "weight": "150 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "lycra" ], "symbol": "[", "color": "dark_gray", @@ -1023,8 +1023,8 @@ "description": "A t-shirt with a picture of the Tux mascot on it. Underneath it says \"You wouldn't buy a car with the hood welded shut.\"", "weight": "110 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "tshirt", @@ -1083,8 +1083,8 @@ "description": "A long-sleeved cotton shirt.", "weight": "146 g", "volume": "750 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "dress_shirt", @@ -1101,8 +1101,8 @@ "description": "The French maid dress, blue with a frilly white apron.", "weight": "250 g", "volume": "250 ml", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "dress", @@ -1156,8 +1156,8 @@ "description": "The French maid dress, black with a frilly white apron. This version is much lighter and shorter than normal.", "weight": "150 g", "volume": "250 ml", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "maid_dress", @@ -1216,8 +1216,8 @@ "description": "A short off-white dress printed to look like the tattered wrappings of an ancient mummy. Very easy to move in, but it doesn't offer any type of protection.", "weight": "10 g", "volume": "2000 ml", - "price": 5000, - "price_postapoc": 10, + "price": "50 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "dress", @@ -1240,8 +1240,8 @@ }, "weight": "440 g", "volume": "2250 ml", - "price": 16000, - "price_postapoc": 50, + "price": "160 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "sundress", @@ -1269,8 +1269,8 @@ }, "weight": "408 g", "volume": "2000 ml", - "price": 16000, - "price_postapoc": 50, + "price": "160 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "sundress", @@ -1301,8 +1301,8 @@ "description": "A short-sleeved cotton shirt, slightly thicker than a t-shirt.", "weight": "136 g", "volume": "750 ml", - "price": 1500, - "price_postapoc": 50, + "price": "15 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "tshirt", @@ -1327,8 +1327,8 @@ "description": "A light blue button down shirt with a couple of pockets in front and the US postal service logo embroidered on it.", "weight": "110 g", "volume": "500 ml", - "price": 1500, - "price_postapoc": 50, + "price": "15 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "polo_shirt", @@ -1378,8 +1378,8 @@ }, "weight": "800 g", "volume": "3500 ml", - "price": 18000, - "price_postapoc": 60, + "price": "180 USD", + "price_postapoc": "60 cent", "to_hit": -5, "material": [ "cotton", "faux_fur" ], "symbol": "[", @@ -1407,8 +1407,8 @@ "description": "A long red dress with full sleeves and white faux fur trim. A dress for a queen of the north pole.", "weight": "1200 g", "volume": "3850 ml", - "price": 25000, - "price_postapoc": 90, + "price": "250 USD", + "price_postapoc": "90 cent", "to_hit": -5, "material": [ "cotton", "faux_fur" ], "symbol": "[", @@ -1433,8 +1433,8 @@ }, "weight": "600 g", "volume": "2000 ml", - "price": 16000, - "price_postapoc": 50, + "price": "160 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton", "faux_fur" ], "symbol": "[", @@ -1469,8 +1469,8 @@ "description": "A charcoal button-down shirt with long sleeves. Has a patch with the word \"SWAT\" affixed on one shoulder." } ], - "price": 1100, - "price_postapoc": 50, + "price": "11 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "dress_shirt", @@ -1499,8 +1499,8 @@ "description": "A crude and bulky short-sleeved shirt woven from grass. Definitely not the most comfortable thing to wear.", "weight": "500 g", "volume": "2500 ml", - "price": 100, - "price_postapoc": 5, + "price": "1 USD", + "price_postapoc": "5 cent", "material": [ "dry_plant" ], "symbol": "[", "looks_like": "camisole", @@ -1525,8 +1525,8 @@ "description": { "str": "A long black and red dress with full sleeves, a collar, and embroidery reminiscent of a vampire duchess." }, "weight": "800 g", "volume": "3500 ml", - "price": 18000, - "price_postapoc": 60, + "price": "180 USD", + "price_postapoc": "60 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "dress", @@ -1546,8 +1546,8 @@ "description": { "str": "A short red dress made in gothic lolita fashion." }, "weight": "600 g", "volume": "2000 ml", - "price": 16000, - "price_postapoc": 50, + "price": "160 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "sundress", @@ -1579,8 +1579,8 @@ "description": "A red and black gown with full sleeves. It has a gothic style and looks pretty luxurious.", "weight": "2499 g", "volume": "5 L", - "price": 21000, - "price_postapoc": 50, + "price": "210 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "gown", @@ -1601,8 +1601,8 @@ "description": "A long-sleeved shirt with horizontal black and white stripes.", "weight": "146 g", "volume": "750 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "longshirt", @@ -1619,8 +1619,8 @@ "description": "A light and breezy cotton dress.", "weight": "300 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -1644,8 +1644,8 @@ "description": "A warm wool sweater.", "weight": "550 g", "volume": "2 L", - "price": 4500, - "price_postapoc": 100, + "price": "45 USD", + "price_postapoc": "1 USD", "material": [ "wool" ], "symbol": "[", "looks_like": "longshirt", @@ -1663,8 +1663,8 @@ "description": "A thick cotton shirt.", "weight": "244 g", "volume": "3500 ml", - "price": 1800, - "price_postapoc": 100, + "price": "18 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "longshirt", @@ -1682,8 +1682,8 @@ "description": "A gray work t-shirt with a small front pocket.", "weight": "200 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "canvas" ], "symbol": "[", "looks_like": "polo_shirt", @@ -1728,8 +1728,8 @@ "description": "A short-sleeved cotton shirt.", "weight": "110 g", "volume": "500 ml", - "price": 800, - "price_postapoc": 50, + "price": "8 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "camisole", @@ -1856,8 +1856,8 @@ "description": "A short-sleeved cotton shirt.", "weight": "110 g", "volume": "500 ml", - "price": 800, - "price_postapoc": 50, + "price": "8 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "tshirt", @@ -1907,8 +1907,8 @@ "copy-from": "tshirt", "name": { "str": "tour t-shirt" }, "description": "A short-sleeved cotton shirt.", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "looks_like": "tshirt", "color": "dark_gray", "snippet_category": [ @@ -1965,8 +1965,8 @@ "description": "A shirt with four tassels worn by observant Jews in deference to Deuteronomy 22:12, which commands the wearing of fringes on the corner of one's garments.", "weight": "158 g", "volume": "500 ml", - "price": 6000, - "price_postapoc": 50, + "price": "60 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "tshirt", @@ -1991,8 +1991,8 @@ "description": "A traditional Buddhist shirt, covering most of the upper body, but not the arms.", "weight": "250 g", "volume": "750 ml", - "price": 6500, - "price_postapoc": 50, + "price": "65 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "longshirt", @@ -2010,8 +2010,8 @@ "description": "A vest made from thick leather.", "weight": "997 g", "volume": "2500 ml", - "price": 5500, - "price_postapoc": 250, + "price": "55 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -2054,8 +2054,8 @@ "description": { "str": "A dress with full sleeves and pointed cuts at the edges. Perfect for Halloween." }, "weight": "258 g", "volume": "1500 ml", - "price": 14000, - "price_postapoc": 40, + "price": "140 USD", + "price_postapoc": "40 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "dress", @@ -2113,8 +2113,8 @@ "description": "A long dress with sleeves, typical of a witch. It includes a pouch for storing potions and other magical items.", "weight": "700 g", "volume": "3750 ml", - "price": 18000, - "price_postapoc": 60, + "price": "180 USD", + "price_postapoc": "60 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "dress", @@ -2175,8 +2175,8 @@ "description": { "str": "A short dress typically used by witches." }, "weight": "200 g", "volume": "1500 ml", - "price": 12000, - "price_postapoc": 50, + "price": "120 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "sundress", @@ -2240,8 +2240,8 @@ "description": "A hooded wool shirt with a kangaroo pocket in the front.", "weight": "580 g", "volume": "3250 ml", - "price": 3500, - "price_postapoc": 100, + "price": "35 USD", + "price_postapoc": "1 USD", "material": [ "wool" ], "symbol": "[", "looks_like": "hoodie", @@ -2271,8 +2271,8 @@ "description": "A professional-looking bright blue wool suit for the Boston-Chan costume.", "weight": "680 g", "volume": "3500 ml", - "price": 12000, - "price_postapoc": 50, + "price": "120 USD", + "price_postapoc": "50 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "jacket_light", diff --git a/data/json/items/armor/undergarment.json b/data/json/items/armor/undergarment.json index 9f94263a5cbf0..9f8935fb9fd89 100644 --- a/data/json/items/armor/undergarment.json +++ b/data/json/items/armor/undergarment.json @@ -6,8 +6,8 @@ "description": "Snug, soft cloth sleeves to keep your arms warm.", "weight": "32 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "armguard_larmor", @@ -49,8 +49,8 @@ "weight": "150 g", "volume": "750 ml", "looks_like": "chestwrap", - "price": 700, - "price_postapoc": 50, + "price": "7 USD", + "price_postapoc": "50 cent", "material": [ "wool" ], "symbol": "[", "color": "blue", @@ -67,8 +67,8 @@ "weight": "120 g", "volume": "500 ml", "looks_like": "bellyband", - "price": 700, - "price_postapoc": 10, + "price": "7 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "color": "white", @@ -85,7 +85,7 @@ "copy-from": "bellywrap", "weight": "1104 g", "volume": "750 ml", - "price": 700, + "price": "7 USD", "material": [ "fur" ], "color": "brown", "warmth": 12, @@ -100,7 +100,7 @@ "copy-from": "bellywrap", "weight": "888 g", "volume": "750 ml", - "price": 525, + "price": "5 USD 25 cent", "material": [ "leather" ], "color": "brown", "warmth": 6, @@ -113,7 +113,7 @@ "name": { "str": "wool belly wrap" }, "description": "Felt patches wrapped around the belly. Usually worn in combination with a chestwrap. Provides negligible protection against punches to your stomach.", "copy-from": "bellywrap", - "price": 500, + "price": "5 USD", "material": [ "wool" ], "color": "blue", "warmth": 8, @@ -127,8 +127,8 @@ "description": "A simple fur bikini top.", "weight": "200 g", "volume": "250 ml", - "price": 4900, - "price_postapoc": 100, + "price": "49 USD", + "price_postapoc": "1 USD", "material": [ "fur" ], "symbol": "[", "looks_like": "bikini_top", @@ -145,8 +145,8 @@ "description": "A simple leather bikini top.", "weight": "200 g", "volume": "250 ml", - "price": 3500, - "price_postapoc": 50, + "price": "35 USD", + "price_postapoc": "50 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "bikini_top", @@ -163,8 +163,8 @@ "description": "A binder, meant to bind the chest close to the body to keep a persons chest flat.", "weight": "110 g", "volume": "250 ml", - "price": 3500, - "price_postapoc": 150, + "price": "35 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "lycra", "cotton" ], "symbol": "[", "looks_like": "bikini_top", @@ -311,8 +311,8 @@ "description": "The age-old question, boxers or briefs? Your answer? Yes.", "weight": "37 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "shorts", @@ -361,8 +361,8 @@ ], "weight": "42 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "boxer_briefs", @@ -414,8 +414,8 @@ ], "weight": "42 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "boxer_briefs", @@ -452,8 +452,8 @@ "description": "A simple bra. For protecting those bits you don't want zombies to look at.", "weight": "32 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "tank_top", @@ -486,8 +486,8 @@ "description": "A pair of briefs. Comfortable underwear worn by men.", "weight": "32 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "boxer_briefs", @@ -504,8 +504,8 @@ "description": "A small camisole made from silk. Typically used as an undergarment, it is light and easy to wear.", "weight": "42 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "cotton" ], "symbol": "[", @@ -525,8 +525,8 @@ "description": "Rags wrapped around the chest. Preserves your modesty and keeps things out of the way, but not good for much else.", "weight": "100 g", "volume": "500 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "tshirt", @@ -543,8 +543,8 @@ "description": "Fur pelts wrapped around the chest. Preserves your modesty and keeps things out of the way, but not good for much else.", "weight": "372 g", "volume": "750 ml", - "price": 700, - "price_postapoc": 10, + "price": "7 USD", + "price_postapoc": "10 cent", "material": [ "fur" ], "symbol": "[", "looks_like": "chestwrap_leather", @@ -561,8 +561,8 @@ "description": "Leather patches wrapped around the chest. Preserves your modesty and keeps things out of the way, but not good for much else.", "weight": "296 g", "volume": "750 ml", - "price": 525, - "price_postapoc": 10, + "price": "5 USD 25 cent", + "price_postapoc": "10 cent", "material": [ "leather" ], "symbol": "[", "looks_like": "chestwrap", @@ -579,8 +579,8 @@ "description": "Felt patches wrapped around the chest. Preserves your modesty and keeps things out of the way, but not good for much else.", "weight": "110 g", "volume": "500 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "chestwrap", @@ -597,8 +597,8 @@ "description": "A snug, black leather corset. Has no pockets, but its thick material provides good protection from harm. Use it to loosen it if you want to wear it over normal clothing.", "weight": "640 g", "volume": "1250 ml", - "price": 11000, - "price_postapoc": 100, + "price": "110 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "leather" ], "symbol": "[", @@ -667,8 +667,8 @@ "weight": "80 g", "volume": "200 ml", "looks_like": "panties", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "color": "dark_gray", @@ -683,8 +683,8 @@ "description": "Snug, soft cloth sleeves to keep your legs warm.", "weight": "70 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "leggings", @@ -709,8 +709,8 @@ "description": "Snug fur sleeves to keep your legs warm. Simple yet effective since prehistoric times.", "weight": "700 g", "volume": "1500 ml", - "price": 1500, - "price_postapoc": 250, + "price": "15 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "fur" ], "symbol": "[", "looks_like": "leg_warmers", @@ -735,8 +735,8 @@ "description": "Snug fur sleeves to keep your fetlocks warm.", "weight": "500 g", "volume": "750 ml", - "price": 25000, - "price_postapoc": 250, + "price": "250 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "fur" ], "symbol": "[", "looks_like": "leg_warmers_xl", @@ -762,8 +762,8 @@ "description": "Large, soft, snug cloth sleeves to keep your exotic anatomy warm.", "weight": "90 g", "volume": "750 ml", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "leg_warmers", @@ -796,8 +796,8 @@ "description": "A pair of long underwear that help to maintain body temperature.", "weight": "100 g", "volume": "500 ml", - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "leggings", @@ -814,8 +814,8 @@ "description": "A long underwear top that helps to maintain body temperature.", "weight": "102 g", "volume": "500 ml", - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "longshirt", @@ -840,8 +840,8 @@ "description": "A sleeveless underwear top that helps to maintain body temperature.", "weight": "80 g", "volume": "400 ml", - "price": 1200, - "price_postapoc": 100, + "price": "12 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "long_undertop", @@ -860,8 +860,8 @@ "description": "Underwear designed to be worn by women. Preserves your modesty in desperate times.", "weight": "32 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "briefs", @@ -878,8 +878,8 @@ "description": "A lightweight, form-fitting long-sleeved spandex undershirt that helps maintains body temperature.", "weight": "112 g", "volume": "250 ml", - "price": 3200, - "price_postapoc": 250, + "price": "32 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "lycra" ], "symbol": "[", "color": "dark_gray", @@ -898,8 +898,8 @@ "description": "A sturdy nylon bra to provide additional support during physical movement. Typically worn when exercising, it clings to the skin and is easy to wear.", "weight": "92 g", "volume": "500 ml", - "price": 4200, - "price_postapoc": 50, + "price": "42 USD", + "price_postapoc": "50 cent", "material": [ "lycra" ], "symbol": "[", "looks_like": "bra", @@ -934,7 +934,7 @@ "weight": "130 g", "volume": "115 ml", "price": "9 USD", - "price_postapoc": 50, + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "tshirt", @@ -975,8 +975,8 @@ "description": "A snug cloth garment which clings tightly to the legs and feet to protect them from the cold.", "weight": "114 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "leggings", @@ -993,8 +993,8 @@ "description": "Nylon sportswear that clings to your chest and maintains body temperature.", "weight": "92 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "material": [ "lycra" ], "symbol": "[", "looks_like": "longshirt", @@ -1011,8 +1011,8 @@ "description": "Nylon sportswear that clings to your upper legs, aiding muscle tone and maintaining warmth.", "weight": "82 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "material": [ "lycra" ], "symbol": "[", "looks_like": "shorts", @@ -1032,8 +1032,8 @@ "description": "A simple white undershirt. Worn beneath your regular clothes, it provides a little extra warmth.", "weight": "100 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "tshirt", @@ -1053,8 +1053,8 @@ "description": "A skin-tight spandex garment resembling a crew-necked leotard combined with leggings. Commonly used by gymnasts, dancers and equestrian vaulters, the unitard provides overall coverage with great flexibility.", "weight": "110 g", "volume": "250 ml", - "price": 3100, - "price_postapoc": 50, + "price": "31 USD", + "price_postapoc": "50 cent", "material": [ "lycra" ], "symbol": "[", "color": "dark_gray", diff --git a/data/json/items/battery.json b/data/json/items/battery.json index e3ff64d21b042..f7d0347c21025 100644 --- a/data/json/items/battery.json +++ b/data/json/items/battery.json @@ -8,8 +8,8 @@ "ascii_picture": "light_minus_battery_cell", "weight": "5 g", "volume": "1 ml", - "price": 1500, - "price_postapoc": 50, + "price": "15 USD", + "price_postapoc": "50 cent", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -28,8 +28,8 @@ "ascii_picture": "light_minus_atomic_battery_cell", "weight": "80 g", "volume": "1 ml", - "price": 15000, - "price_postapoc": 200, + "price": "150 USD", + "price_postapoc": "2 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "green", @@ -49,8 +49,8 @@ "ascii_picture": "light_minus_disposable_cell", "weight": "5 g", "volume": "1 ml", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -70,8 +70,8 @@ "ascii_picture": "light_battery_cell", "weight": "30 g", "volume": "25 ml", - "price": 3500, - "price_postapoc": 100, + "price": "35 USD", + "price_postapoc": "1 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -90,8 +90,8 @@ "ascii_picture": "light_plus_battery_cell", "weight": "45 g", "volume": "35 ml", - "price": 5000, - "price_postapoc": 150, + "price": "50 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -110,8 +110,8 @@ "ascii_picture": "light_atomic_battery_cell", "weight": "160 g", "volume": "35 ml", - "price": 50000, - "price_postapoc": 400, + "price": "500 USD", + "price_postapoc": "4 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "green", @@ -131,8 +131,8 @@ "ascii_picture": "light_disposable_cell", "weight": "45 g", "volume": "35 ml", - "price": 10000, - "price_postapoc": 200, + "price": "100 USD", + "price_postapoc": "2 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -152,7 +152,7 @@ "ascii_picture": "light_dry_cell", "weight": "20 g", "volume": "35 ml", - "price_postapoc": 100, + "price_postapoc": "1 USD", "material": [ "iron", "charcoal" ], "symbol": "=", "color": "yellow", @@ -172,8 +172,8 @@ "ascii_picture": "medium_battery_cell", "weight": "600 g", "volume": "450 ml", - "price": 10000, - "price_postapoc": 300, + "price": "100 USD", + "price_postapoc": "3 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -192,8 +192,8 @@ "ascii_picture": "medium_plus_battery_cell", "weight": "725 g", "volume": "525 ml", - "price": 12500, - "price_postapoc": 400, + "price": "125 USD", + "price_postapoc": "4 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -212,8 +212,8 @@ "ascii_picture": "medium_atomic_battery_cell", "weight": "1000 g", "volume": "525 ml", - "price": 100000, - "price_postapoc": 1000, + "price": "1 kUSD", + "price_postapoc": "10 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "green", @@ -233,8 +233,8 @@ "ascii_picture": "medium_disposable_cell", "weight": "725 g", "volume": "525 ml", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -254,7 +254,7 @@ "ascii_picture": "medium_dry_cell", "weight": "350 g", "volume": "525 ml", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "iron", "charcoal" ], "symbol": "=", "color": "yellow", @@ -274,8 +274,8 @@ "ascii_picture": "heavy_battery_cell", "weight": "1000 g", "volume": "1225 ml", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -294,8 +294,8 @@ "ascii_picture": "heavy_plus_battery_cell", "weight": "1250 g", "volume": "1500 ml", - "price": 12500, - "price_postapoc": 600, + "price": "125 USD", + "price_postapoc": "6 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -314,8 +314,8 @@ "ascii_picture": "heavy_atomic_battery_cell", "weight": "1600 g", "volume": "1500 ml", - "price": 100000, - "price_postapoc": 1500, + "price": "1 kUSD", + "price_postapoc": "15 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "green", @@ -334,8 +334,8 @@ "description": "A battery that uses a huge plutonium-244 rod to stabilize an exotic nanocompound. It was used in military mech-suits, was highly experimental, and had no civilian applications. Although it stores a stupendous amount of power, it cannot be recharged.", "weight": "64000 g", "volume": "30 L", - "price": 100000, - "price_postapoc": 5000, + "price": "1 kUSD", + "price_postapoc": "50 USD", "material": [ "superalloy", "plastic" ], "symbol": "=", "color": "red", @@ -355,8 +355,8 @@ "ascii_picture": "heavy_disposable_cell", "weight": "1250 g", "volume": "1500 ml", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -376,7 +376,7 @@ "ascii_picture": "heavy_dry_cell", "weight": "900 g", "volume": "1500 ml", - "price_postapoc": 375, + "price_postapoc": "3 USD 75 cent", "material": [ "iron", "charcoal" ], "symbol": "=", "color": "yellow", diff --git a/data/json/items/bionics.json b/data/json/items/bionics.json index 13355deca2f23..1bc0826427b9e 100644 --- a/data/json/items/bionics.json +++ b/data/json/items/bionics.json @@ -9,7 +9,7 @@ "material": [ "steel", "plastic" ], "symbol": ":", "color": "yellow", - "price_postapoc": 1000, + "price_postapoc": "10 USD", "use_action": [ "install_bionic" ], "flags": [ "CBM" ], "is_upgrade": false, @@ -28,8 +28,8 @@ "copy-from": "bionic_general", "type": "BIONIC_ITEM", "name": { "str": "abstract faulty bionic module" }, - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "500 g", "description": "A CBM that is broken beyond repair; you can't do anything with it." }, @@ -40,8 +40,8 @@ "name": { "str": "Adrenaline Pump CBM" }, "looks_like": "bio_int_enhancer", "description": "A stimulator system that is implanted alongside the adrenal glands, allowing the user to trigger their body's adrenaline response at the cost of some bionic power.", - "price": 4000, - "price_postapoc": 5000, + "price": "40 USD", + "price_postapoc": "50 USD", "weight": "250 g", "difficulty": 6 }, @@ -52,8 +52,8 @@ "name": { "str": "Active Defense System CBM" }, "looks_like": "bio_int_enhancer", "description": "A bionic that projects a thin forcefield around the user's body. Everything loses velocity when penetrating this field, which results in a reduced amount of dealt damage at the cost of user's bionic energy. Bullets and stabbing attacks will lose more velocity than cutting attacks, and those in turn more than bashing attacks.", - "price": 950000, - "price_postapoc": 15000, + "price": "9 kUSD 500 USD", + "price_postapoc": "150 USD", "weight": "1000 g", "difficulty": 7 }, @@ -64,8 +64,8 @@ "name": { "str": "Alarm System CBM" }, "looks_like": "bio_int_enhancer", "description": "A motion-detecting alarm system will notice almost all movement within a fifteen-foot radius, and will silently alert the user. This is very useful during sleep, or if the user suspects a cloaked pursuer.", - "price": 25000, - "price_postapoc": 2000, + "price": "250 USD", + "price_postapoc": "20 USD", "weight": "500 g", "difficulty": 1 }, @@ -76,7 +76,7 @@ "name": { "str": "Integrated AR System CBM" }, "looks_like": "bio_int_enhancer", "description": "This bionic module integrates augmented reality interface into user's eyes.", - "price": 500000, + "price": "5 kUSD", "weight": "100 g", "difficulty": 6 }, @@ -86,8 +86,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Arms Alloy Plating CBM" }, "description": "An advanced protective mesh that weaves into the user's flesh. Provides passive protection at the cost of mild encumbrance, and can be used in conjunction with bionic martial arts.", - "price": 350000, - "price_postapoc": 5000, + "price": "3 kUSD 500 USD", + "price_postapoc": "50 USD", "difficulty": 6 }, { @@ -97,8 +97,8 @@ "name": { "str": "Protective Lenses CBM" }, "looks_like": "bio_int_enhancer", "description": "A bionic package that seals the user's eye sockets with highly-protective mirrored lenses and re-routes their tear ducts to their mouth. When the user cries, they must spit out or swallow their tears.", - "price": 550000, - "price_postapoc": 3500, + "price": "5 kUSD 500 USD", + "price_postapoc": "35 USD", "weight": "500 g", "difficulty": 5 }, @@ -109,8 +109,8 @@ "name": { "str": "Head Alloy Plating CBM" }, "looks_like": "bio_int_enhancer", "description": "An advanced protective mesh that weaves into the user's flesh, protecting both their head and jaw regions at the cost of mild encumbrance.", - "price": 350000, - "price_postapoc": 5000, + "price": "3 kUSD 500 USD", + "price_postapoc": "50 USD", "weight": "1000 g", "difficulty": 6 }, @@ -121,8 +121,8 @@ "name": { "str": "Legs Alloy Plating CBM" }, "looks_like": "bio_int_enhancer", "description": "An advanced protective mesh that weaves into the user's flesh. Provides passive protection at the cost of mild encumbrance, and can be used in conjunction with bionic martial arts.", - "price": 350000, - "price_postapoc": 5000, + "price": "3 kUSD 500 USD", + "price_postapoc": "50 USD", "difficulty": 6 }, { @@ -132,8 +132,8 @@ "name": { "str": "Torso Alloy Plating CBM" }, "looks_like": "bio_int_enhancer", "description": "An advanced protective mesh that weaves into the user's flesh, protecting it from physical trauma at the cost of mild encumbrance.", - "price": 350000, - "price_postapoc": 6000, + "price": "3 kUSD 500 USD", + "price_postapoc": "60 USD", "weight": "3000 g", "difficulty": 6 }, @@ -144,8 +144,8 @@ "name": { "str": "Battery System CBM" }, "looks_like": "bio_int_enhancer", "description": "A battery draining attachment to make use of the energy contained in normal, everyday batteries.", - "price": 80000, - "price_postapoc": 2000, + "price": "800 USD", + "price_postapoc": "20 USD", "weight": "250 g", "difficulty": 4 }, @@ -156,8 +156,8 @@ "name": { "str": "Monomolecular Blade CBM" }, "looks_like": "bio_int_enhancer", "description": "A deadly foot-long blade made of advanced material that is installed inside the forearm, capable of being extended through the back of the user's wrist at the cost of a small amount of power. Though exceptionally sharp, it will prevent the user from holding anything else while extended.", - "price": 8000, - "price_postapoc": 3500, + "price": "80 USD", + "price_postapoc": "35 USD", "weight": "250 g", "difficulty": 8 }, @@ -168,8 +168,8 @@ "name": { "str": "Shotgun Arm CBM" }, "looks_like": "bio_int_enhancer", "description": "A concealed, single shot 12 gauge shotgun that is implanted inside the left forearm. Perfect in a pinch.", - "price": 220000, - "price_postapoc": 2000, + "price": "2 kUSD 200 USD", + "price_postapoc": "20 USD", "difficulty": 3 }, { @@ -179,8 +179,8 @@ "name": { "str": "Blood Analysis CBM" }, "looks_like": "bio_int_enhancer", "description": "Small sensors that are implanted in the user's heart, allowing them to analyze their blood. This will detect many illnesses, drugs, and other conditions.", - "price": 320000, - "price_postapoc": 1200, + "price": "3 kUSD 200 USD", + "price_postapoc": "12 USD", "weight": "150 g", "difficulty": 2 }, @@ -191,8 +191,8 @@ "name": { "str": "Blood Filter CBM" }, "looks_like": "bio_int_enhancer", "description": "A filtration system that is installed in the heart and can actively filter out chemical impurities, primarily drugs, with limited impact on viruses. Note that it is not a targeted filter; ALL drugs in the system will be affected.", - "price": 350000, - "price_postapoc": 2500, + "price": "3 kUSD 500 USD", + "price_postapoc": "25 USD", "weight": "200 g", "difficulty": 3 }, @@ -203,8 +203,8 @@ "name": { "str": "Cable Charger System CBM" }, "looks_like": "bio_int_enhancer", "description": "A complex port that is mounted above the hip. While active, it will recharge bionic power when connected to a battery via jumper cable.", - "price": 80000, - "price_postapoc": 2500, + "price": "800 USD", + "price_postapoc": "25 USD", "weight": "250 g", "difficulty": 4 }, @@ -215,8 +215,8 @@ "name": { "str": "Subdermal Carbon Filament CBM" }, "looks_like": "bio_int_enhancer", "description": "Thin armor made of carbon nanotubes, implanted just beneath the skin. It reduces cutting, stabbing and ballistic damage.", - "price": 750000, - "price_postapoc": 5000, + "price": "7 kUSD 500 USD", + "price_postapoc": "50 USD", "difficulty": 9 }, { @@ -226,7 +226,7 @@ "name": { "str": "Chain Lightning CBM" }, "looks_like": "bio_int_enhancer", "description": "A chain lightning generator that emits a blast of lightning at a target, leaving a trail of lightning in its wake and jumping to additional targets within 4 tiles of the previous target.", - "price": 220000, + "price": "2 kUSD 200 USD", "difficulty": 4 }, { @@ -236,8 +236,8 @@ "name": { "str": "Bionic Claws CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of vicious, retractable claws that are implanted inside the user's fingers. They do considerable cutting damage, but prevent the user from holding anything else while extended.", - "price": 550000, - "price_postapoc": 3000, + "price": "5 kUSD 500 USD", + "price_postapoc": "30 USD", "weight": "500 g", "difficulty": 5 }, @@ -248,8 +248,8 @@ "name": { "str": "Internal Climate Control CBM" }, "looks_like": "bio_int_enhancer", "description": "A network of thermal piping which eases the effects of high and low ambient temperatures once activated.", - "price": 350000, - "price_postapoc": 1500, + "price": "3 kUSD 500 USD", + "price_postapoc": "15 USD", "difficulty": 3 }, { @@ -259,8 +259,8 @@ "name": { "str": "Cloaking System CBM" }, "looks_like": "bio_int_enhancer", "description": "A high-power system that uses a set of cameras and LEDs to make the user blend into their surroundings, rendering them fully invisible to eyes and optical sensors. However, this doesn't prevent detection from other means such as infrared, sonar, etc.", - "price": 850000, - "price_postapoc": 13000, + "price": "8 kUSD 500 USD", + "price_postapoc": "130 USD", "difficulty": 5 }, { @@ -270,8 +270,8 @@ "name": { "str": "Close Quarters Battle CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of bionic processors and databanks, loaded with martial arts combat programs. While active, the CQB module will improve the user's hand-to-hand combat skills, but prevents them from improving them through combat experience.", - "price": 220000, - "price_postapoc": 3000, + "price": "2 kUSD 200 USD", + "price_postapoc": "30 USD", "weight": "250 g", "difficulty": 8 }, @@ -282,8 +282,8 @@ "name": { "str": "Wired Reflexes CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of bionic nerve stimulators that greatly enhance reaction times, granting a +2 bonus to dexterity.", - "price": 800000, - "price_postapoc": 3000, + "price": "8 kUSD", + "price_postapoc": "30 USD", "weight": "500 g", "difficulty": 11 }, @@ -294,8 +294,8 @@ "name": { "str": "Expanded Digestive System CBM" }, "looks_like": "bio_int_enhancer", "description": "This module contains three synthetic stomachs and industrial-grade intestines which replace the user's corresponding organs. Not only will these extract much more nutrition from food, but also increase the user's resistance to foodborne illness, and occasionally allow the digestion of rotten food. Installing this CBM will correct any abnormalities in the user's digestive system.", - "price": 550000, - "price_postapoc": 9000, + "price": "5 kUSD 500 USD", + "price_postapoc": "90 USD", "difficulty": 6 }, { @@ -305,8 +305,8 @@ "name": { "str": "Enhanced Hearing CBM" }, "looks_like": "bio_int_enhancer", "description": "While this bionic is active, the user's hearing will be drastically improved, allowing them to hear ten times better than the average person. Additionally, high-intensity sounds will be automatically dampened before they can damage the user's hearing.", - "price": 500000, - "price_postapoc": 2500, + "price": "5 kUSD", + "price_postapoc": "25 USD", "weight": "500 g", "difficulty": 6 }, @@ -317,8 +317,8 @@ "name": { "str": "Subaquatic Navigation System CBM" }, "looks_like": "bio_int_enhancer", "description": "A tiny device implanted in the inner ear. When active, it will periodically generate ultrasonic pulses which aid in navigation, provided the user is underwater and able to hear.", - "price": 250000, - "price_postapoc": 1250, + "price": "2 kUSD 500 USD", + "price_postapoc": "12 USD 50 cent", "weight": "50 g", "difficulty": 4 }, @@ -329,8 +329,8 @@ "name": { "str": "Directional EMP CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of small parabolic EMP field generators that are mounted in the palm of the user's right hand. They can be used to instantly fire a wide, but short-ranged blast which will disable electronics and robots.", - "price": 720000, - "price_postapoc": 1200, + "price": "7 kUSD 200 USD", + "price_postapoc": "12 USD", "difficulty": 5 }, { @@ -340,8 +340,8 @@ "name": { "str": "EMP Projector CBM" }, "looks_like": "bio_int_enhancer", "description": "A ranged EMP generator system that is implanted in the user's right arm and hand. The system fires precise, single-target pulses that require time to aim. Extremely effective against electronic targets, but mostly useless otherwise.", - "price": 220000, - "price_postapoc": 1500, + "price": "2 kUSD 200 USD", + "price_postapoc": "15 USD", "difficulty": 5 }, { @@ -351,8 +351,8 @@ "name": { "str": "Ethanol Burner CBM" }, "looks_like": "bio_int_enhancer", "description": "A reactor that burns alcohol as fuel in an extremely efficient reaction. It can store up to 500 mL and accepts ethanol, methanol and denatured alcohol as fuel.", - "price": 120000, - "price_postapoc": 2000, + "price": "1 kUSD 200 USD", + "price_postapoc": "20 USD", "difficulty": 4 }, { @@ -362,8 +362,8 @@ "name": { "str": "Aero-Evaporator CBM" }, "looks_like": "bio_int_enhancer", "description": "This unit draws moisture from the surrounding air, which slowly trickles directly into the user's blood stream. It may fail in very dry environments.", - "price": 550000, - "price_postapoc": 2000, + "price": "5 kUSD 500 USD", + "price_postapoc": "20 USD", "difficulty": 4 }, { @@ -373,8 +373,8 @@ "name": { "str": "Diamond Cornea CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of diamond corneas which greatly enhance the user's vision, granting a +2 bonus to perception.", - "price": 800000, - "price_postapoc": 3000, + "price": "8 kUSD", + "price_postapoc": "30 USD", "weight": "100 g", "difficulty": 11 }, @@ -385,8 +385,8 @@ "name": { "str": "Telescopic Eyes CBM" }, "looks_like": "bio_int_enhancer", "description": "An array of high-powered, auto-focusing lenses that replaces much of the material in the user's inner eye. This fixes any vision problems and allows for an increased vision range akin to binoculars.", - "price": 500000, - "price_postapoc": 2000, + "price": "5 kUSD", + "price_postapoc": "20 USD", "weight": "100 g", "difficulty": 5 }, @@ -397,8 +397,8 @@ "name": { "str": "Facial Distortion CBM" }, "looks_like": "bio_int_enhancer", "description": "Through controlled application of electrochemical impulses, this bionic module lets the user alter their facial structure so as to subtly affect the reactions of others. This grants a bonus to all social interactions.", - "price": 850000, - "price_postapoc": 1000, + "price": "8 kUSD 500 USD", + "price_postapoc": "10 USD", "weight": "200 g", "difficulty": 5 }, @@ -409,8 +409,8 @@ "name": { "str": "Dielectric Capacitance System CBM" }, "looks_like": "bio_int_enhancer", "description": "A network of miniature piezoelectric capacitors, implanted throughout the user's body to protect from external electrical discharge.", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "weight": "500 g", "difficulty": 5 }, @@ -421,8 +421,8 @@ "name": { "str": "Fingerhack CBM" }, "looks_like": "bio_int_enhancer", "description": "A miniature electrohack, surgically embedded in a finger of the user's right hand. This is an all-purpose hacking unit used to override control panels and the like, but not computers. Computer proficiency is important, and a failed use may cause damage.", - "price": 350000, - "price_postapoc": 1000, + "price": "3 kUSD 500 USD", + "price_postapoc": "10 USD", "weight": "100 g", "difficulty": 2 }, @@ -433,8 +433,8 @@ "name": { "str": "Calorie Tracker CBM" }, "looks_like": "bio_int_enhancer", "description": "A small medical implant that passively tracks your calorie expenditure and consumption.", - "price": 35000, - "price_postapoc": 500, + "price": "350 USD", + "price_postapoc": "5 USD", "weight": "10 g", "difficulty": 3 }, @@ -445,8 +445,8 @@ "name": { "str": "Flashbang Generator CBM" }, "looks_like": "bio_int_enhancer", "description": "A combination of LEDs and speakers that create a flash and sound comparable to a flashbang grenade, deafening and blinding nearby enemies.", - "price": 720000, - "price_postapoc": 1500, + "price": "7 kUSD 200 USD", + "price_postapoc": "15 USD", "weight": "500 g", "difficulty": 5 }, @@ -457,8 +457,8 @@ "name": { "str": "Cranial Flashlight CBM" }, "looks_like": "bio_int_enhancer", "description": "A small, but powerful LED flashlight that is mounted between the user's eyes.", - "price": 20000, - "price_postapoc": 1000, + "price": "200 USD", + "price_postapoc": "10 USD", "weight": "250 g", "difficulty": 2 }, @@ -469,8 +469,8 @@ "name": { "str": "LED Tattoo CBM" }, "looks_like": "bio_int_enhancer", "description": "An LED display implanted beneath the epidermis that can display patterns or pictures through the skin. When active it glows dimly, providing a very small amount of light.", - "price": 20000, - "price_postapoc": 250, + "price": "200 USD", + "price_postapoc": "2 USD 50 cent", "weight": "20 g", "difficulty": 1 }, @@ -481,8 +481,8 @@ "name": { "str": "Integrated Dosimeter CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of small radiation sensors that are implanted throughout the body, allowing the user to analyze their level of absorbed radiation. They will also alert the user whenever exposed to environmental radiation.", - "price": 350000, - "price_postapoc": 3000, + "price": "3 kUSD 500 USD", + "price_postapoc": "30 USD", "weight": "150 g", "difficulty": 3 }, @@ -493,8 +493,8 @@ "name": { "str": "Respirator CBM" }, "looks_like": "bio_int_enhancer", "description": "A complex respiration augmentation system that increases the user's maximal oxygen uptake and allows for underwater breathing akin to gills. Will automatically activate if the user is drowning.", - "price": 450000, - "price_postapoc": 1500, + "price": "4 kUSD 500 USD", + "price_postapoc": "15 USD", "weight": "700 g", "difficulty": 6 }, @@ -505,8 +505,8 @@ "name": { "str": "Terranian Sonar CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of precision sonar equipment, implanted in the user's feet to allow the detection of below-ground movement, buried traps, and unstable terrain.", - "price": 450000, - "price_postapoc": 2000, + "price": "4 kUSD 500 USD", + "price_postapoc": "20 USD", "weight": "500 g", "difficulty": 5 }, @@ -517,8 +517,8 @@ "name": { "str": "Heat Drain CBM" }, "looks_like": "bio_int_enhancer", "description": "While fighting unarmed against a warm-blooded opponent, there is a chance that a successful hit will drain body heat, inflicting a small amount of extra damage and recharging the user's bionic power reserves slightly.", - "price": 550000, - "price_postapoc": 1000, + "price": "5 kUSD 500 USD", + "price_postapoc": "10 USD", "weight": "500 g", "difficulty": 5 }, @@ -529,8 +529,8 @@ "name": { "str": "Thermal Dissipation CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of powerful heatsinks and supermaterials woven into the user's flesh. While powered, this system will prevent external heat damage up to 2000 degrees Fahrenheit. Note that this does not affect the internal body temperature.", - "price": 350000, - "price_postapoc": 2000, + "price": "3 kUSD 500 USD", + "price_postapoc": "20 USD", "difficulty": 3 }, { @@ -540,8 +540,8 @@ "name": { "str": "Hydraulic Muscles CBM" }, "looks_like": "bio_int_enhancer", "description": "A hydraulic muscle support system that when active, increases the user's strength by 20.", - "price": 400000, - "price_postapoc": 6000, + "price": "4 kUSD", + "price_postapoc": "60 USD", "difficulty": 6 }, { @@ -551,8 +551,8 @@ "name": { "str": "Infrared Vision CBM" }, "looks_like": "bio_int_enhancer", "description": "A bionic module that extends the user's range of vision into the infrared, allowing them to see warm-blooded creatures in the dark and through smoke.", - "price": 450000, - "price_postapoc": 6000, + "price": "4 kUSD 500 USD", + "price_postapoc": "60 USD", "weight": "500 g", "difficulty": 6 }, @@ -562,8 +562,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Cerebral Booster CBM" }, "description": "A set of bionic coprocessors that are implanted in the user's brain, granting a +2 bonus to intelligence. It takes over and replaces numerous cognitive functions once installed and cannot be removed.", - "price": 800000, - "price_postapoc": 3000, + "price": "8 kUSD", + "price_postapoc": "30 USD", "weight": "100 g", "difficulty": 11 }, @@ -574,8 +574,8 @@ "name": { "str": "Finger-Mounted Laser CBM" }, "looks_like": "bio_int_enhancer", "description": "A small, high-powered laser that is embedded in the user's fingertip. This long-range weapon is not incredibly damaging, but is very accurate, and has the potential to start fires.", - "price": 720000, - "price_postapoc": 1500, + "price": "7 kUSD 200 USD", + "price_postapoc": "15 USD", "weight": "500 g", "difficulty": 5 }, @@ -586,8 +586,8 @@ "name": { "str": "Leukocyte Breeder System CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of bionic stimulators which augment the user's haematopoiesis system, allowing them to accelerate white blood cell production using bionic power. It is designed for continuous use and may cause unpleasant side effects when turned off.", - "price": 6000, - "price_postapoc": 2000, + "price": "60 USD", + "price_postapoc": "20 USD", "weight": "600 g", "difficulty": 7 }, @@ -598,8 +598,8 @@ "name": { "str": "Finger Lighter CBM" }, "looks_like": "bio_int_enhancer", "description": "A pair of powerful fire starters which extend from the tip of both hands' index fingers.", - "price": 130000, - "price_postapoc": 400, + "price": "1 kUSD 300 USD", + "price_postapoc": "4 USD", "weight": "500 g", "difficulty": 4 }, @@ -610,8 +610,8 @@ "name": { "str": "Fingerpick CBM" }, "looks_like": "bio_int_enhancer", "description": "An electronic lockpick that is embedded in a fingertip. This automatic system will quickly unlock all but the most advanced key locks without any skill required on the part of the user.", - "price": 350000, - "price_postapoc": 1500, + "price": "3 kUSD 500 USD", + "price_postapoc": "15 USD", "weight": "200 g", "difficulty": 2 }, @@ -622,8 +622,8 @@ "name": { "str": "Electromagnetic Unit CBM" }, "looks_like": "bio_int_enhancer", "description": "A powerful electromagnet that is implanted into the user's right hand, allowing them to indiscriminately pull all nearby magnetic objects towards them. Unlucky bystanders might be injured or killed by flying objects.", - "price": 200000, - "price_postapoc": 400, + "price": "2 kUSD", + "price_postapoc": "4 USD", "weight": "700 g", "difficulty": 2 }, @@ -634,8 +634,8 @@ "name": { "str": "Nictitating Membrane CBM" }, "looks_like": "bio_int_enhancer", "description": "Thin membranes that cover the user's eyes while underwater, negating any vision penalties.", - "price": 450000, - "price_postapoc": 300, + "price": "4 kUSD 500 USD", + "price_postapoc": "3 USD", "weight": "1 g", "difficulty": 6 }, @@ -646,8 +646,8 @@ "name": { "str": "Enhanced Memory Banks CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of highly-advanced quantum storage drives used to enhance memory. While active, they increase the rate that the user learns skills. Once it is installed, it will partially replace the functionality of the hippocampus, and thus cannot be removed without risk of severe permanent amnesia and difficulty forming new memories.", - "price": 1000000, - "price_postapoc": 500, + "price": "10 kUSD", + "price_postapoc": "5 USD", "weight": "100 g", "difficulty": 9 }, @@ -658,8 +658,8 @@ "name": { "str": "Metabolic Interchange CBM" }, "looks_like": "bio_int_enhancer", "description": "This module interconnects the user's digestive system and power supply, letting them replenish bionic energy by burning calories.", - "price": 70000, - "price_postapoc": 2000, + "price": "700 USD", + "price_postapoc": "20 USD", "weight": "700 g", "difficulty": 4 }, @@ -670,8 +670,8 @@ "name": { "str": "Weather Reader CBM" }, "looks_like": "bio_int_enhancer", "description": "A multitude of scientific instruments and sensors collects environmental data. The data are compiled and presented as a simple readout of the current weather. It also passively tells the user their external temperature.", - "price": 350000, - "price_postapoc": 200, + "price": "3 kUSD 500 USD", + "price_postapoc": "2 USD", "weight": "700 g", "difficulty": 3 }, @@ -682,8 +682,8 @@ "name": { "str": "Repair Nanobots CBM" }, "looks_like": "bio_int_enhancer", "description": "A fleet of tiny, dormant robots. While activated, they will flit about the user's body, repairing damage and stopping bleeding at the cost of power.", - "price": 950000, - "price_postapoc": 10000, + "price": "9 kUSD 500 USD", + "price_postapoc": "100 USD", "weight": "200 g", "difficulty": 6 }, @@ -694,8 +694,8 @@ "name": { "str": "Artificial Night Generator CBM" }, "looks_like": "bio_int_enhancer", "description": "When active, this bionic eliminates all light within a 15-tile radius of the user through destructive interference.", - "price": 850000, - "price_postapoc": 8000, + "price": "8 kUSD 500 USD", + "price_postapoc": "80 USD", "difficulty": 5 }, { @@ -705,8 +705,8 @@ "name": { "str": "Implanted Night Vision CBM" }, "looks_like": "bio_int_enhancer", "description": "This bionic module modifies the user's eyes to amplify existing light, allowing them to see in the dark.", - "price": 900000, - "price_postapoc": 4000, + "price": "9 kUSD", + "price_postapoc": "40 USD", "weight": "100 g", "difficulty": 11 }, @@ -717,8 +717,8 @@ "name": { "str": "Offensive Defense System CBM" }, "looks_like": "bio_int_enhancer", "description": "A thin forcefield gets projected around the user's body, continually draining power. This field does not deflect attacks, but rather delivers a strong shock, damaging unarmed attackers and those with a conductive weapon.", - "price": 950000, - "price_postapoc": 4500, + "price": "9 kUSD 500 USD", + "price_postapoc": "45 USD", "weight": "1000 g", "difficulty": 7 }, @@ -729,8 +729,8 @@ "name": { "str": "Sensory Dulling CBM" }, "looks_like": "bio_int_enhancer", "description": "This module lets the user's nervous system inhibit pain signals, allowing them to dull their senses at will. However, the use of this system may cause delayed reaction times and drowsiness.", - "price": 200000, - "price_postapoc": 3500, + "price": "2 kUSD", + "price_postapoc": "35 USD", "weight": "300 g", "difficulty": 4 }, @@ -741,8 +741,8 @@ "name": { "str": "Power Storage CBM" }, "looks_like": "bio_int_enhancer", "description": "A Compact Bionics Module that upgrades the user's power capacity by 100 units. Having at least one of these is a prerequisite to using powered bionics. The user will also need a power supply, found in various CBMs.", - "price": 380000, - "price_postapoc": 500, + "price": "3 kUSD 800 USD", + "price_postapoc": "5 USD", "weight": "70 g", "difficulty": 1 }, @@ -753,8 +753,8 @@ "name": { "str": "Power Storage Mk. II CBM" }, "looks_like": "bio_int_enhancer", "description": "A Compact Bionics Module developed at DoubleTech Industries as a replacement for the highly successful Power Storage CBM. Increases the user's power capacity by 250 units.", - "price": 1000000, - "price_postapoc": 750, + "price": "10 kUSD", + "price_postapoc": "7 USD 50 cent", "weight": "50 g", "difficulty": 1 }, @@ -765,8 +765,8 @@ "name": { "str": "Probability Travel CBM" }, "looks_like": "bio_int_enhancer", "description": "Increases the body's wavelength, allowing the user to quantum tunnel through walls, reappearing on the other side. Power drain in standby is minimal, but each tile tunneled through costs 250 bionic power.", - "price": 1400000, - "price_postapoc": 4000, + "price": "14 kUSD", + "price_postapoc": "40 USD", "difficulty": 11 }, { @@ -776,8 +776,8 @@ "name": { "str": "Air Filtration System CBM" }, "looks_like": "bio_int_enhancer", "description": "An advanced filtration system that is implanted in the user's trachea. If toxins or airborne diseases find their way into the windpipe, the filter will attempt to remove them.", - "price": 450000, - "price_postapoc": 6000, + "price": "4 kUSD 500 USD", + "price_postapoc": "60 USD", "weight": "100 g", "difficulty": 4 }, @@ -788,8 +788,8 @@ "name": { "str": "Infolink CBM" }, "looks_like": "bio_int_enhancer", "description": "A wireless communications device that integrates with the ear canal to enable hands-free communication over radio waves.", - "price": 50000, - "price_postapoc": 1000, + "price": "500 USD", + "price_postapoc": "10 USD", "weight": "100 g", "difficulty": 4 }, @@ -800,8 +800,8 @@ "name": { "str": "Radiation Scrubber System CBM" }, "looks_like": "bio_int_enhancer", "description": "A system of advanced piezomechanical blood filters that are implanted throughout the body, allowing the user to purge themself of absorbed radiation at the cost of some bionic power.", - "price": 450000, - "price_postapoc": 7500, + "price": "4 kUSD 500 USD", + "price_postapoc": "75 USD", "weight": "100 g", "difficulty": 4 }, @@ -812,8 +812,8 @@ "name": { "str": "Fingertip Razors CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of ten double-edged, four centimeter long razor-sharp claws that are implanted underneath the fingernails. They deal a small amount of unarmed slashing damage whenever the user's fingertips are uncovered.", - "price": 450000, - "price_postapoc": 500, + "price": "4 kUSD 500 USD", + "price_postapoc": "5 USD", "weight": "5 g", "difficulty": 4 }, @@ -824,8 +824,8 @@ "name": { "str": "Gasoline Fuel Cell CBM" }, "looks_like": "bio_int_enhancer", "description": "A small gasoline fuel cell able to convert gasoline to bionic power. It's connected to a diffuse network of bio-plastic bladders able to hold up to 500 mL of gasoline.", - "price": 450000, - "price_postapoc": 2000, + "price": "4 kUSD 500 USD", + "price_postapoc": "20 USD", "weight": "600 g", "difficulty": 7 }, @@ -836,8 +836,8 @@ "name": { "str": "Recycler Unit CBM" }, "looks_like": "bio_int_enhancer", "description": "A series of filters and processors that is implanted in the user's digestive system, allowing them to reclaim waste liquid and, to a lesser degree, nutrients. The net effect is a greatly reduced need to eat and drink.", - "price": 850000, - "price_postapoc": 5000, + "price": "8 kUSD 500 USD", + "price_postapoc": "50 USD", "weight": "1500 g", "difficulty": 6 }, @@ -848,8 +848,8 @@ "name": { "str": "Remote Controller CBM" }, "looks_like": "bio_int_enhancer", "description": "A small module that connects to the user's brain and allows them to interface with nearby devices with wireless capabilities.", - "price": 600000, - "price_postapoc": 400, + "price": "6 kUSD", + "price_postapoc": "4 USD", "weight": "250 g", "difficulty": 6 }, @@ -860,8 +860,8 @@ "name": { "str": "Sonic Resonator CBM" }, "looks_like": "bio_int_enhancer", "description": "A bionic module that allows the user's entire body to resonate at very high power, creating a short-range shockwave. While it will not do much damage to creatures, solid objects such as walls and doors will be damaged.", - "price": 1200000, - "price_postapoc": 500, + "price": "12 kUSD", + "price_postapoc": "5 USD", "difficulty": 11 }, { @@ -871,8 +871,8 @@ "name": { "str": "Olfactory Mask CBM" }, "looks_like": "bio_int_enhancer", "description": "While this system is powered, the user's body will produce very little odor, making it nearly impossible for creatures to track them by scent.", - "price": 850000, - "price_postapoc": 2000, + "price": "8 kUSD 500 USD", + "price_postapoc": "20 USD", "weight": "1000 g", "difficulty": 5 }, @@ -883,8 +883,8 @@ "name": { "str": "Electroshock Unit CBM" }, "looks_like": "bio_int_enhancer", "description": "While fighting unarmed, or with a weapon that conducts electricity, there is a chance that a successful hit will shock the user's opponent, inflicting extra damage and disabling them temporarily at the cost of some energy.", - "price": 550000, - "price_postapoc": 500, + "price": "5 kUSD 500 USD", + "price_postapoc": "5 USD", "weight": "1000 g", "difficulty": 5 }, @@ -895,8 +895,8 @@ "name": { "str": "Shockwave Generator CBM" }, "looks_like": "bio_int_enhancer", "description": "A bionic module that generates a powerful shockwave, knocking back all nearby creatures. Targets are stunned briefly, take damage and additional stun upon impact with impassable terrain, and knock back any creatures they collide with.", - "price": 550000, - "price_postapoc": 2500, + "price": "5 kUSD 500 USD", + "price_postapoc": "25 USD", "weight": "1000 g", "difficulty": 5 }, @@ -907,8 +907,8 @@ "name": { "str": "Synaptic Accelerator CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of bionic stimulators that enhance the user's nervous system, granting a 10% boost to speed.", - "price": 10000, - "price_postapoc": 2000, + "price": "100 USD", + "price_postapoc": "20 USD", "weight": "400 g", "difficulty": 12 }, @@ -919,8 +919,8 @@ "name": { "str": "Muscle Augmentation CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of myomer fibers that enhance the user's muscular system, granting a +2 bonus to strength.", - "price": 800000, - "price_postapoc": 3000, + "price": "8 kUSD", + "price_postapoc": "30 USD", "weight": "1500 g", "difficulty": 11 }, @@ -931,8 +931,8 @@ "name": { "str": "Autonomous Surgical Scalpels CBM" }, "looks_like": "bio_int_enhancer", "description": "A system of surgical-grade scalpels that is implanted in the user's fingers. They allow for automated precise cuts and can be used as a high-quality butchering tool.", - "price": 220000, - "price_postapoc": 1500, + "price": "2 kUSD 200 USD", + "price_postapoc": "15 USD", "weight": "20 g", "difficulty": 4 }, @@ -943,8 +943,8 @@ "name": { "str": "Anti-Glare Compensators CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of quick-reacting transition lenses that are installed over the user's eyes. They negate glare penalties, partially protect from bright flashes, and protect the eyes when welding.", - "price": 450000, - "price_postapoc": 500, + "price": "4 kUSD 500 USD", + "price_postapoc": "5 USD", "weight": "1 g", "difficulty": 4 }, @@ -955,8 +955,8 @@ "name": { "str": "Synthetic Lungs CBM" }, "looks_like": "bio_int_enhancer", "description": "Highly efficient synthetic lungs which replace the user's own. After installation the user's cardio fitness will be greatly increased and will not need regular exercise to maintain but the user will need continuous power to remain breathing. Further, they will weaken the user's immune system somewhat.", - "price": 800000, - "price_postapoc": 8000, + "price": "8 kUSD", + "price_postapoc": "80 USD", "difficulty": 7, "weight": "800 g" }, @@ -967,8 +967,8 @@ "name": { "str": "Targeting System CBM" }, "looks_like": "bio_int_enhancer", "description": "A bionic module that contains rangefinders and synchronizes the movement of the user's eyes with their arms, to a degree. Shots they fire will be much more accurate, particularly at long ranges.", - "price": 650000, - "price_postapoc": 5000, + "price": "6 kUSD 500 USD", + "price_postapoc": "50 USD", "weight": "250 g", "difficulty": 5 }, @@ -979,8 +979,8 @@ "name": { "str": "Super Stun Gun CBM" }, "looks_like": "bio_int_enhancer", "description": "A bionic stun gun which implants into the hand. It is highly powerful, able to easily cause electrical burns and cardiac arrest in targets. The electricity it generates arcs through the air over short distances, making it nearly impossible to miss, but it still requires the user to be nearly adjacent to their target.", - "price": 250000, - "price_postapoc": 2000, + "price": "2 kUSD 500 USD", + "price_postapoc": "20 USD", "weight": "100 g", "difficulty": 3 }, @@ -991,8 +991,8 @@ "name": { "str": "Teleportation Unit CBM" }, "looks_like": "bio_int_enhancer", "description": "A highly experimental unit that folds space over short distances, instantly transporting the user's body up to 25 feet in a random direction at the cost of much power. Note that prolonged or frequent use may have dangerous side effects.", - "price": 700000, - "price_postapoc": 10000, + "price": "7 kUSD", + "price_postapoc": "100 USD", "difficulty": 7 }, { @@ -1002,8 +1002,8 @@ "name": { "str": "Time Dilation CBM" }, "looks_like": "bio_int_enhancer", "description": "At the cost of all stored bionic power, the user may increase their body speed and reactions dramatically, essentially freezing time. Violent or rapid movements may cause damage due to friction.", - "price": 1400000, - "price_postapoc": 15000, + "price": "14 kUSD", + "price_postapoc": "150 USD", "difficulty": 11 }, { @@ -1013,8 +1013,8 @@ "name": { "str": "Integrated Multitool CBM" }, "looks_like": "bio_int_enhancer", "description": "A surgically-implanted set of compact tools and a welder which runs off the user's power banks. Includes screwdriving heads, a multi-purpose knife, a low-power impact wrench and a nail prying tool.", - "price": 800000, - "price_postapoc": 5000, + "price": "8 kUSD", + "price_postapoc": "50 USD", "difficulty": 6 }, { @@ -1024,8 +1024,8 @@ "name": { "str": "Joint Torsion Ratchet CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of torsion ratchets that replace the user's joints to slowly generate power when they move. These can be toggled to generate more power, but movement will require more effort.", - "price": 380000, - "price_postapoc": 2000, + "price": "3 kUSD 800 USD", + "price_postapoc": "20 USD", "weight": "1000 g", "difficulty": 4 }, @@ -1036,8 +1036,8 @@ "name": { "str": "Joint Servo CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of servomotors installed on the leg joints to provide power-assisted movement. They are optimized for running, but walking also requires less effort while this bionic is active. However, when it's offline it will hamper the user's movement.", - "price": 450000, - "price_postapoc": 1000, + "price": "4 kUSD 500 USD", + "price_postapoc": "10 USD", "weight": "1000 g", "difficulty": 4 }, @@ -1048,8 +1048,8 @@ "name": { "str": "Uncanny Dodge CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of bionic processors that augment the user's nervous system, allowing them to dodge attacks beyond normal human capability.", - "price": 950000, - "price_postapoc": 15000, + "price": "9 kUSD 500 USD", + "price_postapoc": "150 USD", "weight": "1000 g", "difficulty": 11 }, @@ -1060,8 +1060,8 @@ "name": { "str": "Unified Power System CBM" }, "looks_like": "bio_int_enhancer", "description": "A Unified Power System that is wired into the user's bionic power banks. Objects that run on a UPS can now directly draw power from the bionic power supply.", - "price": 25000, - "price_postapoc": 3500, + "price": "250 USD", + "price_postapoc": "35 USD", "weight": "700 g", "difficulty": 3 }, @@ -1072,8 +1072,8 @@ "name": { "str": "Internal Chronometer CBM" }, "looks_like": "bio_int_enhancer", "description": "A bionic module containing an atomic clock, complete with a silent alarm clock function.", - "price": 1000, - "price_postapoc": 200, + "price": "10 USD", + "price_postapoc": "2 USD", "weight": "10 g", "difficulty": 1 }, @@ -1084,8 +1084,8 @@ "name": { "str": "Water Extraction Unit CBM" }, "looks_like": "bio_int_enhancer", "description": "A module containing nanotubes that are embedded in the palm of the user's hand to pump any available fluid out of a dead body, cleanse it of impurities, and convert it into potable water. Water container not included.", - "price": 550000, - "price_postapoc": 500, + "price": "5 kUSD 500 USD", + "price_postapoc": "5 USD", "weight": "100 g", "difficulty": 5 }, @@ -1096,8 +1096,8 @@ "name": { "str": "Intravenous Needletip CBM" }, "looks_like": "bio_int_enhancer", "description": "A small tube with a retractable needle that terminates in a net of tiny hoses instead of a plunger. When installed, it allows the user to draw substances directly into their bloodstream akin to a regular syringe.", - "price": 1000, - "price_postapoc": 300, + "price": "10 USD", + "price_postapoc": "3 USD", "weight": "10 g", "difficulty": 1 }, @@ -1108,8 +1108,8 @@ "name": { "str": "Titanium Skeletal Bracing CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of hinges, springs, and other synthetic augments for the skeletal structure. These artificial enhancers strengthen the knees and elbows, allowing the user to carry more weight. The reinforcement also provides 2 bashing armor to the torso, legs and arms.", - "price": 50000, - "price_postapoc": 1500, + "price": "500 USD", + "price_postapoc": "15 USD", "weight": "3000 g", "difficulty": 3 }, @@ -1120,8 +1120,8 @@ "name": { "str": "Taste Modifier CBM" }, "looks_like": "bio_int_enhancer", "description": "A set of highly-sensitive sensors implanted in the user's mouth, combined with a sophisticated analyzer. While active, it will block all unpleasant taste and texture at the cost of bionic energy.", - "price": 40000, - "price_postapoc": 1000, + "price": "400 USD", + "price_postapoc": "10 USD", "weight": "100 g", "difficulty": 5 }, @@ -1132,8 +1132,8 @@ "name": { "str": "Soporific Induction CBM" }, "looks_like": "bio_int_enhancer", "description": "A microscopic electrode designed to gently stimulate a particular cluster of neurons in the hypothalamus, helping the user to fall asleep.", - "price": 350000, - "price_postapoc": 500, + "price": "3 kUSD 500 USD", + "price_postapoc": "5 USD", "weight": "50 g", "difficulty": 2 }, @@ -1266,8 +1266,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Synaptic Regeneration System CBM" }, "description": "An electromagnetic stimulator surgically implanted on the back of the head and along the spine, continually draining power. As long as it's active, the user will not suffer from sleep deprivation, although they may still feel sleepy; if activated by a user that is already sleep-deprived, it will gradually reduce the symptoms of lacking sleep.", - "price": 10000, - "price_postapoc": 5000, + "price": "100 USD", + "price_postapoc": "50 USD", "difficulty": 8 }, { @@ -1329,8 +1329,8 @@ "name": { "str": "Oil Generator CBM" }, "looks_like": "bio_int_enhancer", "description": "A CBM that generates power out of kerosene or motor oil. It is fairly efficient and can store up to 750 mL of fuel, but works somewhat slowly.", - "price": 120000, - "price_postapoc": 3500, + "price": "1 kUSD 200 USD", + "price_postapoc": "35 USD", "difficulty": 4 }, { @@ -1358,8 +1358,8 @@ "name": { "str": "Recoil Compensators CBM" }, "looks_like": "bio_int_enhancer", "description": "A CBM that contains shock absorbers and kinetic braces which greatly reduce the recoil of guns.", - "price": 650000, - "price_postapoc": 3500, + "price": "6 kUSD 500 USD", + "price_postapoc": "35 USD", "weight": "900 g", "difficulty": 5 }, @@ -1370,7 +1370,7 @@ "name": { "str": "Sleep Mode Shutdown CBM" }, "description": "A CBM that completely shuts down all communication between the user's brain and the rest of their body when they fall asleep, preventing them from waking up under any circumstance until their natural sleep cycle completes. An inability to trigger its effects manually makes it useless as an anesthesia substitute.", "weight": "100 g", - "price_postapoc": 500, + "price_postapoc": "5 USD", "difficulty": 10 }, { @@ -1380,7 +1380,7 @@ "name": { "str": "Throwing Assist CBM" }, "looks_like": "bio_int_enhancer", "description": "The culmination of decades of research into hominid palaeoanthropology and biomechanical modelling, the throwing assist CBM was brought to market to revolutionize Beqball tournaments, soon becoming exhibitions of cybernetic human effort and engineering. A network of neurostimulators and sensors, mostly in the arms and hands, work in tandem with the eyes for a significant increase in throwing accuracy and precision. When the Exodii came upon this cybernetic enhancement suite, they found it to be an economical way to ensure precise grenade placement in partial cyborgs.", - "price": 220000, + "price": "2 kUSD 200 USD", "weight": "1000 g", "difficulty": 3 } diff --git a/data/json/items/biosignatures.json b/data/json/items/biosignatures.json index 1a794bdc22e70..23a67e843da87 100644 --- a/data/json/items/biosignatures.json +++ b/data/json/items/biosignatures.json @@ -108,8 +108,8 @@ "weight": "100 g", "volume": "400 ml", "spoils_in": "60 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "flags": [ "TRADER_AVOID", "INEDIBLE" ] }, { @@ -143,8 +143,8 @@ "weight": "3 kg", "volume": "4 L", "spoils_in": "60 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "flags": [ "TRADER_AVOID", "INEDIBLE" ] } ] diff --git a/data/json/items/book/abstract.json b/data/json/items/book/abstract.json index 0d2a9524c5a3e..0ac53cacd4ab3 100644 --- a/data/json/items/book/abstract.json +++ b/data/json/items/book/abstract.json @@ -31,8 +31,8 @@ "weight": "1000 g", "volume": "1100 ml", "longest_side": "23 cm", - "price": 1999, - "price_postapoc": 1500, + "price": "19 USD 99 cent", + "price_postapoc": "15 USD", "material": [ "paper", "cardboard" ], "copy-from": "book_fict_tpl", "melee_damage": { "bash": 2 } @@ -45,8 +45,8 @@ "weight": "425 g", "volume": "662 ml", "longest_side": "18 cm", - "price": 799, - "price_postapoc": 1500, + "price": "7 USD 99 cent", + "price_postapoc": "15 USD", "material": [ "paper" ], "flags": [ ], "copy-from": "book_fict_tpl", @@ -59,8 +59,8 @@ "description": "template for hard bound nonfiction book", "weight": "1 kg", "volume": "1100 ml", - "price": 1450, - "price_postapoc": 2900, + "price": "14 USD 50 cent", + "price_postapoc": "29 USD", "material": [ "paper", "cardboard" ], "chapters": 18, "copy-from": "book_nonf_tpl", @@ -73,8 +73,8 @@ "description": "template for a paperback nonfiction book", "weight": "460 g", "volume": "500 ml", - "price": 990, - "price_postapoc": 2700, + "price": "9 USD 90 cent", + "price_postapoc": "27 USD", "material": [ "paper" ], "chapters": 18, "copy-from": "book_nonf_tpl", @@ -138,8 +138,8 @@ "name": { "str": "dodge skillbook abstract" }, "description": "An ordinary book. Or is it? It is.", "weight": "600 g", - "price": 1000, - "price_postapoc": 200, + "price": "10 USD", + "price_postapoc": "2 USD", "skill": "dodge", "intelligence": 4, "time": "10 m", @@ -154,7 +154,7 @@ "fun": 1, "time": "36 m", "copy-from": "book_nonf_hard_tpl", - "relative": { "price": 500, "price_postapoc": -2500, "intelligence": 3 } + "relative": { "price": "5 USD", "price_postapoc": -2500, "intelligence": 3 } }, { "abstract": "book_nonf_soft_phil_tpl", @@ -164,7 +164,7 @@ "fun": 1, "time": "36 m", "copy-from": "book_nonf_soft_tpl", - "relative": { "price": 400, "price_postapoc": -2600, "intelligence": 3 } + "relative": { "price": "4 USD", "price_postapoc": -2600, "intelligence": 3 } }, { "abstract": "book_pulp_newage_tpl", @@ -173,7 +173,7 @@ "description": "This is a template for pulp new-age books. They're theoretically nonfiction.", "copy-from": "book_fict_soft_pulp_tpl", "weight": "250 g", - "relative": { "chapters": -6, "price": 2500, "price_postapoc": -100 } + "relative": { "chapters": -6, "price": "25 USD", "price_postapoc": -100 } }, { "abstract": "book_nonf_hard_sports_tpl", @@ -214,8 +214,8 @@ "description": "An ordinary paperback book. Or is it? Is that a glimmer of higher truth?", "weight": "371 g", "volume": "700 ml", - "price": 750, - "price_postapoc": 2900, + "price": "7 USD 50 cent", + "price_postapoc": "29 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "story_book", @@ -296,7 +296,7 @@ "description": "template for mass produced satirical fiction", "copy-from": "book_fict_soft_tpl", "time": "20 m", - "relative": { "intelligence": 3, "price": 249 } + "relative": { "intelligence": 3, "price": "2 USD 49 cent" } }, { "abstract": "book_nonf_zine", @@ -306,8 +306,8 @@ "intelligence": 4, "weight": "60 g", "volume": "250 ml", - "price": 400, - "price_postapoc": 100, + "price": "4 USD", + "price_postapoc": "1 USD", "material": [ "paper" ], "symbol": "?", "color": "pink", @@ -359,7 +359,7 @@ "name": { "str": "martial art manual" }, "weight": "150 g", "volume": "250 ml", - "price": 20000, + "price": "200 USD", "material": [ "paper" ], "symbol": "?", "color": "green", diff --git a/data/json/items/book/archery.json b/data/json/items/book/archery.json index 95b52db23959b..6c657433b5d70 100644 --- a/data/json/items/book/archery.json +++ b/data/json/items/book/archery.json @@ -7,8 +7,8 @@ "description": "template for heavy books that confer archery skill training", "weight": "1454 g", "volume": "1250 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "story_book", @@ -46,7 +46,7 @@ ], "max_level": 2, "copy-from": "book_nonf_hard_arch_tpl", - "relative": { "price": 100, "price_postapoc": 2500 } + "relative": { "price": "1 USD", "price_postapoc": "25 USD" } }, { "id": "manual_archery", @@ -108,8 +108,8 @@ ], "weight": "60 g", "volume": "250 ml", - "price": 480, - "price_postapoc": 250, + "price": "4 USD 80 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "pink", diff --git a/data/json/items/book/barter.json b/data/json/items/book/barter.json index 7fa4a38bd50b9..11a67ba68aa44 100644 --- a/data/json/items/book/barter.json +++ b/data/json/items/book/barter.json @@ -7,8 +7,8 @@ "description": "Normally this glossy, ad-filled magazine about cars would be pointless, but it has a series of articles on haggling techniques.", "weight": "90 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 50, + "price": "4 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -45,8 +45,8 @@ ], "weight": "454 g", "volume": "750 ml", - "price": 1900, - "price_postapoc": 250, + "price": "19 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "manual_gun", @@ -85,8 +85,8 @@ ], "weight": "1587 g", "volume": "1750 ml", - "price": 9800, - "price_postapoc": 250, + "price": "98 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_firstaid", diff --git a/data/json/items/book/bashing.json b/data/json/items/book/bashing.json index 788dc66d1f07a..95580356cdcd3 100644 --- a/data/json/items/book/bashing.json +++ b/data/json/items/book/bashing.json @@ -38,8 +38,8 @@ ], "weight": "80 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 500, + "price": "4 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -82,8 +82,8 @@ ], "weight": "454 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 750, + "price": "20 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "manual_gun", diff --git a/data/json/items/book/chemistry.json b/data/json/items/book/chemistry.json index 719bd993bdeb2..a4a8a2f7d172e 100644 --- a/data/json/items/book/chemistry.json +++ b/data/json/items/book/chemistry.json @@ -45,8 +45,8 @@ ], "weight": "1712 g", "volume": "2 L", - "price": 7950, - "price_postapoc": 750, + "price": "79 USD 50 cent", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -98,8 +98,8 @@ ], "weight": "568 g", "volume": "750 ml", - "price": 2000, - "price_postapoc": 1250, + "price": "20 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "leather" ], "symbol": "?", "color": "brown", @@ -118,8 +118,8 @@ "description": "This sheaf of papers--dated two weeks before all this started--describes some new chemical formula, and its effects on human subjects. It's stamped \"APPROVED\"…", "weight": "50 g", "volume": "500 ml", - "price": 125000, - "price_postapoc": 2000, + "price": "1 kUSD 250 USD", + "price_postapoc": "20 USD", "material": [ "paper" ], "symbol": "?", "color": "light_green", @@ -138,8 +138,8 @@ "description": "This team logbook details several varieties of mutagenic experiments, focusing on those derived from various Earth fauna. The team seems quite enthusiastic--if not eager--about their results.", "weight": "500 g", "volume": "600 ml", - "price": 50000, - "price_postapoc": 2000, + "price": "500 USD", + "price_postapoc": "20 USD", "material": [ "paper" ], "symbol": "?", "color": "light_green", @@ -158,8 +158,8 @@ "description": "This sheaf of papers describes a new chemical formula in detail and supplies instructions for its use as some sort of… crowd-control catalyst? That can't be right…", "weight": "50 g", "volume": "500 ml", - "price": 125000, - "price_postapoc": 2000, + "price": "1 kUSD 250 USD", + "price_postapoc": "20 USD", "material": [ "paper" ], "symbol": "?", "color": "light_green", @@ -178,8 +178,8 @@ "description": "This team logbook details several varieties of mutagenic experiments, focusing on those derived from flesh contaminated with XE037. The results look promising but the procurement methods seem awfully vague…", "weight": "400 g", "volume": "500 ml", - "price": 50000, - "price_postapoc": 2000, + "price": "500 USD", + "price_postapoc": "20 USD", "material": [ "paper" ], "symbol": "?", "color": "light_green", @@ -198,8 +198,8 @@ "description": "This binder details the scheduled maintenance for several plumbing systems throughout the facility. However, some of the log sheets seem to be filled with… a chemical formula?", "weight": "400 g", "volume": "750 ml", - "price": 400, - "price_postapoc": 2000, + "price": "4 USD", + "price_postapoc": "20 USD", "material": [ "paper", "plastic" ], "symbol": "?", "color": "light_green", @@ -217,8 +217,8 @@ "description": "This somewhat technical binder has several intimidating security warnings on the cover, yet guarantees unauthorized readers \"permanent employment, for life\". It contains useful information on \"basic\" chemical projects like methamphetamine and heroin, along with briefing on things called \"XE037\" and \"PE012\".", "weight": "2000 g", "volume": "2 L", - "price": 64000, - "price_postapoc": 2000, + "price": "640 USD", + "price_postapoc": "20 USD", "material": [ "paper", "plastic" ], "symbol": "?", "color": "light_green", @@ -237,8 +237,8 @@ "description": "This damaged team logbook lacks (deliberately?) any identifying information, but still contains useful information on several types of mutagen and their development.", "weight": "400 g", "volume": "500 ml", - "price": 50000, - "price_postapoc": 2000, + "price": "500 USD", + "price_postapoc": "20 USD", "material": [ "paper", "plastic" ], "symbol": "?", "color": "light_green", @@ -260,8 +260,8 @@ "description": "This binder of highly technical papers describes some new chemical formula, and its effects on human subjects. It's stamped \"APPROVED\"…", "weight": "1450 g", "volume": "1750 ml", - "price": 62000, - "price_postapoc": 2000, + "price": "620 USD", + "price_postapoc": "20 USD", "material": [ "paper", "plastic" ], "symbol": "?", "color": "light_green", @@ -281,8 +281,8 @@ "description": "This sheaf of papers is a highly speculative proposal for focusing \"PE065\". Scribbled notes throughout seem to think that it might work, but that there's no time.", "weight": "50 g", "volume": "500 ml", - "price": 125000, - "price_postapoc": 2000, + "price": "1 kUSD 250 USD", + "price_postapoc": "20 USD", "material": [ "paper" ], "symbol": "?", "color": "light_green", @@ -300,8 +300,8 @@ "description": "This internal manual details several varieties of mutagenic experiments, as well as describing the protocols used to concentrate mutagens for quicker results. The authors recommend that researchers ensure that their subjects are well-fed and in good health, as the concentrated serums draw heavily on subjects' bodies.", "weight": "500 g", "volume": "600 ml", - "price": 50000, - "price_postapoc": 2000, + "price": "500 USD", + "price_postapoc": "20 USD", "material": [ "paper", "plastic" ], "symbol": "?", "color": "light_green", @@ -320,8 +320,8 @@ "description": "This huge hardbound book is a collection of reference data and formulae pertinent to many technical disciplines. If poring over tables of chemical and physical data is your thing, this is the book for you.", "weight": "5790 g", "volume": "1750 ml", - "price": 9000, - "price_postapoc": 2000, + "price": "90 USD", + "price_postapoc": "20 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_firstaid", @@ -364,8 +364,8 @@ ], "weight": "1587 g", "volume": "2 L", - "price": 7950, - "price_postapoc": 2000, + "price": "79 USD 50 cent", + "price_postapoc": "20 USD", "material": [ "paper", "cardboard" ], "ascii_picture": "textbook_chemistry", "symbol": "?", @@ -409,8 +409,8 @@ "looks_like": "textbook_chemistry", "weight": "1420 g", "volume": "1 L", - "price": 6000, - "price_postapoc": 10000, + "price": "60 USD", + "price_postapoc": "100 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -429,8 +429,8 @@ "description": "This in-depth and technical text covers the design, development, dissemination of, and defenses against various chemical weapons throughout the centuries. The photographs the author chose make it a difficult read at times, though the information is top-notch.", "weight": "854 g", "volume": "1500 ml", - "price": 400, - "price_postapoc": 1000, + "price": "4 USD", + "price_postapoc": "10 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -492,8 +492,8 @@ ], "weight": "362 g", "volume": "500 ml", - "price": 550, - "price_postapoc": 1900, + "price": "5 USD 50 cent", + "price_postapoc": "19 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "recipe_alpha", @@ -543,8 +543,8 @@ ], "weight": "1200 g", "volume": "2 L", - "price": 1500, - "price_postapoc": 2500, + "price": "15 USD", + "price_postapoc": "25 USD", "material": [ "paper" ], "symbol": "?", "color": "light_cyan", @@ -626,8 +626,8 @@ ], "weight": "1200 g", "volume": "2 L", - "price": 1500, - "price_postapoc": 2500, + "price": "15 USD", + "price_postapoc": "25 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", diff --git a/data/json/items/book/computer.json b/data/json/items/book/computer.json index 704394b66b2f8..dee25f6d497fc 100644 --- a/data/json/items/book/computer.json +++ b/data/json/items/book/computer.json @@ -32,8 +32,8 @@ ], "weight": "1587 g", "volume": "1500 ml", - "price": 7800, - "price_postapoc": 500, + "price": "78 USD", + "price_postapoc": "5 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_traps", @@ -82,8 +82,8 @@ ], "weight": "1587 g", "volume": "1750 ml", - "price": 7900, - "price_postapoc": 250, + "price": "79 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_traps", @@ -138,8 +138,8 @@ ], "weight": "454 g", "volume": "750 ml", - "price": 1700, - "price_postapoc": 50, + "price": "17 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "manual_gun", @@ -184,8 +184,8 @@ ], "weight": "80 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 50, + "price": "4 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -234,8 +234,8 @@ ], "weight": "462 g", "volume": "750 ml", - "price": 5500, - "price_postapoc": 50, + "price": "55 USD", + "price_postapoc": "50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_traps", @@ -296,8 +296,8 @@ ], "weight": "2206 g", "volume": "1750 ml", - "price": 8500, - "price_postapoc": 500, + "price": "85 USD", + "price_postapoc": "5 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_traps", @@ -362,8 +362,8 @@ ], "weight": "907 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "textbook_traps", @@ -418,8 +418,8 @@ ], "weight": "1320 g", "volume": "750 ml", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "textbook_traps", diff --git a/data/json/items/book/cooking.json b/data/json/items/book/cooking.json index d3e6d82549ad0..004990b376c62 100644 --- a/data/json/items/book/cooking.json +++ b/data/json/items/book/cooking.json @@ -7,8 +7,8 @@ "description": "A book full of easy-to-follow recipes and useful advice on homebrewing, malting, and fermenting. It even smells faintly of booze.", "weight": "1587 g", "volume": "1500 ml", - "price": 4950, - "price_postapoc": 1500, + "price": "49 USD 50 cent", + "price_postapoc": "15 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -34,8 +34,8 @@ "description": "A nice cookbook that goes beyond recipes and into the chemistry of food.", "weight": "454 g", "volume": "1 L", - "price": 1900, - "price_postapoc": 500, + "price": "19 USD", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "color": "green", @@ -60,8 +60,8 @@ "description": "It's… it's a cookbook!", "weight": "454 g", "volume": "1 L", - "price": 40000, - "price_postapoc": 50, + "price": "400 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "cookbook", @@ -81,8 +81,8 @@ "description": "This cookbook is written in Italian, but handily illustrated with step-by-step photo instructions.", "weight": "454 g", "volume": "1 L", - "price": 2000, - "price_postapoc": 750, + "price": "20 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "cookbook", @@ -104,8 +104,8 @@ "description": "This cookbook has lots of colorful pictures of finished dishes and features personal tips from the author/chef on nearly every recipe. On the back cover are two joyful photos of the author in the kitchen with their parents: one as a child and one as an adult.", "weight": "454 g", "volume": "1 L", - "price": 2000, - "price_postapoc": 750, + "price": "20 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "cookbook", @@ -124,8 +124,8 @@ "description": "A simple text for the aspiring sushi lover, this easy-to-read guide is filled with lots of helpful illustrations for everything from basic rice preparation to setting a proper Japanese table.", "weight": "921 g", "volume": "750 ml", - "price": 3500, - "price_postapoc": 500, + "price": "35 USD", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "color": "light_green", @@ -145,8 +145,8 @@ "description": "A big binder full of somebody's family recipes. The well-turned pages and creased corners speak volumes of the culinary knowledge contained within. You could probably learn a lot about cooking from studying this domestic artifact.", "weight": "1540 g", "volume": "1400 ml", - "price": 1950, - "price_postapoc": 500, + "price": "19 USD 50 cent", + "price_postapoc": "5 USD", "material": [ { "type": "leather", "portion": 10 }, { "type": "paper", "portion": 90 } ], "symbol": "?", "color": "light_gray", @@ -173,8 +173,8 @@ "description": "Exciting recipes and restaurant reviews. Full of handy tips about cooking.", "weight": "60 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 500, + "price": "4 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "color": "pink", @@ -192,8 +192,8 @@ "description": "A full-size glossy women's magazine. There are a few unoriginal recipes and some simple cooking tips somewhere in between the fashion photos and the sex advice columns.", "weight": "160 g", "volume": "500 ml", - "price": 450, - "price_postapoc": 250, + "price": "4 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "pink", @@ -215,8 +215,8 @@ "description": "A semi-translated Gaelic cookbook from sixteenth century Scotland. While a bit difficult to read, as there are a disquieting number of illustrations of people stabbing each other mixed with rants about 'True Scotsmen', it provides insights into medieval Scottish cuisine and culture.", "weight": "1887 g", "volume": "1250 ml", - "price": 1950, - "price_postapoc": 2000, + "price": "19 USD 50 cent", + "price_postapoc": "20 USD", "material": [ "paper", "leather" ], "symbol": "?", "color": "light_gray", @@ -237,8 +237,8 @@ "description": "This book describes in detail all the ways that one can make vinegar. You would have thought that there wasn't much to making vinegar, but the girth of this book tells you otherwise.", "weight": "454 g", "volume": "1 L", - "price": 1900, - "price_postapoc": 750, + "price": "19 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "cookbook", @@ -275,8 +275,8 @@ "description": "Offal Holiday Cooking, by Evelyn Turncoat, is a book of holiday recipes that utilize organ meats from various animals. For the true nose-to-tail cook.", "weight": "454 g", "volume": "1 L", - "price": 1900, - "price_postapoc": 750, + "price": "19 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "cookbook", @@ -296,8 +296,8 @@ "description": "Whatever you want to do with milk, you will probably find it in this book.", "weight": "478 g", "volume": "1 L", - "price": 1900, - "price_postapoc": 750, + "price": "19 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "cookbook", @@ -320,8 +320,8 @@ "description": "This cookbook is written by liver enthusiast Tamsyn Beckerleg. Inside you'll find a great deal of anecdotes about the near-certain ruination of children who refuse to eat their liver.", "weight": "600 g", "volume": "800 ml", - "price": 1999, - "price_postapoc": 500, + "price": "19 USD 99 cent", + "price_postapoc": "5 USD", "required_level": 1, "max_level": 2, "intelligence": 5, @@ -337,8 +337,8 @@ "description": "A recipe book compiled by blood-as-food advocate Alžbeta Bátoriová. The consumption of blood is a taboo among members of many Abrahamic religions, but they aren't going to stop you now. This book has bonus material for those with particular tastes.", "weight": "600 g", "volume": "800 ml", - "price": 1999, - "price_postapoc": 500, + "price": "19 USD 99 cent", + "price_postapoc": "5 USD", "required_level": 1, "max_level": 2, "intelligence": 5, @@ -351,8 +351,8 @@ "name": { "str": "Dainty Dishes Fit for a King", "str_pl": "copies of Dainty Dishes" }, "description": "This cookbook contains many fanciful recipes. Some of them are even worth the trouble to actually prepare. Lovely pen and ink illustrations of overweight knights and gluttonous monks line the pages.", "volume": "900 ml", - "price": 3000, - "price_postapoc": 750, + "price": "30 USD", + "price_postapoc": "7 USD 50 cent", "max_level": 3, "time": "12 m", "fun": 1, @@ -365,8 +365,8 @@ "name": { "str": "Eat Your Way to a Fit Physique", "str_pl": "copies of Eat Your Way" }, "description": "This self-help book, by \"acclaimed nutrition and health guru Amar de Freitas,\" is as dubious as its title. Worse, it is boring. It does, however, contain a few basic cooking instructions.", "volume": "1100 ml", - "price": 2500, - "price_postapoc": 750, + "price": "25 USD", + "price_postapoc": "7 USD 50 cent", "max_level": 1, "time": "14 m", "fun": -1, @@ -378,8 +378,8 @@ "type": "BOOK", "name": { "str": "Food Fashions for Young Moderns", "str_pl": "copies of Food Fashions" }, "description": "A cookbook professing itself to be for those seeking \"daring and sophisticated flavors.\" The book exhorts the reader to defy convention and break the rules, and then presents a number of useful rules and conventions for preparing food.", - "price": 3999, - "price_postapoc": 750, + "price": "39 USD 99 cent", + "price_postapoc": "7 USD 50 cent", "required_level": 2, "max_level": 4, "intelligence": 7, @@ -393,8 +393,8 @@ "description": "Winemaking is an art form. This book teaches you how to crayon within the lines.", "weight": "454 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 1000, + "price": "40 USD", + "price_postapoc": "10 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "cookbook", @@ -416,7 +416,7 @@ "type": "BOOK", "name": { "str": "You Can Can at Home", "str_pl": "copies of You Can Can at Home" }, "description": "This entry-level guide to home canning talks about the importance of acidity and food contents in preservation, and how to avoid contaminants in your canning batches.", - "price_postapoc": 1500, + "price_postapoc": "15 USD", "proficiencies": [ { "proficiency": "prof_preservation", "time_factor": 0.1, "fail_factor": 0.25 }, { "proficiency": "prof_food_canning", "time_factor": 0.2, "fail_factor": 0.4 } @@ -428,7 +428,7 @@ "type": "BOOK", "name": { "str": "Can Sealer Instructions", "str_pl": "copies of Can Sealer Instructions" }, "description": "This dry guide to a home-use tin can sealer goes into clear detail on everything you can seal with the device and how to do it safely, and includes some basic recipes.", - "price_postapoc": 1500, + "price_postapoc": "15 USD", "proficiencies": [ { "proficiency": "prof_preservation", "time_factor": 0.05, "fail_factor": 0.1 }, { "proficiency": "prof_food_canning", "time_factor": 0.05, "fail_factor": 0.3 } @@ -440,7 +440,7 @@ "type": "BOOK", "name": { "str": "Vacuum Sealer Instructions", "str_pl": "copies of Vacuum Sealer Instructions" }, "description": "This dry guide to a home-use vacuum sealer goes into clear detail on everything you can seal with the device and how to do it safely, and includes some basic recipes.", - "price_postapoc": 1500, + "price_postapoc": "15 USD", "proficiencies": [ { "proficiency": "prof_preservation", "time_factor": 0.05, "fail_factor": 0.1 } ], "copy-from": "mag_cooking" }, @@ -452,8 +452,8 @@ "description": "This book promises to teach you the ways of baking, from cakes to souffles.", "weight": "1587 g", "volume": "1500 ml", - "price": 4950, - "price_postapoc": 750, + "price": "49 USD 50 cent", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "cookbook", @@ -480,8 +480,8 @@ "description": "Fermenting as a cooking practice only recently came back into vogue before the Cataclysm. Here is a book with dozens of recipes, many of which you are unlikely to ever see the ingredients for again.", "weight": "1587 g", "volume": "1500 ml", - "price": 4950, - "price_postapoc": 500, + "price": "49 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "cookbook", @@ -506,8 +506,8 @@ "description": "A book describing the history of at-home distillation. Each chapter is named after a different type of liquor, and contains a complete recipe for its namesake.", "weight": "454 g", "volume": "619 ml", - "price": 1950, - "price_postapoc": 1500, + "price": "19 USD 50 cent", + "price_postapoc": "15 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "cookbook", @@ -535,8 +535,8 @@ "description": "Sweets for your Sweet Child is a best-selling cookbook marketed to the parents of young children. Every recipe uses oversized text, easy words and diagram instructions for children learning to cook with their parents.", "weight": "600 g", "volume": "800 ml", - "price": 1050, - "price_postapoc": 250, + "price": "10 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "cookbook", @@ -560,8 +560,8 @@ "description": "A thick hardcover book as much about Indian culture as it is a cookbook, clearly written with adoration.", "weight": "2950 g", "volume": "3215 ml", - "price": 6000, - "price_postapoc": 750, + "price": "60 USD", + "price_postapoc": "7 USD 50 cent", "color": "yellow", "required_level": 1, "max_level": 3, @@ -580,8 +580,8 @@ "description": "A thick hardcover book about the history and future of Native American cuisine. As much recipe collection as manifesto.", "weight": "2950 g", "volume": "3215 ml", - "price": 6000, - "price_postapoc": 750, + "price": "60 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "color": "blue", "skill": "cooking", @@ -606,8 +606,8 @@ "description": "The definitive cookbook of hearty, healthy Turkish cuisine.", "weight": "600 g", "volume": "800 ml", - "price": 1050, - "price_postapoc": 250, + "price": "10 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "cookbook", diff --git a/data/json/items/book/cutting.json b/data/json/items/book/cutting.json index b1400678623b0..530d93950b1c2 100644 --- a/data/json/items/book/cutting.json +++ b/data/json/items/book/cutting.json @@ -41,8 +41,8 @@ ], "weight": "80 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 750, + "price": "4 USD 50 cent", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -98,8 +98,8 @@ ], "weight": "454 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 750, + "price": "20 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "record_patient", @@ -154,8 +154,8 @@ ], "weight": "454 g", "volume": "250 ml", - "price": 5200, - "price_postapoc": 1250, + "price": "52 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "manual_gun", diff --git a/data/json/items/book/dodge.json b/data/json/items/book/dodge.json index 3f900cc7cc44a..6ceec3b122af5 100644 --- a/data/json/items/book/dodge.json +++ b/data/json/items/book/dodge.json @@ -41,8 +41,8 @@ ], "weight": "60 g", "volume": "250 ml", - "price": 490, - "price_postapoc": 250, + "price": "4 USD 90 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -86,8 +86,8 @@ ], "weight": "2330 g", "volume": "1250 ml", - "price": 7200, - "price_postapoc": 750, + "price": "72 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "manual_gun", @@ -185,6 +185,6 @@ "color": "blue", "required_level": 4, "max_level": 5, - "relative": { "price_postapoc": 2000, "intelligence": 4, "time": "10 m" } + "relative": { "price_postapoc": "20 USD", "intelligence": 4, "time": "10 m" } } ] diff --git a/data/json/items/book/driving.json b/data/json/items/book/driving.json index d5c2e4fcb583f..d539b7ab04b40 100644 --- a/data/json/items/book/driving.json +++ b/data/json/items/book/driving.json @@ -32,8 +32,8 @@ ], "weight": "220 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "textbook_anarch", @@ -109,8 +109,8 @@ ], "weight": "60 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 250, + "price": "4 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -163,8 +163,8 @@ ], "weight": "404 g", "volume": "500 ml", - "price": 2200, - "price_postapoc": 250, + "price": "22 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "manual_gun", @@ -207,8 +207,8 @@ ], "weight": "223 g", "volume": "500 ml", - "price": 5000, - "price_postapoc": 2750, + "price": "50 USD", + "price_postapoc": "27 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "decoy_anarch", diff --git a/data/json/items/book/electronics.json b/data/json/items/book/electronics.json index 2c00c674d462f..6f97da046b2ca 100644 --- a/data/json/items/book/electronics.json +++ b/data/json/items/book/electronics.json @@ -7,8 +7,8 @@ "description": "A college textbook on circuit design.", "weight": "1587 g", "volume": "1750 ml", - "price": 8200, - "price_postapoc": 750, + "price": "82 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -28,8 +28,8 @@ "description": "A textbook-sized book of electronics and robotics experiments.", "weight": "1587 g", "volume": "1750 ml", - "price": 8200, - "price_postapoc": 750, + "price": "82 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "blue", @@ -49,8 +49,8 @@ "description": "An amusing magazine about ham radio, with lots of diagrams and illustrations for making your own electronic devices.", "weight": "45 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 500, + "price": "4 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "color": "pink", @@ -68,8 +68,8 @@ "description": "A basic manual of electronics and circuit design.", "weight": "454 g", "volume": "750 ml", - "price": 2200, - "price_postapoc": 250, + "price": "22 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "green", @@ -86,8 +86,8 @@ "description": "This reference manual contains datasheets and pinout diagrams for 101 of the most popular IC chips, including the 555 timer, LM358 op-amp, and LM317 voltage regulator, along with logic chips from the 74xx family, and even the 6502 8-bit processor. If you want to do anything useful with integrated circuits, a reference like this would be indispensable.", "weight": "900 g", "volume": "800 ml", - "price": 2200, - "price_postapoc": 250, + "price": "22 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "green", @@ -103,8 +103,8 @@ "description": "A book about ham radio and citizen's band radio. It contains numerous diagrams and illustrations explaining the science behind the electronics.", "weight": "1587 g", "volume": "1750 ml", - "price": 3300, - "price_postapoc": 250, + "price": "33 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "blue", @@ -124,8 +124,8 @@ "description": "One side of this sheet is printed with a meaningless jumble of characters, but the other side shows a complicated, hand-drawn circuit diagram.", "weight": "10 g", "volume": "12 ml", - "price": 40000, - "price_postapoc": 1250, + "price": "400 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "light_green", @@ -143,8 +143,8 @@ "description": "This annual publication covers the various ways in which multiple CEOs of different corporations describe the great world of the near future. There are a few in-depth and thoroughly illustrated articles on prosthetics, though they tend to use too much jargon.", "weight": "400 g", "volume": "500 ml", - "price": 3000, - "price_postapoc": 750, + "price": "30 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "pink", @@ -163,8 +163,8 @@ "description": "This hefty binder contains a multitude of diagrams and technical specifications for various electronic materials. Some of the diagrams use symbols you've not seen before…", "weight": "2000 g", "volume": "2400 ml", - "price": 56000, - "price_postapoc": 2000, + "price": "560 USD", + "price_postapoc": "20 USD", "material": [ "paper", "plastic" ], "symbol": "?", "color": "light_green", @@ -183,8 +183,8 @@ "description": "This DoubleTech Industries binder has several intimidating security warnings on the cover. Probably because it contains complete design specs, technical drawings, and test results for their military-grade bionic implants.", "weight": "400 g", "volume": "500 ml", - "price": 74000, - "price_postapoc": 2500, + "price": "740 USD", + "price_postapoc": "25 USD", "material": [ "paper", "plastic" ], "symbol": "?", "looks_like": "recipe_lab_elec", @@ -204,8 +204,8 @@ "description": "Instructions on how to create a mod for a radio station terminal which converts the entire system into a repeater.", "weight": "5 g", "volume": "250 ml", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "material": [ "paper" ], "symbol": "?", "color": "blue", @@ -224,8 +224,8 @@ "description": "An advanced college textbook on circuit theory, design, and organization.", "weight": "1587 g", "volume": "1750 ml", - "price": 9300, - "price_postapoc": 2000, + "price": "93 USD", + "price_postapoc": "20 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -245,8 +245,8 @@ "description": "A rare book on the design of robots, with lots of helpful step-by-step guides.", "weight": "2063 g", "volume": "2 L", - "price": 9200, - "price_postapoc": 750, + "price": "92 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -266,8 +266,8 @@ "description": "A heavy and disparate binder detailing the deactivation, storage and transport procedures for a so called \"Trifacet\" UGV. The pages and schematics within have been compiled from the internal reports of a vast array of governmental agencies, many of which you had never heard of before.", "weight": "550 g", "volume": "500 ml", - "price": 84000, - "price_postapoc": 2500, + "price": "840 USD", + "price_postapoc": "25 USD", "material": [ "paper", "plastic" ], "symbol": "?", "color": "light_green", @@ -286,7 +286,7 @@ "description": "A printed technical reference for the Exodii's CBM interface wire kit using numerous alien symbols along with Anglic terminology. Thankfully someone's hand-written a legend for those symbols and terms along the margins, but it'll still take significant electronics knowledge to decipher this document.", "weight": "30 g", "volume": "400 ml", - "price_postapoc": 5000, + "price_postapoc": "50 USD", "material": [ "paper" ], "symbol": "?", "color": "light_green", @@ -305,8 +305,8 @@ "description": "seeing this is a bug", "weight": "30 g", "volume": "250 ml", - "price": 100000, - "price_postapoc": 750, + "price": "1 kUSD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "paper" ], "skill": "electronics", diff --git a/data/json/items/book/fabrication.json b/data/json/items/book/fabrication.json index 02ebee9bf6b4c..39c776150a06c 100644 --- a/data/json/items/book/fabrication.json +++ b/data/json/items/book/fabrication.json @@ -7,8 +7,8 @@ "description": "A textbook that illustrates the science and technique of the ancient art of glassblowing.", "weight": "1500 g", "volume": "1250 ml", - "price": 4500, - "price_postapoc": 250, + "price": "45 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -32,8 +32,8 @@ "description": "A textbook that goes through types and material properties of various common plastics, and how to use them in several common projects.", "weight": "1500 g", "volume": "1250 ml", - "price": 4500, - "price_postapoc": 250, + "price": "45 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -53,8 +53,8 @@ "description": "A textbook with information about casting various types of metals.", "weight": "1500 g", "volume": "1250 ml", - "price": 4500, - "price_postapoc": 250, + "price": "45 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -74,8 +74,8 @@ "description": "A textbook with information about alloying various types of metals.", "weight": "1500 g", "volume": "1250 ml", - "price": 4500, - "price_postapoc": 250, + "price": "45 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -95,8 +95,8 @@ "description": "A huge textbook with information about the historic use of bronze around the world, with well illustrated instructions of the manufacturing process of armor, weapons and bronze tools.", "weight": "1500 g", "volume": "1250 ml", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "yellow", @@ -119,8 +119,8 @@ "description": "An in-depth magazine about the use of bronze weapons in warfare. There are some images about their fabrication process.", "weight": "200 g", "volume": "250 ml", - "price": 1500, - "price_postapoc": 200, + "price": "15 USD", + "price_postapoc": "2 USD", "material": [ "paper" ], "symbol": "?", "color": "yellow", @@ -144,8 +144,8 @@ "description": "The first book to contain, in one comprehensive volume, every molding and casting procedure of use to the theater props builder of any skill level. The author demonstrates the techniques involved in over thirty materials from papier-mache to breakaway glass.", "weight": "1500 g", "volume": "1250 ml", - "price": 4500, - "price_postapoc": 250, + "price": "45 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "brown_yellow", @@ -168,8 +168,8 @@ "description": "A comprehensive and illustrated history of the techniques used to make crowns, bracelets, necklaces, and other types of jewelry.", "weight": "600 g", "volume": "1250 ml", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -191,8 +191,8 @@ "description": "A fun quarterly magazine all about macaroni art and things you can make by supergluing found objects together.", "weight": "60 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 50, + "price": "4 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "color": "pink", @@ -211,8 +211,8 @@ "description": "A large, paperback book detailing a hundred and one beginner's projects in fabrication.", "weight": "510 g", "volume": "750 ml", - "price": 2200, - "price_postapoc": 500, + "price": "22 USD", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "color": "green", @@ -230,8 +230,8 @@ "description": "This hefty book is devoted to folks looking to handcraft their own arrows. It starts with a hip and snappy disclaimer about the risks, both physical and legal, of using explosives and flammable materials. Look for its companion, \"The Bowyer's Buddy\"!", "weight": "1454 g", "volume": "1250 ml", - "price": 4800, - "price_postapoc": 1250, + "price": "48 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -250,8 +250,8 @@ "description": "This hefty book is dedicated to craftsfolk and outdoors-y types looking to make their own bows. It recommends its companion volume \"The Fletcher's Friend\" for instructions on producing their ammunition.", "weight": "1454 g", "volume": "1250 ml", - "price": 4800, - "price_postapoc": 1500, + "price": "48 USD", + "price_postapoc": "15 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -270,8 +270,8 @@ "description": "Everything you could ever want to know about handloading ammunition, sealed with a… childproof cover. Apparently a liability thing, because the chapter on explosive rounds covers them in excellent detail too.", "weight": "1454 g", "volume": "1500 ml", - "price": 12000, - "price_postapoc": 1750, + "price": "120 USD", + "price_postapoc": "17 USD 50 cent", "material": [ "paper", "plastic" ], "symbol": "?", "color": "blue", @@ -290,8 +290,8 @@ "description": "This Rivtech binder warns that \"Unauthorized readers are our best test subjects.\" With good reason: it contains complete design specs and technical drawings for their entire line of products.", "weight": "1409 g", "volume": "1700 ml", - "price": 84000, - "price_postapoc": 2500, + "price": "840 USD", + "price_postapoc": "25 USD", "material": [ "paper", "plastic" ], "symbol": "?", "color": "light_green", @@ -310,8 +310,8 @@ "description": "This paper notebook is mostly full of boring logs, experimental observations and notes. Mixed in, however, are musings on how to use the lab's vapor deposition machine to deposit amorphous carbon in a diamond-like form onto common metals. The author's intended goal was a better non-stick frying pan, but you can think of a couple of better uses for it.", "weight": "600 g", "volume": "500 ml", - "price": 50000, - "price_postapoc": 2000, + "price": "500 USD", + "price_postapoc": "20 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "recipe_lab_elec", @@ -331,8 +331,8 @@ "description": "A sizable how-to guide for making hand-to-hand combat weapons. Though the processes are thoroughly detailed and several illustrations are provided, they rely heavily on technical jargon. More for machinists-turned-weaponsmiths than streetfighters, really.", "weight": "954 g", "volume": "1500 ml", - "price": 8300, - "price_postapoc": 1750, + "price": "83 USD", + "price_postapoc": "17 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "blue", @@ -350,8 +350,8 @@ "description": "This in-depth and technical text details various forms of ancient Japanese armor crafting, and is well illustrated with lots of photos.", "weight": "654 g", "volume": "1250 ml", - "price": 6400, - "price_postapoc": 2250, + "price": "64 USD", + "price_postapoc": "22 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -371,8 +371,8 @@ "description": "This textbook details the military history of ancient China, with a particular focus on the nature of historical arms and armor. It also details some of the equipment used by other cultures that came into conflict with the empire over various dynasties.", "weight": "654 g", "volume": "1250 ml", - "price": 6400, - "price_postapoc": 2750, + "price": "64 USD", + "price_postapoc": "27 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -392,8 +392,8 @@ "description": "This exhaustive book details various forms of medieval period Middle Eastern and South Asian weapons and armor. It is incredibly detailed with diagrams and pictures, but quite dry.", "weight": "654 g", "volume": "1250 ml", - "price": 6400, - "price_postapoc": 2750, + "price": "64 USD", + "price_postapoc": "27 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -413,8 +413,8 @@ "description": "This in-depth and technical text details various forms of ancient European armor crafting, and is well illustrated with lots of photos.", "weight": "654 g", "volume": "1250 ml", - "price": 6400, - "price_postapoc": 3000, + "price": "64 USD", + "price_postapoc": "30 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -437,8 +437,8 @@ "description": "This intricate history book details the history of Mesoamerican warfare from the sources of the native codices, Spanish records and contemporary historians. It contains descriptive diagrams and information on few of the weapons used, mainly of the Nahuatl speaking peoples. You reckon you could craft a few of them with steel instead of obsidian.", "weight": "654 g", "volume": "1250 ml", - "price": 6400, - "price_postapoc": 3000, + "price": "64 USD", + "price_postapoc": "30 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -457,8 +457,8 @@ "description": "A thick, hardbound book detailing countless projects for inventions that claim to improve all aspects of life.", "weight": "2100 g", "volume": "1750 ml", - "price": 4500, - "price_postapoc": 750, + "price": "45 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "recipe_lab_elec", @@ -478,8 +478,8 @@ "description": "This in-depth and technical text details the history of firefighting from ancient times into the modern era, with a focus on the technology used to save lives.", "weight": "528 g", "volume": "1 L", - "price": 6500, - "price_postapoc": 1250, + "price": "65 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -497,8 +497,8 @@ "description": "This in-depth and technical text details various forms of ancient Japanese sword smithing, and is well illustrated with step by step photo instructions.", "weight": "654 g", "volume": "1250 ml", - "price": 6400, - "price_postapoc": 2500, + "price": "64 USD", + "price_postapoc": "25 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -518,8 +518,8 @@ "description": "This in-depth and technical text details various forms of ancient European weapon smithing, and is well illustrated with step by step photo instructions.", "weight": "654 g", "volume": "1250 ml", - "price": 6400, - "price_postapoc": 3000, + "price": "64 USD", + "price_postapoc": "30 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -539,8 +539,8 @@ "description": "A rather technical textbook that illustrates the science and technique of becoming a better welder.", "weight": "2100 g", "volume": "1750 ml", - "price": 6500, - "price_postapoc": 1500, + "price": "65 USD", + "price_postapoc": "15 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -560,8 +560,8 @@ "description": "A paperback book detailing 101 home repair projects for the novice carpenter.", "weight": "454 g", "volume": "500 ml", - "price": 1800, - "price_postapoc": 750, + "price": "18 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "recipe_lab_elec", @@ -583,8 +583,8 @@ "description": "A massive book that details virtually every aspect of remodeling and repairing a home, with concise terminology aimed at experienced carpenters.", "weight": "2490 g", "volume": "2 L", - "price": 8200, - "price_postapoc": 1000, + "price": "82 USD", + "price_postapoc": "10 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "recipe_lab_elec", @@ -609,8 +609,8 @@ "description": "A riveting periodical all about birdhouses and their construction.", "weight": "60 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 250, + "price": "4 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -630,8 +630,8 @@ "description": "A large, paperback book detailing several beginner's projects in construction.", "weight": "454 g", "volume": "500 ml", - "price": 2200, - "price_postapoc": 500, + "price": "22 USD", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "recipe_lab_elec", @@ -653,8 +653,8 @@ "description": "A textbook on civil engineering and construction.", "weight": "1587 g", "volume": "1500 ml", - "price": 6500, - "price_postapoc": 1000, + "price": "65 USD", + "price_postapoc": "10 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -674,8 +674,8 @@ "description": "This classic reference work contains extensive, dense chapters and tables on materials, metrology, toolmaking, gears, threading and more. This recent edition includes extensive data on the latest techniques in additive manufacturing. If you need to know how best complete a certain machining operation, the answer lies somewhere in these pages.", "weight": "454 g", "volume": "500 ml", - "price": 8000, - "price_postapoc": 1500, + "price": "80 USD", + "price_postapoc": "15 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "recipe_lab_elec", @@ -693,8 +693,8 @@ "description": "A collection of notable uses of concrete. Contains detailed directions on how to mix and use cement to form useful aggregates.", "weight": "600 g", "volume": "1250 ml", - "price": 4000, - "price_postapoc": 750, + "price": "40 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "recipe_lab_elec", @@ -714,8 +714,8 @@ "description": "This sheaf of papers seems to describe maintenance on a new form of ballistic armor. \"the regenerative plates though promising for field use do require maintenance or combat to stop from becoming overgrown\".", "weight": "50 g", "volume": "500 ml", - "price": 125000, - "price_postapoc": 10, + "price": "1 kUSD 250 USD", + "price_postapoc": "10 cent", "material": [ "paper" ], "symbol": "?", "color": "blue", @@ -732,8 +732,8 @@ "description": "This is a history book detailing the siege machines and field artillery of some ancient civilizations. It contains detailed diagrams that explain how such devices were assembled and maintained.", "weight": "600 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "symbol": "?", "color": "blue", "looks_like": "recipe_lab_elec", @@ -752,8 +752,8 @@ "description": "This school notebook contains an astounding amount of \"recipes\" of various cardboard utilities, ranging from the wholly impractical to completely impossible. Despite that, they're illustrated in a surprisingly thorough manner, to the point where you could possibly learn something from studying the chicken scratch and schematics in detail. The last page thanks a number of names, some of which you recognize from the refugee center. Your name covers half the page. At the bottom, it warns you not to let \"the sandman\" read it.", "weight": "600 g", "volume": "500 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", diff --git a/data/json/items/book/firstaid.json b/data/json/items/book/firstaid.json index 8dda5eddd8ef0..a7c067285daec 100644 --- a/data/json/items/book/firstaid.json +++ b/data/json/items/book/firstaid.json @@ -7,8 +7,8 @@ "description": "A thick textbook for paramedics describing advanced lifesaving procedures and field-expedient care methods.", "weight": "2063 g", "volume": "2 L", - "price": 9200, - "price_postapoc": 1500, + "price": "92 USD", + "price_postapoc": "15 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -29,8 +29,8 @@ "description": "An educational magazine for EMTs.", "weight": "60 g", "volume": "250 ml", - "price": 480, - "price_postapoc": 250, + "price": "4 USD 80 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -50,8 +50,8 @@ "description": "It's big and heavy, but full of great information about first aid.", "weight": "454 g", "volume": "1250 ml", - "price": 2500, - "price_postapoc": 1250, + "price": "25 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "ascii_picture": "manual_first_aid", "symbol": "?", @@ -73,8 +73,8 @@ "description": "This pocket-sized leather-bound guide to first aid combines a wealth of concise information with simple to follow instructions and easy to read illustrations.", "weight": "192 g", "volume": "250 ml", - "price": 4000, - "price_postapoc": 750, + "price": "40 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "leather" ], "symbol": "?", "color": "green", @@ -93,8 +93,8 @@ "description": "A hardbound book detailing advanced first aid techniques and field-expedient medical care.", "weight": "1360 g", "volume": "2 L", - "price": 8500, - "price_postapoc": 1250, + "price": "85 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -114,8 +114,8 @@ "description": "Illustrated how-to guide for your first aid kit.", "weight": "60 g", "volume": "250 ml", - "price": 480, - "price_postapoc": 50, + "price": "4 USD 80 cent", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "pocket_firstaid", @@ -133,8 +133,8 @@ "description": "This hefty volume contains all the legally mandated information relevant to physicians for writing prescriptions, generously supported by the efforts and contributions of major pharmaceutical companies. For the most part, it provides information identical to what is available on that of medication packaging inserts, and cannot match the completeness of digital pharmaceutical references like MediSoft. At least it doesn't need power to be used.", "weight": "2268 g", "volume": "2500 ml", - "price": 10000, - "price_postapoc": 2250, + "price": "100 USD", + "price_postapoc": "22 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_firstaid", @@ -152,8 +152,8 @@ "description": "This expansive text covers 'all domestic species and diseases in veterinary medicine worldwide'. Should you need information regarding zoonotic diseases, off-label use of medication for animals, common dysfunctions and diseases of animals, or any other veterinary reference info, this is your book. There are some interesting new chapters on animal cloning in this edition.", "weight": "1634 g", "volume": "2160 ml", - "price": 8000, - "price_postapoc": 750, + "price": "80 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_firstaid", @@ -170,8 +170,8 @@ "description": "This unassuming volume details the broad spectrum of chemical and biological toxins known to modern medicine. While the obvious focus of the book is the therapy of such poisonings, there are lengthy sections describing the structure and synthesis of some compounds of interest.", "weight": "3 kg", "volume": "3 L", - "price": 30000, - "price_postapoc": 5000, + "price": "300 USD", + "price_postapoc": "50 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_firstaid", diff --git a/data/json/items/book/gun.json b/data/json/items/book/gun.json index 8d5e199ea8796..68dc928c54057 100644 --- a/data/json/items/book/gun.json +++ b/data/json/items/book/gun.json @@ -39,8 +39,8 @@ ], "weight": "60 g", "volume": "250 ml", - "price": 480, - "price_postapoc": 500, + "price": "4 USD 80 cent", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "color": "pink", @@ -106,8 +106,8 @@ ], "weight": "462 g", "volume": "500 ml", - "price": 3800, - "price_postapoc": 1250, + "price": "38 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "green", @@ -124,8 +124,8 @@ "description": "This pocket-sized leather-bound guide to firearm safety combines a wealth of concise information with simple to follow instructions and easy to read illustrations.", "weight": "226 g", "volume": "250 ml", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "material": [ "paper", "leather" ], "symbol": "?", "color": "green", diff --git a/data/json/items/book/launcher.json b/data/json/items/book/launcher.json index 18bcf89266dae..14958b3f2013c 100644 --- a/data/json/items/book/launcher.json +++ b/data/json/items/book/launcher.json @@ -37,8 +37,8 @@ ], "weight": "90 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 1250, + "price": "4 USD 50 cent", + "price_postapoc": "12 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "pink", @@ -104,8 +104,8 @@ ], "weight": "650 g", "volume": "919 ml", - "price": 2000, - "price_postapoc": 2000, + "price": "20 USD", + "price_postapoc": "20 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "green", diff --git a/data/json/items/book/lockpick.json b/data/json/items/book/lockpick.json index ead3276b67d11..e1cb89dfaf603 100644 --- a/data/json/items/book/lockpick.json +++ b/data/json/items/book/lockpick.json @@ -32,8 +32,8 @@ ], "weight": "400 g", "volume": "500 ml", - "price": 100, - "price_postapoc": 5000, + "price": "1 USD", + "price_postapoc": "50 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "pocket_firstaid", diff --git a/data/json/items/book/maps.json b/data/json/items/book/maps.json index fb9297383f73c..c35c937ea2f57 100644 --- a/data/json/items/book/maps.json +++ b/data/json/items/book/maps.json @@ -10,8 +10,8 @@ "weight": "30 g", "volume": "250 ml", "flags": [ "PAPER_SHAPED" ], - "price": 1000, - "price_postapoc": 1000, + "price": "10 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "paper" ], "symbol": ";", diff --git a/data/json/items/book/martial.json b/data/json/items/book/martial.json index 344e759be1afd..caae4c5a4f2be 100644 --- a/data/json/items/book/martial.json +++ b/data/json/items/book/martial.json @@ -4,7 +4,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The Spirit of Aikido", "str_pl": "copies of The Spirit of Aikido" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Aikido.", "martial_art": "style_aikido" }, @@ -17,8 +17,8 @@ "str_pl": "copies of Las Nueve Reglas de la Montante", "//~": "Don't translate name, this book is in archaic Spanish with translations in the margins." }, - "price": 11000, - "price_postapoc": 3000, + "price": "110 USD", + "price_postapoc": "30 USD", "description": { "//~": "Spanish description should change to say that this is archaic text and should mention explanations of archaic words instead of translations.", "str": "Thankfully, someone has scrawled translations in the margins of this guide to Barbaran Montante. Judging by the notation, this greatsword and war hammer training manual is also a form of poem." @@ -30,7 +30,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Practical Pugilism", "str_pl": "copies of Practical Pugilism" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to boxing. Let's get ready to rough-up some ruffians!", "martial_art": "style_boxing" }, @@ -39,7 +39,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Capoeira 100", "str_pl": "copies of Capoeira 100" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Capoeira.", "martial_art": "style_capoeira" }, @@ -49,7 +49,7 @@ "type": "BOOK", "name": { "str": "The Centipede Lu Feng", "str_pl": "copies of The Centipede Lu Feng" }, "//": "Could be moved to Mythical Martial Arts mod after 0.G.", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Centipede Kung Fu.", "martial_art": "style_centipede" }, @@ -58,7 +58,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The Red Crane", "str_pl": "copies of The Red Crane" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Crane Kung Fu.", "martial_art": "style_crane" }, @@ -67,7 +67,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The Jade Dragon", "str_pl": "copies of The Jade Dragon" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Dragon Kung Fu.", "martial_art": "style_dragon" }, @@ -76,7 +76,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Practical Eskrima", "str_pl": "copies of Practical Eskrima" }, - "price_postapoc": 3000, + "price_postapoc": "30 USD", "description": "A complete guide to Eskrima.", "martial_art": "style_eskrima" }, @@ -85,7 +85,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The Modern Swordsman", "str_pl": "copies of The Modern Swordsman" }, - "price_postapoc": 3000, + "price_postapoc": "30 USD", "description": "A complete guide to Fencing.", "martial_art": "style_fencing" }, @@ -94,7 +94,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Kodokan Judo", "str_pl": "copies of Kodokan Judo" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Judo.", "martial_art": "style_judo" }, @@ -103,7 +103,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The Shōtōkan Karate Handbook", "str_pl": "copies of The Shōtōkan Karate Handbook" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Shōtōkan Karate.", "martial_art": "style_karate" }, @@ -112,7 +112,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Bōjutsu The Matsumoto System", "str_pl": "copies of Bōjutsu The Matsumoto System" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Bōjutsu.", "martial_art": "style_bojutsu" }, @@ -121,7 +121,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The Ultimate Guide to Kickboxing", "str_pl": "copies of Ultimate Guide to Kickboxing" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "The ultimate guide to learning and mastering kickboxing, from beginner to black belt.", "martial_art": "style_kickboxing" }, @@ -130,7 +130,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Complete Krav Maga", "str_pl": "copies of Complete Krav Maga" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Krav Maga.", "martial_art": "style_krav_maga" }, @@ -139,7 +139,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The Deaf Leopard", "str_pl": "copies of The Deaf Leopard" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Leopard Kung Fu.", "martial_art": "style_leopard" }, @@ -149,7 +149,7 @@ "type": "BOOK", "name": { "str": "The Lizard Kuo Chui", "str_pl": "copies of The Lizard Kuo Chui" }, "//": "Could be moved to Mythical Martial Arts mod after 0.G.", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Lizard Kung Fu.", "martial_art": "style_lizard" }, @@ -158,7 +158,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Ultimate Muay Thai", "str_pl": "copies of Ultimate Muay Thai" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Muay Thai.", "martial_art": "style_muay_thai" }, @@ -167,7 +167,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Essence of Ninjutsu", "str_pl": "copies of Essence of Ninjutsu" }, - "price_postapoc": 3000, + "price_postapoc": "30 USD", "description": "A complete guide to Ninjutsu.", "martial_art": "style_ninjutsu" }, @@ -176,7 +176,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The Book of Five Rings", "str_pl": "copies of The Book of Five Rings" }, - "price_postapoc": 3000, + "price_postapoc": "30 USD", "description": "A primer on Miyamoto Musashi's style of combat and philosophy, Niten Ichi-Ryu.", "martial_art": "style_niten" }, @@ -185,7 +185,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The Modern Pankratiast", "str_pl": "copies of The Modern Pankratiast" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Pankration.", "martial_art": "style_pankration" }, @@ -195,7 +195,7 @@ "type": "BOOK", "name": { "str": "The Scorpion Sun Chien", "str_pl": "copies of The Scorpion Sun Chien" }, "//": "Could be moved to Mythical Martial Arts mod after 0.G.", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Scorpion Kung Fu.", "martial_art": "style_scorpion" }, @@ -204,7 +204,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The Indonesian Warrior", "str_pl": "copies of The Indonesian Warrior" }, - "price_postapoc": 3000, + "price_postapoc": "30 USD", "description": "A complete guide to Pencak Silat.", "martial_art": "style_silat" }, @@ -213,7 +213,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The Black Snake", "str_pl": "copies of The Black Snake" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Snake Kung Fu.", "martial_art": "style_snake" }, @@ -222,7 +222,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Official Taekwondo Training Manual", "str_pl": "copies of Official Taekwondo Training Manual" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Taekwondo.", "martial_art": "style_taekwondo" }, @@ -231,7 +231,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Becoming One with the Tao", "str_pl": "copies of Becoming One with the Tao" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to T'ai Chi Ch'uan.", "martial_art": "style_tai_chi" }, @@ -240,7 +240,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The White Tiger", "str_pl": "copies of The White Tiger" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Tiger Kung Fu.", "martial_art": "style_tiger" }, @@ -250,7 +250,7 @@ "type": "BOOK", "name": { "str": "The Toad Lo Mang", "str_pl": "copies of The Toad Lo Mang" }, "//": "Could be moved to Mythical Martial Arts mod after 0.G.", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Toad Kung Fu.", "martial_art": "style_toad" }, @@ -260,7 +260,7 @@ "type": "BOOK", "name": { "str": "The Viper Wei Pai", "str_pl": "copies of The Viper Wei Pai" }, "//": "Could be moved to Mythical Martial Arts mod after 0.G.", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Viper Kung Fu.", "martial_art": "style_venom_snake" }, @@ -269,7 +269,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Zui Quan and You", "str_pl": "copies of Zui Quan and You" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Zui Quan.", "martial_art": "style_zui_quan" }, @@ -278,7 +278,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "The Way of the Spear", "str_pl": "copies of The Way of the Spear" }, - "price_postapoc": 3000, + "price_postapoc": "30 USD", "description": "A complete guide to Sōjutsu.", "martial_art": "style_sojutsu" }, @@ -287,7 +287,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Beautiful Springtime", "str_pl": "copies of Beautiful Springtime" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "A complete guide to Wing Chun Kung-fu.", "martial_art": "style_wingchun" }, @@ -296,7 +296,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "ctxt": "book", "str": "Fior Di Battaglia", "str_pl": "copies of Fior Di Battaglia" }, - "price_postapoc": 3000, + "price_postapoc": "30 USD", "description": "A completely translated medieval guide teaching various techniques with polearms. There is a chapter about the many variations of common polearms… there are even pictures!", "martial_art": "style_medievalpole" }, @@ -305,7 +305,7 @@ "copy-from": "book_martial", "type": "BOOK", "name": { "str": "Historic European Swordfighting", "str_pl": "copies of Historic European Swordfighting" }, - "price_postapoc": 3000, + "price_postapoc": "30 USD", "description": "A complete guide to medieval swordsmanship. Compares the German and Italian traditions for a multitude of swords, in and out of armor, with and without shield.", "martial_art": "style_swordsmanship" } diff --git a/data/json/items/book/mechanics.json b/data/json/items/book/mechanics.json index a018c3c759a60..a909b20caf48f 100644 --- a/data/json/items/book/mechanics.json +++ b/data/json/items/book/mechanics.json @@ -7,8 +7,8 @@ "description": "A college-level textbook that details the operation, maintenance, and repair of internal combustion engines.", "weight": "1587 g", "volume": "1500 ml", - "price": 5950, - "price_postapoc": 2250, + "price": "59 USD 50 cent", + "price_postapoc": "22 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "blue", @@ -37,7 +37,7 @@ "type": "BOOK", "category": "manuals", "name": { "str": "army improvised field repairs manual" }, - "price_postapoc": 500, + "price_postapoc": "5 USD", "description": "A compact manual with faded print detailing a number of improvised field repairs that can be made to vehicles.", "skill": "mechanics" }, @@ -49,8 +49,8 @@ "description": "A magazine about mechanical innovations. Full of entertaining articles and advertisements for esoteric gadgets.", "weight": "70 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 500, + "price": "4 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "color": "pink", @@ -69,8 +69,8 @@ "description": "Instructions and blueprints for dozens of projects of increasing complexity for anyone new to the maker community.", "weight": "70 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 500, + "price": "4 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "^", "looks_like": "textbook_botany", @@ -89,8 +89,8 @@ "description": "Instructions and blueprints for dozens of projects of increasing complexity. An introduction to toy robots.", "weight": "70 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 500, + "price": "4 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "^", "looks_like": "textbook_botany", @@ -109,8 +109,8 @@ "description": "Instructions and blueprints for building toy Stirling engines. An introduction to engine principles.", "weight": "70 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 500, + "price": "4 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "^", "looks_like": "textbook_botany", @@ -129,8 +129,8 @@ "description": "An advanced mechanics manual, covering all sorts of topics.", "weight": "454 g", "volume": "750 ml", - "price": 5500, - "price_postapoc": 500, + "price": "55 USD", + "price_postapoc": "5 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_botany", @@ -145,7 +145,7 @@ "type": "BOOK", "copy-from": "recipe_lab_cvd", "name": { "str": "lab journal-Curie", "str_pl": "lab journals-Curie" }, - "price_postapoc": 2000, + "price_postapoc": "20 USD", "description": "This lab notebook is filled with the collective discoveries and refinements of a research team dedicated to nuclear energy. You don't think you're ready to start a second Cataclysm, but the general information provided might be useful…", "skill": "mechanics", "required_level": 6 @@ -158,8 +158,8 @@ "description": "By learning the fundamentals of chassis building and suspension design you will gain the critical knowledge needed to hot rod properly.", "weight": "500 g", "volume": "500 ml", - "price": 3100, - "price_postapoc": 750, + "price": "31 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "textbook_mechanics", @@ -180,8 +180,8 @@ "description": "An advanced guide on mechanics and welding, covering topics like \"Grinding off rust\" and \"Making cursive E's\".", "weight": "1587 g", "volume": "1500 ml", - "price": 4950, - "price_postapoc": 500, + "price": "49 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_botany", diff --git a/data/json/items/book/melee.json b/data/json/items/book/melee.json index dcaf4a4b9ae68..74ee8dbc5898d 100644 --- a/data/json/items/book/melee.json +++ b/data/json/items/book/melee.json @@ -38,8 +38,8 @@ ], "weight": "70 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 750, + "price": "4 USD 50 cent", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "mag_glam", @@ -83,8 +83,8 @@ ], "weight": "564 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 1250, + "price": "20 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "manual_gun", diff --git a/data/json/items/book/misc.json b/data/json/items/book/misc.json index 669f39c5cc8a6..e594404ce4fd2 100644 --- a/data/json/items/book/misc.json +++ b/data/json/items/book/misc.json @@ -6,8 +6,8 @@ "description": "While this seems like it would be very useful in this situation, the sheer amount of misinformation present makes it practically useless.", "weight": "227 g", "volume": "1 L", - "price": 1290, - "price_postapoc": 50, + "price": "12 USD 90 cent", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "story_book", @@ -25,8 +25,8 @@ "description": "A full flight log for a military aircraft. Nothing of interest stands out.", "weight": "566 g", "volume": "1250 ml", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "record_patient", @@ -43,8 +43,8 @@ "description": "A short paper of the economic viability of constructing an agricultural outpost.", "weight": "1 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -60,8 +60,8 @@ "description": "This binder details the scheduled maintenance for several plumbing systems throughout the facility.", "weight": "400 g", "volume": "750 ml", - "price": 400, - "price_postapoc": 50, + "price": "4 USD", + "price_postapoc": "50 cent", "material": [ "paper", "plastic" ], "symbol": "?", "looks_like": "record_patient", @@ -79,8 +79,8 @@ "description": "A collection of essays by various authors from around the world, including works by Churchill, Mailer, Eco, and Voltaire.", "weight": "700 g", "volume": "750 ml", - "price": 1250, - "price_postapoc": 50, + "price": "12 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "story_book", @@ -97,8 +97,8 @@ "description": "Inscribed on the cover in large, friendly letters, is the message \"Don't Panic\".", "weight": "1178 g", "volume": "1 L", - "price": 88200, - "price_postapoc": 50, + "price": "882 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "story_book", @@ -114,8 +114,8 @@ "description": "A super-hero comic.", "weight": "60 g", "volume": "250 ml", - "price": 300, - "price_postapoc": 50, + "price": "3 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -130,8 +130,8 @@ "description": "Reviews of recently released computer games and previews of upcoming titles.", "weight": "60 g", "volume": "250 ml", - "price": 300, - "price_postapoc": 50, + "price": "3 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -162,8 +162,8 @@ "description": "You can read it for the articles. Or not.", "weight": "60 g", "volume": "250 ml", - "price": 400, - "price_postapoc": 250, + "price": "4 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -179,8 +179,8 @@ "description": "A notepad with a number of frequencies scribbled on it.", "weight": "1 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "pocket_firstaid", @@ -196,8 +196,8 @@ "description": "A newsweekly covering regional events. There is an article on the winter's snowstorms and several letters to the editor concerning the community response.", "weight": "80 g", "volume": "250 ml", - "price": 350, - "price_postapoc": 50, + "price": "3 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -212,8 +212,8 @@ "name": { "str": "adventure novel" }, "description": "The stirring tale of a race against time, in search of a lost city located in the heart of the African continent.", "copy-from": "book_fict_soft_tpl", - "price": 850, - "price_postapoc": 50, + "price": "8 USD 50 cent", + "price_postapoc": "50 cent", "time": "20 m", "fun": 3 }, @@ -225,7 +225,7 @@ "copy-from": "book_fict_soft_tpl", "weight": "244 g", "volume": "500 ml", - "price": 650, + "price": "6 USD 50 cent", "time": "20 m" }, { @@ -447,7 +447,7 @@ "weight": "1090 g", "volume": "1367 ml", "longest_side": "22 cm", - "price": 3499, + "price": "34 USD 99 cent", "time": "20 m", "copy-from": "book_fict_hard_tpl", "//bashing": "3 (2+1)", @@ -562,7 +562,7 @@ "description": "This lengthy paperback novel describes the ocean exploits of Captain Gosnold. The British consider him an outlaw, but in America he is a patriot.", "copy-from": "book_fict_soft_tpl", "time": "12 m", - "relative": { "weight": "186 g", "price": 250, "chapters": 8 } + "relative": { "weight": "186 g", "price": "2 USD 50 cent", "chapters": 8 } }, { "id": "book_fict_soft_swash_buccaneer", @@ -601,7 +601,7 @@ "description": "A thrilling narrative of survival in a prisoner of war camp during the Second World War, filled with riveting subplots about rat farming and dysentery.", "copy-from": "book_fict_soft_tpl", "weight": "686 g", - "price_postapoc": 50, + "price_postapoc": "50 cent", "intelligence": 7, "time": "20 m", "chapters": 28, @@ -633,7 +633,7 @@ "name": { "str": "Atwixt a Brace of Cacti", "str_pl": "copies of Atwixt a Brace of Cacti" }, "description": "A grizzled clodhopper interviews a mess of rangehands, flummoxing longhorns and tenderfoot alike in a flusteration of jawing.", "copy-from": "paperback_western_em", - "relative": { "price": 400, "intelligence": 4, "fun": 1 } + "relative": { "price": "4 USD", "intelligence": 4, "fun": 1 } }, { "id": "book_fict_soft_west_bart", @@ -688,8 +688,8 @@ "description": "This hefty volume contains the telephone numbers of individuals, businesses, and utilities. Pretty useless during the apocalypse and all.", "weight": "854 g", "volume": "2500 ml", - "price": 800, - "price_postapoc": 50, + "price": "8 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "textbook_firstaid", @@ -707,8 +707,8 @@ "description": "A leather album full of photos of somebody's family. You don't know any of the people in them, but seeing these pictures still makes you think of happier times.", "weight": "180 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "material": [ "paper", "leather" ], "symbol": "?", "looks_like": "record_patient", @@ -725,8 +725,8 @@ "description": "A collection of plays by various authors from around the world, including scripts by Wilde, Beckett, Checkov, and Shakespeare.", "weight": "700 g", "volume": "750 ml", - "price": 1150, - "price_postapoc": 50, + "price": "11 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "story_book", @@ -743,8 +743,8 @@ "description": "A collection of poetry by various authors from around the world, including writings by Dickinson, Goethe, Thoreau, and Yeats.", "weight": "400 g", "volume": "500 ml", - "price": 1050, - "price_postapoc": 50, + "price": "10 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "story_book", @@ -761,8 +761,8 @@ "description": "A small book filled with journal entries in Latin. You can read Latin, right?", "weight": "340 g", "volume": "750 ml", - "price": 1500, - "price_postapoc": 50, + "price": "15 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "pocket_firstaid", @@ -780,8 +780,8 @@ "description": "If you knew what to look for, something might stand out…", "weight": "566 g", "volume": "1250 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "material": [ "paper", "plastic" ], "symbol": "?", "looks_like": "record_patient", @@ -798,8 +798,8 @@ "description": "A massive stack of medical records that contain every gory detail.", "weight": "680 g", "volume": "1500 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "color": "light_green", @@ -815,8 +815,8 @@ "description": "Old weather records are about as interesting as a rock.", "weight": "454 g", "volume": "1750 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "record_patient", @@ -833,8 +833,8 @@ "description": "This humongous volume contains a vast collection of short stories by different authors, spanning a wide variety of topics and genres.", "weight": "1200 g", "volume": "1 L", - "price": 1400, - "price_postapoc": 50, + "price": "14 USD", + "price_postapoc": "50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "radio_book", @@ -851,8 +851,8 @@ "description": "An entertaining collection of early American folklore, featuring tales of larger than life individuals and their amazing adventures.", "weight": "360 g", "volume": "750 ml", - "price": 1050, - "price_postapoc": 50, + "price": "10 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "story_book", @@ -869,8 +869,8 @@ "description": "A small book detailing 'visions' a prisoner had on death row.", "weight": "227 g", "volume": "750 ml", - "price": 2900, - "price_postapoc": 50, + "price": "29 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "story_book", @@ -986,8 +986,8 @@ ], "weight": "350 g", "volume": "750 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "looks_like": "tall_tales", "color": "light_blue", @@ -1081,8 +1081,8 @@ ], "weight": "400 g", "volume": "750 ml", - "price": 4550, - "price_postapoc": 50, + "price": "45 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "paper", "cardboard" ], "looks_like": "tall_tales", "color": "light_blue", @@ -1118,7 +1118,7 @@ "name": { "str": "Glimpses of Solomon in Yellow", "str_pl": "copies of Solomon in Yellow" }, "description": "This paperback is titled \"Glimpses of Solomon in Yellow; The Initiation Rites of the Starry Wisdom Covenant, by Dr. Enoch Craven.\" It describes not just the investiture of new adherents, but the history and beliefs of the Church of Starry Wisdom. Someone has defaced the sparse citations section by scrawling \"PUPPETS OF ROME!\" over its few pages. The book does not provide any biography for Dr. Craven, let alone academic credentials.", "copy-from": "paperback_occult", - "relative": { "weight": "186 g", "price": 250, "chapters": 10 } + "relative": { "weight": "186 g", "price": "2 USD 50 cent", "chapters": 10 } }, { "id": "necronomicon", @@ -1130,8 +1130,8 @@ "volume": "1250 ml", "time": "10 m", "chapters": 24, - "price": 4550, - "price_postapoc": 50, + "price": "45 USD 50 cent", + "price_postapoc": "50 cent", "symbol": "?", "color": "light_gray" }, @@ -1461,8 +1461,8 @@ "color": "white", "name": { "str": "ruined book" }, "description": "A ruined book. Someone has thoroughly ruined this book by ripping pages out and covering the remainder in… is that paint?", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID" ], "weight": "1587 g", @@ -1476,8 +1476,8 @@ "color": "white", "name": { "str_sp": "pieces of books" }, "description": "Scraps of paper that used to be part of a book. Completely useless now.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID" ], "weight": "120 g", diff --git a/data/json/items/book/misc_philosophy.json b/data/json/items/book/misc_philosophy.json index 897ea10f07d6d..ad1ece7f93788 100644 --- a/data/json/items/book/misc_philosophy.json +++ b/data/json/items/book/misc_philosophy.json @@ -161,7 +161,7 @@ "weight": "834 g", "volume": "1249 ml", "longest_side": "24 cm", - "price": 4895, + "price": "48 USD 95 cent", "copy-from": "book_nonf_hard_phil_tpl" }, { @@ -173,7 +173,7 @@ "weight": "1139 g", "volume": "1625 ml", "longest_side": "24 cm", - "price": 6499, + "price": "64 USD 99 cent", "chapters": 48, "copy-from": "book_nonf_hard_phil_tpl" }, @@ -186,7 +186,7 @@ "weight": "800 g", "volume": "1425 ml", "longest_side": "24 cm", - "price": 8391, + "price": "83 USD 91 cent", "copy-from": "book_nonf_hard_phil_tpl", "relative": { "intelligence": 1, "fun": -2 } }, @@ -199,8 +199,8 @@ "weight": "794 g", "volume": "1 L", "longest_side": "21 cm", - "price": 3400, - "price_postapoc": 50, + "price": "34 USD", + "price_postapoc": "50 cent", "copy-from": "book_nonf_soft_phil_tpl" } ] diff --git a/data/json/items/book/misc_scifi.json b/data/json/items/book/misc_scifi.json index 9bd59bded1086..5026f33bd79b9 100644 --- a/data/json/items/book/misc_scifi.json +++ b/data/json/items/book/misc_scifi.json @@ -142,7 +142,7 @@ "description": "This is a dog-eared copy of \"Dune\" by Frank Herbert. It has sand between some of its pages. Weird.", "//isbn13": 9780450011849, "//": "this variant of the book Dune is intentional", - "price": 1744, + "price": "17 USD 44 cent", "copy-from": "book_fict_soft_scifi_tpl" }, { @@ -152,7 +152,7 @@ "description": "This is a sturdy copy of \"Dune\" by Frank Herbert. It is a fairly new reprint with the words \"SOON TO BE A MAJOR MOTION PICTURE\" splashed across its dust jacket.", "//isbn13": 9780593099322, "//": "this variant of the book Dune is intentional", - "price": 3299, + "price": "32 USD 99 cent", "copy-from": "book_fict_hard_scifi_tpl" }, { @@ -161,7 +161,7 @@ "name": { "str": "Parable of the Talents", "str_pl": "copies of Parable of the Talents" }, "description": "This is a sturdy copy of \"Parable of the Talents.\". It is Octavia Butler's sequel to her book \"Parable of the Sower.\"", "//isbn13": 9780613914314, - "price": 2575, + "price": "25 USD 75 cent", "weight": "517 g", "volume": "963 ml", "longest_side": "21 cm", @@ -176,7 +176,7 @@ "description": "This is a signed hardcover copy of the Hugo award winning \"The Fifth Season\" by N. K. Jemisin. It smells faintly of dirt.", "//isbn13": 9780356511931, "//note": "if we make a rare or collectors' item library group, this should go there too", - "price": 19999, + "price": "199 USD 99 cent", "copy-from": "book_fict_hard_scifi_tpl" }, { @@ -186,7 +186,7 @@ "description": "This hardback book is titled \"The Annotated We: A New Translation of Yevgeny Zamyatin's Novel.\"\n\nIt is Vladimir Wozniuk's 2015 translation of \"We,\" originally published in 1924 and generally seen as the first modern dystopian novel. The commentary examines the profusive allusions and highlights the poetic nature of Zamyatin's language.", "//isbn13": 9781611461787, "//": "this variant is intentional", - "price": 8799, + "price": "87 USD 99 cent", "weight": "458 g", "volume": "756 ml", "longest_side": "23 cm", @@ -203,7 +203,7 @@ "description": "A seminal work of dystopian fiction, Yevgeny Zamyatin's \"We\" was first published in 1924 but suppressed by the Soviet Union until 1988.\n\nThis mass-market 1993 edition you've found was translated from the Russian by Clarence Brown and includes a short introduction. The slightly worn cover features a surrealist photo of a person gazing backward suspiciously.", "//isbn13": 9780140185850, "//": "this variant is intentional", - "price": 1399, + "price": "13 USD 99 cent", "weight": "182 g", "volume": "289 ml", "longest_side": "20 cm", @@ -218,7 +218,7 @@ "name": { "str": "The Cyberiad", "str_pl": "copies of The Cyberiad" }, "description": "This 350 page paperback presents the exploits and robotic rivalries of Trurl and Klapaucius. Originally written in Polish by Stanisław Lem, it has been masterfully translated into English by Michael Kandel.", "//isbn13": 9780241467992, - "price": 1069, + "price": "10 USD 69 cent", "copy-from": "book_fict_soft_scifi_tpl" }, { diff --git a/data/json/items/book/misc_sports.json b/data/json/items/book/misc_sports.json index 82852c41f0a0a..fe225cf061eb6 100644 --- a/data/json/items/book/misc_sports.json +++ b/data/json/items/book/misc_sports.json @@ -39,7 +39,7 @@ "weight": "227 g", "volume": "535 ml", "longest_side": "20 cm", - "price": 1799, + "price": "17 USD 99 cent", "copy-from": "book_fict_soft_tpl" }, { @@ -72,7 +72,7 @@ "weight": "363 g", "volume": "640 ml", "longest_side": "20 cm", - "price": 1899, + "price": "18 USD 99 cent", "copy-from": "book_fict_hard_tpl" }, { @@ -84,7 +84,7 @@ "weight": "245 g", "volume": "679 ml", "longest_side": "21 cm", - "price": 1299, + "price": "12 USD 99 cent", "copy-from": "book_nonf_soft_tpl", "relative": { "fun": 1, "intelligence": 1 } }, @@ -97,7 +97,7 @@ "weight": "408 g", "volume": "654 ml", "longest_side": "20 cm", - "price": 1399, + "price": "13 USD 99 cent", "copy-from": "book_nonf_soft_tpl", "relative": { "fun": 1 } }, @@ -123,7 +123,7 @@ "weight": "272 g", "volume": "400 ml", "longest_side": "22 cm", - "price": 3999, + "price": "39 USD 99 cent", "copy-from": "book_nonf_hard_tpl", "relative": { "fun": -1, "intelligence": 1 } }, @@ -136,7 +136,7 @@ "weight": "1589 g", "volume": "1660 ml", "longest_side": "27 cm", - "price": 2999, + "price": "29 USD 99 cent", "chapters": 40, "time": "8 m", "copy-from": "book_nonf_hard_tpl", @@ -152,7 +152,7 @@ "weight": "167 g", "volume": "289 ml", "longest_side": "18 cm", - "price": 1299, + "price": "12 USD 99 cent", "copy-from": "book_fict_hard_tpl", "relative": { "fun": 1, "intelligence": 2, "chapters": -10 } }, @@ -165,7 +165,7 @@ "weight": "818 g", "volume": "1114 ml", "longest_side": "23 cm", - "price": 2699, + "price": "26 USD 99 cent", "copy-from": "book_nonf_hard_tpl", "relative": { "chapters": 8 } } diff --git a/data/json/items/book/pistol.json b/data/json/items/book/pistol.json index 115a67c369b0a..700029d631fd6 100644 --- a/data/json/items/book/pistol.json +++ b/data/json/items/book/pistol.json @@ -46,8 +46,8 @@ ], "weight": "90 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 750, + "price": "4 USD 50 cent", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "looks_like": "mag_glam", "symbol": "?", @@ -133,8 +133,8 @@ ], "weight": "440 g", "volume": "500 ml", - "price": 2200, - "price_postapoc": 1250, + "price": "22 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "looks_like": "book_archery", "symbol": "?", diff --git a/data/json/items/book/rifle.json b/data/json/items/book/rifle.json index 15a68fd0f29e8..548b2f47569b7 100644 --- a/data/json/items/book/rifle.json +++ b/data/json/items/book/rifle.json @@ -29,8 +29,8 @@ ], "weight": "100 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 750, + "price": "4 USD 50 cent", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_guns", @@ -150,8 +150,8 @@ ], "weight": "454 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 1250, + "price": "20 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "plastic" ], "symbol": "?", "looks_like": "mag_guns", @@ -169,8 +169,8 @@ "description": "This is a small booklet, containing several diagrams and clearly worded instructions for assisting one in assembling, installing, and using their newly purchased weapon conversion kit. The flyer's rear is covered in neatly printed rows of advertisements, displaying other products by the same manufacturer. All in all, it, strangely enough, brings to mind nostalgic images of the instructions for assembling Legos—a very angry, explosive Lego construct that goes boom.", "weight": "25 g", "volume": "100 ml", - "price": 150, - "price_postapoc": 350, + "price": "1 USD 50 cent", + "price_postapoc": "3 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_guns", diff --git a/data/json/items/book/shotgun.json b/data/json/items/book/shotgun.json index 83478707d90c3..5e21220423d2c 100644 --- a/data/json/items/book/shotgun.json +++ b/data/json/items/book/shotgun.json @@ -52,8 +52,8 @@ ], "weight": "90 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 750, + "price": "4 USD 50 cent", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_guns", @@ -132,8 +132,8 @@ ], "weight": "400 g", "volume": "500 ml", - "price": 2100, - "price_postapoc": 1250, + "price": "21 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "manual_gun", diff --git a/data/json/items/book/smg.json b/data/json/items/book/smg.json index d558437956f35..c55e91db63a95 100644 --- a/data/json/items/book/smg.json +++ b/data/json/items/book/smg.json @@ -25,8 +25,8 @@ ], "weight": "90 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 750, + "price": "4 USD 50 cent", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_guns", @@ -103,8 +103,8 @@ ], "weight": "362 g", "volume": "500 ml", - "price": 2100, - "price_postapoc": 1250, + "price": "21 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "manual_gun", diff --git a/data/json/items/book/speech.json b/data/json/items/book/speech.json index 04dd3281a5083..f27aa52ea29e1 100644 --- a/data/json/items/book/speech.json +++ b/data/json/items/book/speech.json @@ -7,8 +7,8 @@ "description": "Weekly news about a bunch of famous people who're all (un)dead now.", "weight": "60 g", "volume": "250 ml", - "price": 400, - "price_postapoc": 50, + "price": "4 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -27,8 +27,8 @@ "description": "Full of useful tips for showing confidence in your speech.", "weight": "454 g", "volume": "750 ml", - "price": 1600, - "price_postapoc": 250, + "price": "16 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "manual_gun", @@ -46,8 +46,8 @@ "description": "A hardbound book devoted to being an effective and persuasive speaker.", "weight": "1120 g", "volume": "2 L", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_firstaid", @@ -67,8 +67,8 @@ "description": "A thick, hardcover volume with everything needed to weave legendary stories. It's full of information, but finding the things you're looking for can be a chore.", "weight": "2267 g", "volume": "2500 ml", - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "//": "Have you held one of these things? Bastards have some real weight behind 'em", "material": [ "paper", "cardboard" ], "symbol": "?", @@ -88,8 +88,8 @@ "description": "This lightweight book proclaims itself to be \"the ONLY gold star interview guide for lawyers interviewing in any type of job interview.\" It was supposed to help new lawyers find work.", "weight": "360 g", "volume": "528 ml", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "manual_gun", diff --git a/data/json/items/book/spiritual.json b/data/json/items/book/spiritual.json index 5fdbe75f62f82..45f6c5aea5edf 100644 --- a/data/json/items/book/spiritual.json +++ b/data/json/items/book/spiritual.json @@ -4,8 +4,8 @@ "type": "BOOK", "name": { "str": "holybook abstract" }, "description": "theoretically this isn't a book at all", - "price": 550, - "price_postapoc": 550, + "price": "5 USD 50 cent", + "price_postapoc": "5 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "story_book", @@ -1111,8 +1111,8 @@ "description": "A collection of essays, observations, and rituals published by Anton LaVey in 1969.", "weight": "130 g", "volume": "250 ml", - "price": 550, - "price_postapoc": 50, + "price": "5 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "story_book", @@ -1156,8 +1156,8 @@ "description": "This book is the canonical text of Scientology. Written by a science fiction author, it contains self-improvement techniques and musings on psychology called Dianetics.", "weight": "486 g", "volume": "1 L", - "price": 550, - "price_postapoc": 550, + "price": "5 USD 50 cent", + "price_postapoc": "5 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "story_book", @@ -1916,8 +1916,8 @@ "description": "The five books of Moses, written on animal skin by a trained scribe in accordance with the laws and customs of traditional Jewish calligraphy and bound onto wooden rollers. Once very expensive, it would now be beyond price, if there are any Jewish communities left to use it.", "weight": "12000 g", "volume": "24 L", - "price": 4000000, - "price_postapoc": 200, + "price": "40 kUSD", + "price_postapoc": "2 USD", "longest_side": "48 cm", "material": [ "leather", "wood" ], "copy-from": "holybook_abstract" diff --git a/data/json/items/book/stabbing.json b/data/json/items/book/stabbing.json index a8e0a7d116e27..c716bfac22b49 100644 --- a/data/json/items/book/stabbing.json +++ b/data/json/items/book/stabbing.json @@ -50,8 +50,8 @@ ], "weight": "80 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 750, + "price": "4 USD 50 cent", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -116,8 +116,8 @@ ], "weight": "454 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 1250, + "price": "20 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "plastic" ], "symbol": "?", "looks_like": "manual_gun", @@ -189,8 +189,8 @@ ], "weight": "454 g", "volume": "500 ml", - "price": 5200, - "price_postapoc": 1250, + "price": "52 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "manual_gun", diff --git a/data/json/items/book/survival.json b/data/json/items/book/survival.json index 96619dc37c5e2..31d881436f5bf 100644 --- a/data/json/items/book/survival.json +++ b/data/json/items/book/survival.json @@ -7,8 +7,8 @@ "description": "A wordy and intricate guide to wilderness and urban survival in a worst-case scenario. While filled with loads of useful information, the madman who wrote this was a terrible writer, and gleaning knowledge from the rants is a chore.", "weight": "1920 g", "volume": "2 L", - "price": 920, - "price_postapoc": 3750, + "price": "9 USD 20 cent", + "price_postapoc": "37 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "manual_gun", @@ -29,8 +29,8 @@ "description": "A colorful digest devoted to backpacking and wilderness photography. The photos are beautiful, though the terminology in the sections on survivalcraft assume some proficiency.", "weight": "440 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 250, + "price": "4 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "textbook_fireman", @@ -54,8 +54,8 @@ "description": "A full-size glossy men's magazine. There's a brief article about hiking and a list of simple wilderness survival tips somewhere in between the photos of bikini-clad women and the gadget advertisements.", "weight": "180 g", "volume": "500 ml", - "price": 450, - "price_postapoc": 50, + "price": "4 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -74,8 +74,8 @@ "description": "A glossy magazine about surviving and hunting in the wilderness. There's an exciting article about a bear attack in the back pages.", "weight": "80 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 250, + "price": "4 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -94,8 +94,8 @@ "description": "A guide detailing the basics of woodsmanship and outdoor survival.", "weight": "454 g", "volume": "750 ml", - "price": 2900, - "price_postapoc": 750, + "price": "29 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "manual_archery", @@ -117,8 +117,8 @@ "description": "This pocket-sized leather-bound survival guide combines a wealth of concise information with simple to follow instructions and easy to read illustrations.", "weight": "212 g", "volume": "250 ml", - "price": 4000, - "price_postapoc": 750, + "price": "40 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "leather" ], "symbol": "?", "looks_like": "mag_gaming", @@ -141,8 +141,8 @@ "description": "An amusing historical novel filled with detailed descriptions of surviving in the wild, potentially containing great insights for an experienced outdoorsman.", "weight": "1920 g", "volume": "2 L", - "price": 920, - "price_postapoc": 1250, + "price": "9 USD 20 cent", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "manual_dodge", @@ -167,8 +167,8 @@ "description": "A thick soft-cover book filled with vital information about surviving in the wild, aimed at the experienced backpacker.", "weight": "910 g", "volume": "2 L", - "price": 6000, - "price_postapoc": 1750, + "price": "60 USD", + "price_postapoc": "17 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "textbook_firstaid", @@ -188,8 +188,8 @@ "description": "A college-level textbook about plants of all shapes and sizes. Covers a wide range of subjects, from horticulture to the identification of tropical plants. As such, it is of limited practical use in your current situation.", "weight": "1200 g", "volume": "2700 ml", - "price": 6000, - "price_postapoc": 1250, + "price": "60 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_firstaid", @@ -209,8 +209,8 @@ "material": [ "paper" ], "weight": "2200 g", "volume": "2680 ml", - "price": 10000, - "price_postapoc": 1250, + "price": "100 USD", + "price_postapoc": "12 USD 50 cent", "color": "red", "symbol": "?", "looks_like": "textbook_firstaid", @@ -229,8 +229,8 @@ "description": "A leather-bound manuscript, it features native herbal remedies with hand-colored illustrations of each plant.", "weight": "400 g", "volume": "1250 ml", - "price": 50000, - "price_postapoc": 1500, + "price": "500 USD", + "price_postapoc": "15 USD", "material": [ "paper", "leather" ], "symbol": "?", "looks_like": "scots_cookbook", diff --git a/data/json/items/book/swimming.json b/data/json/items/book/swimming.json index 79f4ca601af2d..276c8b13f7d8a 100644 --- a/data/json/items/book/swimming.json +++ b/data/json/items/book/swimming.json @@ -39,8 +39,8 @@ ], "weight": "60 g", "volume": "250 ml", - "price": 460, - "price_postapoc": 250, + "price": "4 USD 60 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -126,8 +126,8 @@ ], "weight": "400 g", "volume": "500 ml", - "price": 2200, - "price_postapoc": 750, + "price": "22 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "plastic" ], "symbol": "?", "looks_like": "manual_smg", diff --git a/data/json/items/book/tailor.json b/data/json/items/book/tailor.json index d4d770ce7cabc..2f5d2b9b35148 100644 --- a/data/json/items/book/tailor.json +++ b/data/json/items/book/tailor.json @@ -19,8 +19,8 @@ "description": "A full-size glossy women's magazine. There are a few simple patterns and basic sewing tips somewhere in between the fashion photos and the makeup advertisements.", "weight": "180 g", "volume": "500 ml", - "price": 450, - "price_postapoc": 250, + "price": "4 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -39,8 +39,8 @@ "description": "A well presented monthly magazine all about knitting, crocheting, and needlepoint. Filled with ideas and project patterns.", "weight": "75 g", "volume": "250 ml", - "price": 400, - "price_postapoc": 500, + "price": "4 USD", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -63,8 +63,8 @@ "description": "A colorful book about tailoring.", "weight": "454 g", "volume": "750 ml", - "price": 1900, - "price_postapoc": 750, + "price": "19 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "manual_driving", @@ -86,8 +86,8 @@ "description": "A leather bound portfolio that once belonged to a clothing designer. Filled with sketches and notes, a skilled tailor could learn a lot from this volume.", "weight": "2063 g", "volume": "2 L", - "price": 9200, - "price_postapoc": 1000, + "price": "92 USD", + "price_postapoc": "10 USD", "material": [ "paper", "leather" ], "symbol": "?", "looks_like": "isherwood_herbal_remedies", @@ -108,8 +108,8 @@ "description": "An illustrated textbook on the crafting of Japanese traditional garb.", "weight": "2400 g", "volume": "1500 ml", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "material": [ "paper", "leather" ], "symbol": "?", "looks_like": "glassblowing_book", @@ -129,8 +129,8 @@ "description": "An educational book detailing the uses of fake fur, as well as its benefits and disadvantages. The prose is rather passionate, and a disclaimer on the cover proudly states that the book is printed and distributed by the Gryphon Animal Rights Organization.", "weight": "1200 g", "volume": "1 L", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "glassblowing_book", @@ -152,8 +152,8 @@ "description": "A massive, hardbound book full of a wealth of information for the professional clothing designer.", "weight": "2600 g", "volume": "2 L", - "price": 6000, - "price_postapoc": 1500, + "price": "60 USD", + "price_postapoc": "15 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_firstaid", @@ -177,8 +177,8 @@ "description": "A translated Gaelic book from Scotland. While boring to read due to its technical tone, it provides insights into Scottish culture and information about tailoring.", "weight": "2600 g", "volume": "2 L", - "price": 3000, - "price_postapoc": 550, + "price": "30 USD", + "price_postapoc": "5 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "textbook_firstaid", @@ -199,8 +199,8 @@ "description": "A large, leatherbound book containing a number of leather and rubber recipes for the fashionable dieselpunk.", "weight": "2600 g", "volume": "2 L", - "price": 6000, - "price_postapoc": 1500, + "price": "60 USD", + "price_postapoc": "15 USD", "material": [ "paper", "cardboard", "leather" ], "symbol": "?", "looks_like": "textbook_firstaid", @@ -223,8 +223,8 @@ "category": "manuals", "weight": "100 g", "volume": "200 ml", - "price": 6000, - "price_postapoc": 6000, + "price": "60 USD", + "price_postapoc": "60 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "paper", diff --git a/data/json/items/book/throw.json b/data/json/items/book/throw.json index ebaf3593a943c..6e8d4df9abb2b 100644 --- a/data/json/items/book/throw.json +++ b/data/json/items/book/throw.json @@ -29,8 +29,8 @@ ], "weight": "60 g", "volume": "250 ml", - "price": 480, - "price_postapoc": 250, + "price": "4 USD 80 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -89,8 +89,8 @@ ], "weight": "400 g", "volume": "500 ml", - "price": 2800, - "price_postapoc": 750, + "price": "28 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "manual_gun", diff --git a/data/json/items/book/traps.json b/data/json/items/book/traps.json index c1464aa1ce579..7113d42a01dfa 100644 --- a/data/json/items/book/traps.json +++ b/data/json/items/book/traps.json @@ -7,8 +7,8 @@ "description": "A worn manual that describes how to set and disarm a wide variety of traps.", "weight": "454 g", "volume": "500 ml", - "price": 2400, - "price_postapoc": 750, + "price": "24 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "glassblowing_book", @@ -26,8 +26,8 @@ "description": "An in-depth magazine about trapping game. There are lots of articles and diagrams that explain simple trap designs.", "weight": "80 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 1250, + "price": "4 USD 50 cent", + "price_postapoc": "12 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_gaming", @@ -45,8 +45,8 @@ "description": "An extensive volume that details numerous methods of trapping game.", "weight": "422 g", "volume": "500 ml", - "price": 2400, - "price_postapoc": 1750, + "price": "24 USD", + "price_postapoc": "17 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "manual_dodge", @@ -65,8 +65,8 @@ "looks_like": "manual_rifle", "weight": "422 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 2250, + "price": "20 USD", + "price_postapoc": "22 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "green", @@ -88,8 +88,8 @@ "looks_like": "manual_rifle", "weight": "211 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 1125, + "price": "10 USD", + "price_postapoc": "11 USD 25 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "green", @@ -110,8 +110,8 @@ "description": "An in-depth book about trapping game animals, covering methods both modern and ancient.", "weight": "1100 g", "volume": "2 L", - "price": 6000, - "price_postapoc": 1750, + "price": "60 USD", + "price_postapoc": "17 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "manual_dodge", @@ -131,8 +131,8 @@ "description": "A folksy guide to trapping wild game using time-tested methods. A bit in-depth for the beginner, it can provide a wealth of information to a knowledgeable trapper.", "weight": "1920 g", "volume": "2 L", - "price": 920, - "price_postapoc": 1250, + "price": "9 USD 20 cent", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "manual_carpentry", diff --git a/data/json/items/book/unarmed.json b/data/json/items/book/unarmed.json index 8110f1f081fba..d58588bb005c4 100644 --- a/data/json/items/book/unarmed.json +++ b/data/json/items/book/unarmed.json @@ -46,8 +46,8 @@ ], "weight": "90 g", "volume": "250 ml", - "price": 450, - "price_postapoc": 750, + "price": "4 USD 50 cent", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -108,8 +108,8 @@ ], "weight": "227 g", "volume": "500 ml", - "price": 3800, - "price_postapoc": 1250, + "price": "38 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "manual_gun", diff --git a/data/json/items/book/young.json b/data/json/items/book/young.json index 722614c3a4884..9b483c71f5169 100644 --- a/data/json/items/book/young.json +++ b/data/json/items/book/young.json @@ -6,8 +6,8 @@ "description": "A little book for little readers. The colorful cartoon characters and sweet stories contained herein belong to a different time, before the dead walked and the world moved on.", "weight": "52 g", "volume": "250 ml", - "price": 550, - "price_postapoc": 100, + "price": "5 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "cardboard" ], "symbol": "?", "looks_like": "story_book", @@ -23,8 +23,8 @@ "description": "An amusing collection of folklore featuring the usual cast of fairies, goblins, and trolls.", "weight": "410 g", "volume": "750 ml", - "price": 950, - "price_postapoc": 100, + "price": "9 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "story_book", @@ -216,8 +216,8 @@ "description": "A classic tale about growing up, portraying one young man's funny and poignant experiences with life, love, and sex.", "weight": "187 g", "volume": "500 ml", - "price": 750, - "price_postapoc": 50, + "price": "7 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "color": "light_blue", diff --git a/data/json/items/chemicals_and_resources.json b/data/json/items/chemicals_and_resources.json index 2d9f3ec29c8fe..1398a17a9e39c 100644 --- a/data/json/items/chemicals_and_resources.json +++ b/data/json/items/chemicals_and_resources.json @@ -7,8 +7,8 @@ "description": "A variety of powerful hypnotic, analgesic, and stimulative drugs. It's intended for use in specialized medical equipment, and can't be administered manually. You can reload an anesthesia kit with it.", "weight": "714 mg", "volume": "540 ml", - "price": 8333, - "price_postapoc": 3000, + "price": "83 USD 33 cent", + "price_postapoc": "30 USD", "ammo_type": "anesthetic", "count": 420, "phase": "liquid", @@ -39,8 +39,8 @@ "id": "chem_sulphur", "ammo_type": "components", "category": "chems", - "price": 50, - "price_postapoc": 50, + "price": "50 cent", + "price_postapoc": "50 cent", "name": { "str_sp": "sulfur" }, "symbol": "=", "color": "yellow", @@ -57,8 +57,8 @@ "type": "AMMO", "id": "chunk_sulfur", "category": "spare_parts", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "name": { "str": "chunk of sulfur", "str_pl": "chunks of sulfur" }, "symbol": "*", "color": "yellow", @@ -74,8 +74,8 @@ "type": "AMMO", "id": "material_cement", "category": "spare_parts", - "price": 200, - "price_postapoc": 10, + "price": "2 USD", + "price_postapoc": "10 cent", "name": { "str_sp": "cement powder" }, "symbol": "=", "color": "dark_gray", @@ -90,8 +90,8 @@ "type": "AMMO", "id": "material_gravel", "category": "spare_parts", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "gravel", "ctxt": "material" }, "symbol": "=", "color": "dark_gray", @@ -108,8 +108,8 @@ "type": "AMMO", "id": "shredded_rubber", "category": "spare_parts", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "shredded rubber" }, "symbol": "=", "color": "dark_gray", @@ -124,8 +124,8 @@ "type": "AMMO", "id": "material_limestone", "category": "spare_parts", - "price": 50, - "price_postapoc": 10, + "price": "50 cent", + "price_postapoc": "10 cent", "name": { "str_sp": "limestone" }, "symbol": "=", "color": "dark_gray", @@ -141,8 +141,8 @@ "type": "AMMO", "id": "material_quicklime", "category": "spare_parts", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "name": { "str_sp": "quicklime" }, "symbol": "=", "color": "dark_gray", @@ -157,8 +157,8 @@ "type": "AMMO", "id": "chem_slaked_lime", "category": "chems", - "price": 500, - "price_postapoc": 500, + "price": "5 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "slaked lime" }, "symbol": "=", "color": "white", @@ -173,8 +173,8 @@ "type": "AMMO", "id": "material_sand", "category": "spare_parts", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "sand", "ctxt": "material" }, "symbol": "=", "color": "dark_gray", @@ -189,8 +189,8 @@ "type": "AMMO", "id": "material_soil", "category": "spare_parts", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "soil" }, "symbol": "=", "color": "brown", @@ -209,8 +209,8 @@ "name": { "str": "limestone shard" }, "category": "spare_parts", "description": "A small shard of limestone. Pretty flimsy and not much of a weapon, but its alkaline properties may yet find some use.", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "material": [ "stone" ], "weight": "2700 g", "volume": "1 L", @@ -221,8 +221,8 @@ "type": "GENERIC", "id": "material_rocksalt", "category": "food", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "name": { "str_sp": "rock salt" }, "symbol": "*", "color": "light_gray", @@ -236,8 +236,8 @@ "type": "GENERIC", "id": "material_rhodonite", "category": "spare_parts", - "price": 250, - "price_postapoc": 100, + "price": "2 USD 50 cent", + "price_postapoc": "1 USD", "name": { "str_sp": "rhodonite" }, "symbol": "*", "color": "red", @@ -252,8 +252,8 @@ "type": "GENERIC", "id": "material_zincite", "category": "spare_parts", - "price": 250, - "price_postapoc": 100, + "price": "2 USD 50 cent", + "price_postapoc": "1 USD", "name": { "str_sp": "zincite" }, "symbol": "*", "color": "red", @@ -275,8 +275,8 @@ "symbol": "~", "description": "Sodium hypochlorite, a common household cleaning agent.", "comestible_type": "INVALID", - "price": 67, - "price_postapoc": 50, + "price": "67 cent", + "price_postapoc": "50 cent", "//": "$0.67 per charge for a $10 15-charge gallon of bleach.", "volume": "250 ml", "phase": "liquid", @@ -296,8 +296,8 @@ "sealed": false, "symbol": "~", "description": "Anhydrous ammonia, a useful chemical compound. It must be stored under pressure or refrigerated. Don't even think about drinking it.", - "price": 67, - "price_postapoc": 50, + "price": "67 cent", + "price_postapoc": "50 cent", "volume": "250 ml", "phase": "liquid", "stack_size": 1, @@ -317,8 +317,8 @@ "symbol": "~", "description": "Ammonium hydroxide, a common household cleaning agent.", "comestible_type": "INVALID", - "price": 67, - "price_postapoc": 50, + "price": "67 cent", + "price_postapoc": "50 cent", "volume": "250 ml", "phase": "liquid", "charges": 2, @@ -341,8 +341,8 @@ "healthy": -1, "calories": 260, "description": "A nutrient-rich elixir for plants.", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "volume": "250 ml", "phase": "liquid", "charges": 4, @@ -357,8 +357,8 @@ "weight": "500 g", "description": "A mixture of various organic wastes and water. Wait about two months for them to be fermented in a tank.", "copy-from": "fertilizer_liquid", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "flags": [ "NUTRIENT_OVERRIDE", "TRADER_AVOID" ], "compostable": { "time": "60 days", "results": [ "fermented_fertilizer_liquid", "biogas" ] }, "charges": 1 @@ -371,8 +371,8 @@ "weight": "400 g", "description": "A mixture of fermented biomass, will become liquid fertilizer after simple treatment.", "copy-from": "fertilizer_liquid", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "flags": [ "NUTRIENT_OVERRIDE", "TRADER_AVOID" ], "charges": 1 }, @@ -453,8 +453,8 @@ "healthy": -1, "description": "Water with salt added. Not good for drinking.", "flags": [ "NUTRIENT_OVERRIDE", "NO_AUTO_CONSUME" ], - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "volume": "250 ml", "charges": 1, "phase": "liquid", @@ -476,8 +476,8 @@ "quench": -5, "healthy": -1, "description": "Water with soap added. Not good for drinking.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "volume": "250 ml", "charges": 1, "phase": "liquid", @@ -497,8 +497,8 @@ "symbol": "~", "description": "A sample of sewage from a treatment plant. Gross.", "comestible_type": "INVALID", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "volume": "250 ml", "charges": 1, "phase": "liquid", @@ -509,8 +509,8 @@ "type": "AMMO", "id": "chem_aluminium_powder", "category": "chems", - "price": 500, - "price_postapoc": 500, + "price": "5 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "aluminum powder" }, "symbol": "=", "color": "white", @@ -526,8 +526,8 @@ "type": "AMMO", "id": "chem_nickel_powder", "category": "chems", - "price": 12, - "price_postapoc": 2, + "price": "12 cent", + "price_postapoc": "2 cent", "name": { "str_sp": "nickel powder" }, "symbol": "=", "color": "white", @@ -543,8 +543,8 @@ "type": "AMMO", "id": "chem_zinc_powder", "category": "chems", - "price": 600, - "price_postapoc": 250, + "price": "6 USD", + "price_postapoc": "2 USD 50 cent", "name": { "str_sp": "zinc powder" }, "symbol": "=", "color": "white", @@ -562,8 +562,8 @@ "type": "AMMO", "id": "chem_zinc_oxide", "category": "chems", - "price": 200, - "price_postapoc": 250, + "price": "2 USD", + "price_postapoc": "2 USD 50 cent", "name": { "str_sp": "zinc oxide" }, "symbol": "=", "color": "white", @@ -580,8 +580,8 @@ "type": "AMMO", "id": "chem_manganese_dioxide", "category": "chems", - "price": 600, - "price_postapoc": 100, + "price": "6 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "manganese dioxide" }, "symbol": "=", "color": "white", @@ -598,7 +598,7 @@ "type": "AMMO", "id": "cathod_mix", "category": "chems", - "price_postapoc": 100, + "price_postapoc": "1 USD", "name": { "str_sp": "acidic electrolyte paste" }, "symbol": "=", "color": "dark_gray", @@ -613,8 +613,8 @@ "type": "AMMO", "id": "chem_ferric_chloride", "category": "chems", - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "ferric chloride" }, "symbol": "=", "color": "green", @@ -630,8 +630,8 @@ "type": "AMMO", "id": "chem_antimony_trichloride", "category": "chems", - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "antimony trichloride" }, "symbol": "=", "color": "white", @@ -647,8 +647,8 @@ "type": "AMMO", "id": "chem_potassium_chloride", "category": "chems", - "price": 600, - "price_postapoc": 100, + "price": "6 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "potassium chloride" }, "symbol": "=", "color": "white", @@ -665,8 +665,8 @@ "type": "AMMO", "id": "chem_potassium_hydroxide", "category": "chems", - "price": 600, - "price_postapoc": 100, + "price": "6 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "potassium hydroxide" }, "symbol": "=", "color": "white", @@ -683,8 +683,8 @@ "type": "COMESTIBLE", "id": "chem_sulphuric_acid", "category": "chems", - "price": 250, - "price_postapoc": 100, + "price": "2 USD 50 cent", + "price_postapoc": "1 USD", "name": { "str_sp": "sulfuric acid" }, "symbol": "=", "color": "white", @@ -704,8 +704,8 @@ "type": "COMESTIBLE", "id": "chem_muriatic_acid", "category": "chems", - "price": 250, - "price_postapoc": 100, + "price": "2 USD 50 cent", + "price_postapoc": "1 USD", "name": { "str_sp": "hydrochloric acid" }, "symbol": "=", "color": "white", @@ -724,8 +724,8 @@ "type": "AMMO", "id": "chem_acetone", "category": "chems", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "name": { "str_sp": "acetone" }, "symbol": "=", "color": "white", @@ -741,8 +741,8 @@ "type": "COMESTIBLE", "id": "chem_nitric_acid", "category": "chems", - "price": 300, - "price_postapoc": 100, + "price": "3 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "nitric acid" }, "symbol": "=", "color": "white", @@ -762,8 +762,8 @@ "type": "AMMO", "id": "chem_chromium_oxide", "category": "chems", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "chromium oxide" }, "symbol": "=", "color": "green", @@ -780,8 +780,8 @@ "type": "AMMO", "id": "cac2powder", "category": "chems", - "price": 200, - "price_postapoc": 500, + "price": "2 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "calcium carbide premix" }, "symbol": "=", "color": "dark_gray", @@ -801,8 +801,8 @@ "type": "AMMO", "id": "chem_carbide", "category": "chems", - "price": 75, - "price_postapoc": 100, + "price": "75 cent", + "price_postapoc": "1 USD", "name": { "str_sp": "calcium carbide" }, "symbol": "=", "color": "white", @@ -819,8 +819,8 @@ "type": "AMMO", "id": "chem_caco3", "category": "chems", - "price": 75, - "price_postapoc": 100, + "price": "75 cent", + "price_postapoc": "1 USD", "name": { "str_sp": "calcium carbonate" }, "symbol": "=", "color": "white", @@ -837,8 +837,8 @@ "type": "AMMO", "id": "chem_hexamine", "category": "chems", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "hexamine" }, "symbol": "=", "color": "red", @@ -857,8 +857,8 @@ "type": "AMMO", "id": "chem_hydrogen_peroxide_conc", "category": "chems", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "hydrogen peroxide (concentrated)" }, "symbol": "~", "color": "white", @@ -875,9 +875,9 @@ "name": { "str_sp": "plutonium" }, "category": "chems", "//0": "Plutonium is about 5000 USD/gram", - "price": 495000000, + "price": "4950 kUSD", "//1": "Nobody wants raw plutonium, unless they have a deathwish", - "price_postapoc": 0, + "price_postapoc": "0 cent", "symbol": ",", "color": "light_gray", "description": "A chunk of unshielded plutonium. You should probably get very far away from this, if you enjoy not being irradiated.", @@ -891,9 +891,9 @@ "name": { "str_sp": "uranium" }, "category": "chems", "//0": "Uranium is about 40 USD/kg", - "price": 3812, + "price": "38 USD 12 cent", "//1": "Nobody wants raw uranium, unless they have a deathwish", - "price_postapoc": 0, + "price_postapoc": "0 cent", "symbol": ",", "color": "light_gray", "description": "Some uranium. You should probably get very far away from this, if you enjoy not being irradiated.", @@ -905,8 +905,8 @@ "type": "AMMO", "id": "chem_ammonium_nitrate", "category": "chems", - "price": 100, - "price_postapoc": 500, + "price": "1 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "ammonium nitrate" }, "symbol": "=", "color": "white", @@ -923,8 +923,8 @@ "id": "chem_ammonium_nitrate_pellets", "looks_like": "fertilizer_commercial", "category": "chems", - "price": 309, - "price_postapoc": 309, + "price": "3 USD 9 cent", + "price_postapoc": "3 USD 9 cent", "name": { "str_sp": "ammonium nitrate pellets" }, "symbol": "=", "color": "white", @@ -940,8 +940,8 @@ "type": "AMMO", "id": "chem_saltpetre", "category": "chems", - "price": 200, - "price_postapoc": 500, + "price": "2 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "saltpeter" }, "symbol": "=", "color": "white", @@ -957,8 +957,8 @@ "type": "AMMO", "id": "material_niter", "category": "spare_parts", - "price": 75, - "price_postapoc": 100, + "price": "75 cent", + "price_postapoc": "1 USD", "name": { "str_sp": "niter" }, "symbol": "*", "color": "white", @@ -973,8 +973,8 @@ "type": "AMMO", "id": "chem_aluminium_sulphate", "category": "chems", - "price": 300, - "price_postapoc": 100, + "price": "3 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "aluminum sulfate" }, "symbol": "=", "color": "white", @@ -990,8 +990,8 @@ "type": "AMMO", "id": "chem_acetic_acid", "category": "chems", - "price": 200, - "price_postapoc": 100, + "price": "2 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "acetic acid" }, "symbol": "~", "color": "white", @@ -1007,8 +1007,8 @@ "type": "AMMO", "id": "chem_formaldehyde", "category": "chems", - "price": 200, - "price_postapoc": 100, + "price": "2 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "formaldehyde" }, "symbol": "~", "color": "white", @@ -1023,8 +1023,8 @@ "type": "AMMO", "id": "chem_thermite", "category": "chems", - "price": 2500, - "price_postapoc": 500, + "price": "25 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "thermite" }, "symbol": "=", "color": "white", @@ -1041,8 +1041,8 @@ "type": "AMMO", "id": "chem_anfo", "category": "chems", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "name": { "str_sp": "ANFO" }, "symbol": "=", "color": "red", @@ -1058,8 +1058,8 @@ "type": "AMMO", "id": "chem_black_powder", "category": "chems", - "price": 2000, - "price_postapoc": 1000, + "price": "20 USD", + "price_postapoc": "10 USD", "name": { "str_sp": "black gunpowder" }, "symbol": "=", "color": "dark_gray", @@ -1075,8 +1075,8 @@ "type": "AMMO", "id": "chem_rdx", "category": "chems", - "price": 7500, - "price_postapoc": 2500, + "price": "75 USD", + "price_postapoc": "25 USD", "name": { "str_sp": "RDX" }, "symbol": "=", "color": "white", @@ -1092,8 +1092,8 @@ "type": "AMMO", "id": "chem_compositionb", "category": "chems", - "price": 7500, - "price_postapoc": 2000, + "price": "75 USD", + "price_postapoc": "20 USD", "name": { "str_sp": "composition B" }, "symbol": "=", "color": "brown", @@ -1109,8 +1109,8 @@ "type": "AMMO", "id": "chem_hmtd", "category": "chems", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "name": { "str_sp": "HMTD" }, "symbol": "=", "color": "white", @@ -1127,8 +1127,8 @@ "type": "AMMO", "id": "chem_apex", "category": "chems", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "name": { "str_sp": "APEX" }, "symbol": "=", "color": "white", @@ -1145,8 +1145,8 @@ "type": "AMMO", "id": "chem_rocket_fuel", "category": "chems", - "price": 500, - "price_postapoc": 500, + "price": "5 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "improvised rocket fuel" }, "symbol": "=", "color": "white", @@ -1183,8 +1183,8 @@ "color": "brown", "name": { "str": "hickory root" }, "description": "A root from a hickory tree. It has an earthy smell.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "wood" ], "weight": "500 g", "volume": "500 ml", @@ -1199,8 +1199,8 @@ "name": { "str_sp": "hickory nuts" }, "description": "A handful of hard nuts from a hickory tree, still in their shells.", "//spoils_in": "180 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "212 g", "volume": "250 ml", "to_hit": -2 @@ -1214,8 +1214,8 @@ "name": { "str_sp": "pecans" }, "description": "A handful of hard nuts from a pecan tree, still in their shells.", "//spoils_in": "180 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "212 g", "volume": "250 ml", "to_hit": -2 @@ -1229,8 +1229,8 @@ "name": { "str_sp": "pistachios" }, "description": "A handful of hard nuts from a pistachio tree, still in their shells.", "//spoils_in": "90 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "180 g", "volume": "250 ml", "to_hit": -2 @@ -1244,8 +1244,8 @@ "name": { "str_sp": "almonds" }, "description": "A handful of hard nuts from an almond tree, still in their shells.", "//spoils_in": "300 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "212 g", "volume": "250 ml", "to_hit": -2 @@ -1259,8 +1259,8 @@ "name": { "str_sp": "peanuts" }, "description": "A handful of hard nuts from a peanut bush, still in their shells.", "//spoils_in": "240 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "200 g", "volume": "250 ml", "to_hit": -2 @@ -1274,8 +1274,8 @@ "name": { "str_sp": "hazelnuts" }, "description": "A handful of hard nuts from a hazelnut tree, still in their shells.", "//spoils_in": "150 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "212 g", "volume": "250 ml", "to_hit": -2 @@ -1289,8 +1289,8 @@ "name": { "str_sp": "chestnuts" }, "description": "A handful of hard nuts from a chestnut tree, still in their shells.", "//spoils_in": "180 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "240 g", "volume": "250 ml", "to_hit": -2 @@ -1304,8 +1304,8 @@ "name": { "str_sp": "walnuts" }, "description": "A handful of hard nuts from a walnut tree, still in their shells.", "//spoils_in": "180 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "240 g", "volume": "250 ml", "to_hit": -2 @@ -1319,8 +1319,8 @@ "name": { "str_sp": "butternuts" }, "description": "A handful of nuts from a butternut tree, still in their shell.", "//spoils_in": "180 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "240 g", "volume": "250 ml", "to_hit": -2 @@ -1346,8 +1346,8 @@ "type": "AMMO", "id": "detergent", "category": "chems", - "price": 1000, - "price_postapoc": 200, + "price": "10 USD", + "price_postapoc": "2 USD", "name": { "str_sp": "detergent" }, "symbol": "=", "color": "white", @@ -1364,8 +1364,8 @@ "type": "AMMO", "id": "soap_flakes", "category": "chems", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "name": { "str_sp": "soap flakes" }, "looks_like": "detergent", "symbol": "=", @@ -1390,8 +1390,8 @@ "healthy": -20, "description": "A liquid form of sodium hydroxide. It is highly corrosive; handle with care.", "comestible_type": "INVALID", - "price": 100, - "price_postapoc": 100, + "price": "1 USD", + "price_postapoc": "1 USD", "volume": "250 ml", "charges": 1, "phase": "liquid", @@ -1411,8 +1411,8 @@ "healthy": -20, "description": "A liquid form of potassium hydroxide. It is highly corrosive; handle with care.", "comestible_type": "INVALID", - "price": 100, - "price_postapoc": 100, + "price": "1 USD", + "price_postapoc": "1 USD", "volume": "250 ml", "charges": 1, "phase": "liquid", @@ -1423,8 +1423,8 @@ "type": "AMMO", "id": "nanomaterial", "category": "tool_magazine", - "price": 250000, - "price_postapoc": 500, + "price": "2 kUSD 500 USD", + "price_postapoc": "5 USD", "name": { "str": "nanomaterial canister" }, "symbol": "=", "color": "light_gray", @@ -1440,8 +1440,8 @@ "type": "AMMO", "id": "ash", "category": "chems", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "wood ashes" }, "symbol": "=", "looks_like": "f_ash", @@ -1457,8 +1457,8 @@ "type": "AMMO", "id": "corpse_ash", "category": "chems", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "corpse ashes" }, "symbol": "=", "looks_like": "f_ash", @@ -1474,8 +1474,8 @@ "type": "COMESTIBLE", "id": "ether", "category": "chems", - "price": 10, - "price_postapoc": 5, + "price": "10 cent", + "price_postapoc": "5 cent", "name": { "str_sp": "ether" }, "symbol": "!", "quench": -96, @@ -1495,8 +1495,8 @@ "type": "COMESTIBLE", "id": "chem_DMSO", "category": "chems", - "price": 10, - "price_postapoc": 5, + "price": "10 cent", + "price_postapoc": "5 cent", "name": { "str_sp": "dimethyl sulfoxide" }, "symbol": "~", "quench": -96, @@ -1516,8 +1516,8 @@ "type": "COMESTIBLE", "id": "chem_chloroform", "category": "chems", - "price": 20, - "price_postapoc": 5, + "price": "20 cent", + "price_postapoc": "5 cent", "name": { "str_sp": "chloroform" }, "symbol": "~", "color": "light_cyan", @@ -1537,8 +1537,8 @@ "type": "COMESTIBLE", "id": "chem_phenol", "category": "chems", - "price": 10, - "price_postapoc": 5, + "price": "10 cent", + "price_postapoc": "5 cent", "name": { "str_sp": "phenol" }, "symbol": "~", "quench": -96, @@ -1558,8 +1558,8 @@ "type": "COMESTIBLE", "id": "chem_benzene", "category": "chems", - "price": 10, - "price_postapoc": 5, + "price": "10 cent", + "price_postapoc": "5 cent", "name": { "str_sp": "benzene" }, "symbol": "~", "color": "light_cyan", @@ -1578,8 +1578,8 @@ "type": "COMESTIBLE", "id": "chem_toluene", "category": "chems", - "price": 10, - "price_postapoc": 5, + "price": "10 cent", + "price_postapoc": "5 cent", "name": { "str_sp": "toluene" }, "symbol": "~", "color": "light_cyan", @@ -1598,8 +1598,8 @@ "type": "COMESTIBLE", "id": "chem_glycerol", "category": "chems", - "price": 10, - "price_postapoc": 5, + "price": "10 cent", + "price_postapoc": "5 cent", "name": { "str_sp": "glycerol" }, "symbol": "~", "quench": -15, @@ -1682,8 +1682,8 @@ "description": "A metal grille. It can be used as a framework for making a chemical catalyst.", "weight": "600 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "steel" ], "symbol": ";", @@ -1696,8 +1696,8 @@ "id": "cobalt_60", "type": "GENERIC", "category": "other", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "name": { "str": "cobalt-60 pellet" }, "symbol": "=", "color": "green", @@ -1716,8 +1716,8 @@ "weight": "1 g", "volume": "250 ml", "count": 100, - "price": 1, - "price_postapoc": 10, + "price": "1 cent", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": ".", "color": "brown", @@ -1734,8 +1734,8 @@ "weight": "1 g", "volume": "10 ml", "count": 10, - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": "=", "color": "yellow", @@ -1750,8 +1750,8 @@ "comestible_type": "INVALID", "weight": "40 g", "volume": "250 ml", - "price": 1200, - "price_postapoc": 250, + "price": "12 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "hydrocarbons" ], "symbol": "=", "color": "red", @@ -1771,8 +1771,8 @@ "material": [ "acid" ], "weight": "204 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "symbol": "=", "color": "white", "charges": 1, @@ -1790,8 +1790,8 @@ "comestible_type": "INVALID", "weight": "500 mg", "volume": "50 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "symbol": "=", "color": "white", "charges": 1, @@ -1928,8 +1928,8 @@ "container": "bottle_plastic_small", "symbol": "=", "color": "red", - "price": 50, - "price_postapoc": 2, + "price": "50 cent", + "price_postapoc": "2 cent", "count": 1000, "stack_size": 25 }, @@ -1950,8 +1950,8 @@ "quench": -99, "healthy": -20, "fun": -99, - "price": 50, - "price_postapoc": 2, + "price": "50 cent", + "price_postapoc": "2 cent", "phase": "liquid", "symbol": "~", "color": "dark_gray", @@ -1972,8 +1972,8 @@ "//": "Density around 5.1g/cm3, but since it's in crystal form, it's lower, around 3.5 g/cm3", "symbol": "=", "color": "dark_gray", - "price": 100, - "price_postapoc": 5, + "price": "1 USD", + "price_postapoc": "5 cent", "count": 100 }, { @@ -1988,8 +1988,8 @@ "sealed": false, "symbol": "~", "description": "Standard skin-safe liquid soap, the type you might see on a kitchen sink, shower shelf, or bathroom soap dispenser, but it should work reasonably well for cleaning anything that's filthy.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "volume": "250 ml", "phase": "liquid", "flags": [ "DETERGENT" ], @@ -2005,8 +2005,8 @@ "comestible_type": "INVALID", "weight": "250 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "symbol": "=", "color": "white", "looks_like": "lard" @@ -2020,8 +2020,8 @@ "weight": "2480 mg", "volume": "100 ml", "//": "density: 0.76–4.20 g/cm3 according to google, I'm going with the middle ground", - "price": 936, - "price_postapoc": 400, + "price": "9 USD 36 cent", + "price_postapoc": "4 USD", "ammo_type": "components", "stack_size": 10, "phase": "liquid", @@ -2036,8 +2036,8 @@ "id": "blood_acid", "//": "depending on the lore as what acid these enemies use this could change, muriatic acid is stomach acid", "copy-from": "chem_muriatic_acid", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "toxic acidic blood" }, "symbol": "~", "color": "red", @@ -2048,7 +2048,7 @@ "id": "blood_acid_insect", "copy-from": "formic_acid", "category": "chems", - "price_postapoc": 0, + "price_postapoc": "0 cent", "name": { "str_sp": "virulent acidic blood" }, "symbol": "~", "color": "red", @@ -2063,8 +2063,8 @@ "type": "COMESTIBLE", "id": "blood_acid_plant", "copy-from": "chem_acetic_acid", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "putrid acidic blood" }, "symbol": "~", "color": "green", @@ -2079,8 +2079,8 @@ "type": "COMESTIBLE", "id": "blood_acid_underground", "copy-from": "chem_sulphuric_acid", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "foul acidic blood" }, "symbol": "~", "color": "red", diff --git a/data/json/items/classes/magazine.json b/data/json/items/classes/magazine.json index 472bbd3ff6c42..328c241ef174d 100644 --- a/data/json/items/classes/magazine.json +++ b/data/json/items/classes/magazine.json @@ -5,7 +5,7 @@ "name": { "str": "ammo belt" }, "description": "An ammo belt consisting of metal linkages which disintegrate upon firing.", "volume": "0 ml", - "price": 0, + "price": "0 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/comestibles/alcohol.json b/data/json/items/comestibles/alcohol.json index 393ad0e75f736..738ac18ae59be 100644 --- a/data/json/items/comestibles/alcohol.json +++ b/data/json/items/comestibles/alcohol.json @@ -16,8 +16,8 @@ "addiction_potential": 5, "calories": 40, "description": "Goopy white wine, made of the Mycus fruit.", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "alcohol", "water", "mushroom" ], "primary_material": "alcohol", "volume": "250 ml", @@ -44,8 +44,8 @@ "addiction_potential": 5, "calories": 40, "description": "A viscous, soft pink wine, made from the fruit of the Marloss.", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "alcohol", "water", "fruit" ], "primary_material": "alcohol", "volume": "250 ml", @@ -72,8 +72,8 @@ "addiction_potential": 5, "calories": 40, "description": "Sparkling white wine, made from the world's noblest grape.", - "price": 1100, - "price_postapoc": 150, + "price": "11 USD", + "price_postapoc": "1 USD 50 cent", "//": "Booze uses nonstandard charge counts: 15 shots of wine to the 750mL bottle. Priced at 1100 translates to $33 per, because it's still priced per 250 mL charge.", "material": [ "alcohol", "water" ], "primary_material": "alcohol", @@ -101,8 +101,8 @@ "addiction_potential": 5, "calories": 41, "description": "America's most popular wine, and for good reason.", - "price": 1200, - "price_postapoc": 150, + "price": "12 USD", + "price_postapoc": "1 USD 50 cent", "//": "The PLCB can get you some for around $10 per 750mL, but I imagine you want to pay for better ~fermentation~.", "material": [ "alcohol", "water" ], "primary_material": "alcohol", @@ -129,8 +129,8 @@ "addiction_potential": 5, "calories": 41, "description": "The heavily disputed king of red wines. Pairs well with red meats and pasta.", - "price": 1650, - "price_postapoc": 200, + "price": "16 USD 50 cent", + "price_postapoc": "2 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -156,8 +156,8 @@ "addiction_potential": 5, "calories": 41, "description": "Prized by collectors and adored by critics, this is one of the rarer and more elegant wines.", - "price": 2600, - "price_postapoc": 150, + "price": "26 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -184,8 +184,8 @@ "addiction_potential": 5, "calories": 47, "description": "A wine popularly used in dishes served in Italian restaurants.", - "price": 1500, - "price_postapoc": 150, + "price": "15 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -212,8 +212,8 @@ "addiction_potential": 5, "calories": 47, "description": "A soft wine with a pleasant herbal flavor and aroma. It is a common cocktail ingredient, and can be used as a substitute for white wine.", - "price": 1500, - "price_postapoc": 150, + "price": "15 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -241,8 +241,8 @@ "addiction_potential": 2, "calories": 108, "description": "Despite the name, this is technically a strong beer and not wine, but there's no need to be pedantic about it.", - "price": 150, - "price_postapoc": 150, + "price": "1 USD 50 cent", + "price_postapoc": "1 USD 50 cent", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -270,8 +270,8 @@ "addiction_potential": 5, "description": "A distilled grain alcohol, made from, by, and for real Southern colonels!", "calories": 79, - "price": 2100, - "price_postapoc": 250, + "price": "21 USD", + "price_postapoc": "2 USD 50 cent", "//": "Given the comment, presuming we're taking bourbon here.", "material": [ "alcohol" ], "volume": "250 ml", @@ -299,8 +299,8 @@ "addiction_potential": 5, "calories": 79, "description": "A beverage of alcohol, water, and not much else. In America, men make vodka, but in Soviet Russia, vodka makes the man.", - "price": 1900, - "price_postapoc": 250, + "price": "19 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol" ], "volume": "250 ml", "phase": "liquid", @@ -327,8 +327,8 @@ "addiction_potential": 5, "calories": 79, "description": "An alcoholic beverage flavored with juniper berries. It smells faintly of berries, but mostly booze.", - "price": 1900, - "price_postapoc": 250, + "price": "19 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol" ], "volume": "250 ml", "phase": "liquid", @@ -355,8 +355,8 @@ "addiction_potential": 5, "calories": 79, "description": "A distilled alcoholic beverage made from fermenting molasses. Drinking it might make you feel like a pirate. Or not.", - "price": 2300, - "price_postapoc": 250, + "price": "23 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol" ], "volume": "250 ml", "phase": "liquid", @@ -383,8 +383,8 @@ "addiction_potential": 6, "calories": 79, "description": "A distilled alcoholic beverage made from a succulent plant with spiky leaves. Don't eat the worm! Wait, there's no worm in this bottle.", - "price": 2600, - "price_postapoc": 250, + "price": "26 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol" ], "volume": "250 ml", "phase": "liquid", @@ -411,8 +411,8 @@ "addiction_potential": 4, "calories": 83, "description": "An orange-flavored liquor used in many mixed drinks.", - "price": 950, - "price_postapoc": 250, + "price": "9 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol" ], "volume": "250 ml", "flags": [ "EDIBLE_FROZEN", "NO_AUTO_CONSUME" ], @@ -439,8 +439,8 @@ "addiction_potential": 5, "calories": 44, "description": "A Japanese alcoholic beverage made by fermenting rice with the use of yeast and koji mold. This one is mostly clear, as it has been filtered.", - "price": 1200, - "price_postapoc": 150, + "price": "12 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "alcohol", "water" ], "volume": "250 ml", "phase": "liquid", @@ -467,8 +467,8 @@ "addiction_potential": 5, "calories": 44, "description": "A Japanese alcoholic beverage made by fermenting rice with the use of yeast and koji mold. This one has a cloudy white color because of fine rice particles in it, as it has not been filtered.", - "price": 1200, - "price_postapoc": 150, + "price": "12 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -497,8 +497,8 @@ "addiction_potential": 7, "calories": 28, "description": "Really cheap fortified wine.", - "price": 158, - "price_postapoc": 100, + "price": "1 USD 58 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -527,7 +527,7 @@ "addiction_potential": 7, "calories": 79, "description": "Strong alcoholic drinks, mixed with no regard for taste.", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol" ], "volume": "250 ml", "phase": "liquid", @@ -555,8 +555,8 @@ "addiction_potential": 4, "calories": 203, "description": "Weak alcoholic drinks, mixed with no regard for taste.", - "price": 70, - "price_postapoc": 250, + "price": "70 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -584,8 +584,8 @@ "addiction_potential": 3, "calories": 49, "description": "Cheap booze made from fermented fruit juice. Tastes as good as it sounds.", - "price": 550, - "price_postapoc": 100, + "price": "5 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water", "fruit" ], "primary_material": "alcohol", "volume": "250 ml", @@ -613,8 +613,8 @@ "addiction_potential": 5, "calories": 79, "description": "Wine that has been distilled to a higher proof. Great as an after-dinner drink, but packs a punch.", - "price": 1300, - "price_postapoc": 200, + "price": "13 USD", + "price_postapoc": "2 USD", "material": [ "alcohol" ], "volume": "250 ml", "flags": [ "EATEN_COLD", "NO_AUTO_CONSUME" ], @@ -640,8 +640,8 @@ "addiction_potential": 2, "calories": 172, "description": "A cocktail made by mixing beer and grenadine syrup. It's quite sweet.", - "price": 110, - "price_postapoc": 100, + "price": "1 USD 10 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -670,8 +670,8 @@ "addiction_potential": 5, "calories": 297, "description": "Sweetened coffee and whiskey topped with milk. Start your day the closeted alcoholic way!", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol", "water", "milk" ], "primary_material": "alcohol", "volume": "250 ml", @@ -698,8 +698,8 @@ "addiction_potential": 5, "calories": 103, "description": "A cocktail made by mixing coffee and pure alcohol, typically moonshine, originating from Scandinavia. Sometimes sugar is also added.", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -726,8 +726,8 @@ "addiction_potential": 5, "calories": 80, "description": "A cocktail made by mixing black tea and rum, which has its origins in the British Army.", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -754,8 +754,8 @@ "addiction_potential": 5, "calories": 426, "description": "A blend of incredibly strong-flavored liquors that somehow tastes like none of them. It contains no tea, but the inclusion of cola gives it a tea-like color.", - "price": 600, - "price_postapoc": 250, + "price": "6 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -784,8 +784,8 @@ "addiction_potential": 4, "calories": 213, "description": "A mix of orange juice and vodka. It's the surreptitious drunkard mechanic's drink of choice. A similar drink may be made by substituting cranberry juice for orange juice.", - "price": 600, - "price_postapoc": 250, + "price": "6 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol", "fruit" ], "primary_material": "alcohol", "volume": "250 ml", @@ -813,8 +813,8 @@ "addiction_potential": 4, "calories": 212, "description": "Like apple cider, only with vodka.", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol", "fruit" ], "primary_material": "alcohol", "volume": "250 ml", @@ -847,8 +847,8 @@ "addiction_potential": 4, "calories": 177, "description": "Suitable for tropical retreats and Canadian artists alike. In certain variants, whiskey or sake is substituted for rum.", - "price": 600, - "price_postapoc": 250, + "price": "6 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol", "junk" ], "primary_material": "alcohol", "volume": "250 ml", @@ -877,8 +877,8 @@ "addiction_potential": 4, "calories": 159, "description": "A mixed alcoholic drink consisting of gin and tonic water, created in the 19th century as a way to make tonic water (a malaria prophylactic) more palatable, but still popular to this day. In certain variants, vodka is substituted for gin.", - "price": 600, - "price_postapoc": 250, + "price": "6 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol", "water", "junk" ], "primary_material": "alcohol", "volume": "250 ml", @@ -911,8 +911,8 @@ "addiction_potential": 4, "calories": 277, "description": "A cocktail consisting of pineapple juice, coconut milk, and rum, originating in Puerto Rico. In certain variants, vodka, whiskey, or tequila are substituted for rum.", - "price": 600, - "price_postapoc": 250, + "price": "6 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "fruit", "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -946,8 +946,8 @@ "addiction_potential": 4, "calories": 92, "description": "A cocktail consisting of tequila, orange juice, and grenadine syrup, originating from California. In certain variants, vodka or rum may be substituted for tequila, and pineapple juice may be substituted for orange juice.", - "price": 600, - "price_postapoc": 250, + "price": "6 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "fruit", "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -975,8 +975,8 @@ "addiction_potential": 2, "calories": 108, "description": "A generic-brand grain alcohol flavored with hops. It's best served cold, in a glass, and with a lime - but you're not that lucky.", - "price": 110, - "price_postapoc": 100, + "price": "1 USD 10 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1004,8 +1004,8 @@ "addiction_potential": 2, "calories": 53, "description": "Well-aged honey wine, spiced with a hint of hops. Goes down bittersweet.", - "price": 1100, - "price_postapoc": 150, + "price": "11 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "alcohol", "honey" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1057,8 +1057,8 @@ "addiction_potential": 1, "calories": 68, "description": "A light and delicious wine made from dandelion flowers. Slightly effervescent, it is smooth and crisp.", - "price": 1400, - "price_postapoc": 100, + "price": "14 USD", + "price_postapoc": "1 USD", "//": "Nope, homebrew is not more expensive than pinot noir, sorry.", "material": [ "alcohol", "water" ], "primary_material": "alcohol", @@ -1086,8 +1086,8 @@ "addiction_potential": 1, "calories": 68, "description": "A light and delicious wine made from burdock roots. Somewhat sweet.", - "price": 1400, - "price_postapoc": 100, + "price": "14 USD", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1114,8 +1114,8 @@ "addiction_potential": 1, "calories": 53, "description": "A potent wine flavored with pine resin. Bold and pungent, its biting taste and strong aroma takes some getting used to.", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1143,8 +1143,8 @@ "addiction_potential": 2, "calories": 108, "description": "Not the finest drink you've had, but hey, it's alcohol by the gallon.", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1174,8 +1174,8 @@ "addiction_potential": 7, "calories": 101, "description": "Only the strongest, purest, good ol' fashioned hooch, distilled from corn (or pumpkin) and sugar. Guaranteed to make you forget about the whole Cataclysm thing, or you get your vision back.", - "price": 850, - "price_postapoc": 200, + "price": "8 USD 50 cent", + "price_postapoc": "2 USD", "material": [ "alcohol" ], "volume": "250 ml", "phase": "liquid", @@ -1202,8 +1202,8 @@ "addiction_potential": 2, "calories": 108, "description": "A lager beer imported from Europe. Best served cold, in a glass - but you're not that lucky.", - "price": 260, - "price_postapoc": 100, + "price": "2 USD 60 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1232,8 +1232,8 @@ "addiction_potential": 2, "calories": 108, "description": "A tasty domestic craft beer. Best served cold, in a glass - but you're not that lucky.", - "price": 150, - "price_postapoc": 100, + "price": "1 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1262,8 +1262,8 @@ "addiction_potential": 2, "calories": 108, "description": "A very flavorful microbrewed beer. Best served cold, in a glass - but you're not that lucky.", - "price": 150, - "price_postapoc": 100, + "price": "1 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1292,8 +1292,8 @@ "addiction_potential": 2, "calories": 87, "description": "A tasty craft beer, as dark in color as the days ahead.", - "price": 160, - "price_postapoc": 100, + "price": "1 USD 60 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1322,8 +1322,8 @@ "addiction_potential": 2, "calories": 108, "description": "A flavorful and filling beer brewed by monks in Belgium. Best served in a goblet.", - "price": 130, - "price_postapoc": 100, + "price": "1 USD 30 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1352,8 +1352,8 @@ "addiction_potential": 4, "calories": 181, "description": "A very flavorful beer that has been aged in bourbon barrels. It is as black as midnight on a moonless night and has the viscosity of oil. While very tasty, it also has an alcohol content on par with wine.", - "price": 450, - "price_postapoc": 100, + "price": "4 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1381,8 +1381,8 @@ "addiction_potential": 6, "calories": 68, "description": "Strawberries left to ferment with a few other choice ingredients offer up a surprisingly palatable mixture; you barely even have to force yourself to drink it after the first few gulps.", - "price": 1600, - "price_postapoc": 50, + "price": "16 USD", + "price_postapoc": "50 cent", "material": [ "alcohol", "water", "fruit" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1410,8 +1410,8 @@ "addiction_potential": 6, "calories": 82, "description": "This fermented blueberry mixture is surprisingly hearty, though the soup-like consistency is slightly unsettling no matter how much you drink.", - "price": 1400, - "price_postapoc": 50, + "price": "14 USD", + "price_postapoc": "50 cent", "material": [ "alcohol", "water", "fruit" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1440,8 +1440,8 @@ "addiction_potential": 5, "calories": 79, "description": "Only the finest whiskey straight from the bung.", - "price": 300, - "price_postapoc": 300, + "price": "3 USD", + "price_postapoc": "3 USD", "//": "Priced by the 100 liter barrel, this is multiplied by 400 to achieve the final cost.", "material": [ "alcohol" ], "volume": "250 ml", @@ -1457,8 +1457,8 @@ "copy-from": "whiskey", "name": { "str_sp": "single pot still Irish whiskey" }, "description": "A whiskey made from a mixed mash of malted and unmalted barley.", - "price": 2600, - "price_postapoc": 250, + "price": "26 USD", + "price_postapoc": "2 USD 50 cent", "fun": 20 }, { @@ -1467,8 +1467,8 @@ "copy-from": "whiskey", "name": { "str_sp": "cheap whiskey" }, "description": "Really cheap blended whiskey.", - "price": 1800, - "price_postapoc": 200, + "price": "18 USD", + "price_postapoc": "2 USD", "fun": 12 }, { @@ -1477,8 +1477,8 @@ "copy-from": "whiskey", "name": { "str_sp": "Canadian whiskey" }, "description": "A multi-grain liquor made from a mash of corn and rye.", - "price": 2400, - "price_postapoc": 250, + "price": "24 USD", + "price_postapoc": "2 USD 50 cent", "fun": 17 }, { @@ -1499,8 +1499,8 @@ "addiction_potential": 5, "calories": 99, "description": "East India Solera. A true drink of a British gentleman. Sherry, Niles?", - "price": 2500, - "price_postapoc": 150, + "price": "25 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "alcohol" ], "volume": "250 ml", "flags": [ "EATEN_COLD", "NO_AUTO_CONSUME" ], @@ -1515,8 +1515,8 @@ "copy-from": "sherry", "name": { "str_sp": "Bristol Cream" }, "description": "A fine sherry that has been aged in American oak casks and bottled in Bristol, England.", - "price": 2800, - "price_postapoc": 150, + "price": "28 USD", + "price_postapoc": "1 USD 50 cent", "fun": 18 }, { @@ -1525,8 +1525,8 @@ "copy-from": "sherry", "name": { "str_sp": "Madeira wine" }, "description": "Fortified wine from Madeira. A true Royal Navy drink.", - "price": 2400, - "price_postapoc": 150, + "price": "24 USD", + "price_postapoc": "1 USD 50 cent", "fun": 15 }, { @@ -1547,8 +1547,8 @@ "addiction_potential": 5, "calories": 52, "description": "This definitely tastes like a hobo drink.", - "price": 900, - "price_postapoc": 100, + "price": "9 USD", + "price_postapoc": "1 USD", "material": [ "alcohol", "junk" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1576,8 +1576,8 @@ "addiction_potential": 5, "calories": 35, "description": "A mix of equal parts wine and cola, originating in Spain in the 1920s. Tastes better than it sounds.", - "price": 800, - "price_postapoc": 50, + "price": "8 USD", + "price_postapoc": "50 cent", "material": [ "alcohol", "junk" ], "primary_material": "alcohol", "volume": "500 ml", @@ -1604,8 +1604,8 @@ "addiction_potential": 4, "calories": 61, "description": "This cocktail dates from the Prohibition era. Gin, honey and lemon in a delightful mix.", - "price": 850, - "price_postapoc": 250, + "price": "8 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol", "honey" ], "primary_material": "alcohol", "volume": "500 ml", @@ -1634,8 +1634,8 @@ "addiction_potential": 4, "calories": 361, "description": "A mixed drink made of whiskey and lemon juice, with sugar added. In certain variants, gin is substituted for whiskey.", - "price": 800, - "price_postapoc": 250, + "price": "8 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol" ], "volume": "250 ml", "charges": 1, @@ -1660,8 +1660,8 @@ "quench": 20, "calories": 475, "description": "A mixed drink combining bee and ant honey. It tastes great, and it's a good source of nourishment.", - "price": 350, - "price_postapoc": 300, + "price": "3 USD 50 cent", + "price_postapoc": "3 USD", "material": [ "alcohol", "honey" ], "primary_material": "alcohol", "volume": "500 ml", @@ -1712,8 +1712,8 @@ "addiction_potential": 5, "calories": 117, "description": "Smooth and rich, this spoon-coating mixture of milk, cream, eggs, and booze is a popular traditional holiday drink. Having been fortified with alcohol, it will keep for a long time.", - "price": 45, - "price_postapoc": 150, + "price": "45 cent", + "price_postapoc": "1 USD 50 cent", "//": "A 12-charge gallon currently goes for around US$4, and eggnog is a bit more expensive than that.", "material": [ "milk", "alcohol", "egg" ], "primary_material": "alcohol", @@ -1746,8 +1746,8 @@ "addiction_potential": 4, "calories": 104, "description": "A popular cocktail made with gin and dry vermouth, dating from the Prohibition era. In certain variants, vodka or tequila is substituted for gin.", - "price": 850, - "price_postapoc": 250, + "price": "8 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "500 ml", @@ -1774,8 +1774,8 @@ "addiction_potential": 4, "calories": 70, "description": "Tomato juice mixed with vodka and some spices. A hangover cure of choice for many.", - "price": 600, - "price_postapoc": 250, + "price": "6 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol", "tomato" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1804,8 +1804,8 @@ "addiction_potential": 4, "calories": 240, "description": "This is definitely not tomato juice.", - "price": 300, - "price_postapoc": 125, + "price": "3 USD", + "price_postapoc": "1 USD 25 cent", "material": [ "alcohol", "blood" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1833,8 +1833,8 @@ "addiction_potential": 2, "calories": 70, "description": "Alcoholic sparkling water infused with delicious fruit. Perfect for a hot summer day.", - "price": 260, - "price_postapoc": 100, + "price": "2 USD 60 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -1863,8 +1863,8 @@ "addiction_potential": 2, "calories": 70, "description": "Alcoholic sparkling water infused with delicious fruit. Perfect for a hot summer day. Tastes nearly as good as the one in the market.", - "price": 260, - "price_postapoc": 100, + "price": "2 USD 60 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", diff --git a/data/json/items/comestibles/bread.json b/data/json/items/comestibles/bread.json index 15d15b8a79e20..6d5ba70975a69 100644 --- a/data/json/items/comestibles/bread.json +++ b/data/json/items/comestibles/bread.json @@ -28,8 +28,8 @@ "comestible_type": "FOOD", "weight": "750 g", "volume": "480 ml", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "wheat" ], "symbol": "%", "color": "white", @@ -54,8 +54,8 @@ "comestible_type": "FOOD", "weight": "750 g", "volume": "480 ml", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "wheat" ], "symbol": "%", "color": "white", @@ -80,8 +80,8 @@ "comestible_type": "FOOD", "weight": "750 g", "volume": "480 ml", - "price": 50, - "price_postapoc": 10, + "price": "50 cent", + "price_postapoc": "10 cent", "material": [ "wheat" ], "symbol": "%", "color": "yellow", diff --git a/data/json/items/comestibles/brewing.json b/data/json/items/comestibles/brewing.json index d0678e079aa57..2e61556b1c31d 100644 --- a/data/json/items/comestibles/brewing.json +++ b/data/json/items/comestibles/brewing.json @@ -14,8 +14,8 @@ "calories": 25, "quench": -5, "fun": 4, - "price": 4, - "price_postapoc": 10, + "price": "4 cent", + "price_postapoc": "10 cent", "volume": "50 ml", "charges": 1, "phase": "liquid", @@ -37,8 +37,8 @@ "calories": 25, "quench": -5, "fun": 4, - "price": 4, - "price_postapoc": 10, + "price": "4 cent", + "price_postapoc": "10 cent", "volume": "50 ml", "charges": 1, "phase": "liquid", @@ -65,8 +65,8 @@ "calories": 17, "quench": 4, "fun": -15, - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "volume": "36 ml", "charges": 1, "phase": "liquid", @@ -94,7 +94,7 @@ "healthy": -1, "fun": 2, "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "flags": [ "NUTRIENT_OVERRIDE" ], @@ -116,8 +116,8 @@ "calories": 17, "quench": 4, "fun": -15, - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "volume": "36 ml", "charges": 1, "phase": "liquid", @@ -145,7 +145,7 @@ "healthy": -1, "fun": 2, "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "flags": [ "NUTRIENT_OVERRIDE" ], @@ -172,7 +172,7 @@ "quench": 4, "calories": 69, "fun": -5, - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "volume": "36 ml", "phase": "liquid", @@ -199,7 +199,7 @@ "healthy": -1, "fun": -15, "calories": 17, - "price_postapoc": 0, + "price_postapoc": "0 cent", "charges": 1, "volume": "25 ml", "phase": "liquid", @@ -221,7 +221,7 @@ "healthy": -1, "fun": -15, "calories": 17, - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "volume": "25 ml", "phase": "liquid", @@ -243,9 +243,9 @@ "calories": 17, "quench": 4, "fun": -5, - "price": 0, + "price": "0 cent", "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "comestible_type": "DRINK", @@ -273,7 +273,7 @@ "healthy": -1, "fun": 2, "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "flags": [ "NUTRIENT_OVERRIDE" ], @@ -295,9 +295,9 @@ "calories": 17, "quench": 4, "fun": -5, - "price": 0, + "price": "0 cent", "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "comestible_type": "DRINK", @@ -324,7 +324,7 @@ "healthy": -1, "fun": 2, "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "flags": [ "NUTRIENT_OVERRIDE" ], @@ -346,9 +346,9 @@ "calories": 17, "quench": 6, "fun": -5, - "price": 0, + "price": "0 cent", "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "comestible_type": "DRINK", @@ -369,10 +369,10 @@ "calories": 35, "quench": 6, "fun": -15, - "price": 0, + "price": "0 cent", "primary_material": "water", "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "comestible_type": "DRINK", @@ -413,9 +413,9 @@ "calories": 35, "quench": 6, "fun": -15, - "price": 0, + "price": "0 cent", "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "comestible_type": "DRINK", @@ -441,9 +441,9 @@ "calories": 35, "quench": 6, "fun": -15, - "price": 0, + "price": "0 cent", "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "comestible_type": "DRINK", @@ -469,9 +469,9 @@ "calories": 35, "quench": 6, "fun": -20, - "price": 0, + "price": "0 cent", "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "comestible_type": "DRINK", @@ -499,10 +499,10 @@ "calories": 35, "quench": 4, "fun": -20, - "price": 0, + "price": "0 cent", "volume": "250 ml", "charges": 1, - "price_postapoc": 10, + "price_postapoc": "10 cent", "phase": "liquid", "comestible_type": "DRINK", "brewable": { "time": "7 days", "results": [ "hb_beer", "yeast" ] } @@ -528,10 +528,10 @@ "calories": 35, "quench": 4, "fun": -10, - "price": 0, + "price": "0 cent", "volume": "250 ml", "charges": 1, - "price_postapoc": 10, + "price_postapoc": "10 cent", "phase": "liquid", "comestible_type": "DRINK", "brewable": { "time": "7 days", "results": [ "hb_seltzer", "yeast" ] } @@ -553,7 +553,7 @@ "quench": 2, "fun": -5, "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "comestible_type": "DRINK", @@ -580,7 +580,7 @@ "healthy": -1, "fun": -20, "volume": "36 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "flags": [ "NUTRIENT_OVERRIDE" ], @@ -601,11 +601,11 @@ "quench": 8, "calories": 35, "description": "Milk with vinegar and natural rennet added. Used for making cheese if left in a fermenting vat for some time.", - "price": 10, + "price": "10 cent", "material": [ "milk" ], "volume": "250 ml", "charges": 1, - "price_postapoc": 10, + "price_postapoc": "10 cent", "phase": "liquid", "fun": -12, "flags": [ "NUTRIENT_OVERRIDE" ], @@ -626,9 +626,9 @@ "calories": 35, "quench": 6, "fun": -15, - "price": 0, + "price": "0 cent", "volume": "16 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "comestible_type": "DRINK", @@ -650,9 +650,9 @@ "calories": 9, "quench": 6, "fun": -10, - "price": 0, + "price": "0 cent", "volume": "16 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 1, "phase": "liquid", "comestible_type": "DRINK", @@ -672,8 +672,8 @@ "quench": -10, "calories": 743, "description": "Malting grain that can be used for brewing.", - "price": 20, - "price_postapoc": 250, + "price": "20 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "veggy" ], "volume": "1 L", "flags": [ "EDIBLE_FROZEN", "RAW" ], @@ -700,8 +700,8 @@ "quench": -10, "calories": 743, "description": "Grainy cereal used for malting. A staple of brewing everywhere. It can also be ground into flour.", - "price": 20, - "price_postapoc": 250, + "price": "20 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "veggy" ], "volume": "1 L", "flags": [ "EDIBLE_FROZEN", "RAW" ], @@ -720,8 +720,8 @@ "quench": -10, "calories": 41, "description": "Soaked dandelions that can be used for brewing.", - "price": 20, - "price_postapoc": 250, + "price": "20 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "EDIBLE_FROZEN", "RAW" ], @@ -749,8 +749,8 @@ "quench": 40, "calories": 26, "description": "Dandelions soaked in hot water, used for making dandelion wine.", - "price": 20, - "price_postapoc": 250, + "price": "20 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "EDIBLE_FROZEN", "RAW" ], @@ -771,11 +771,11 @@ "quench": 8, "calories": 132, "description": "Milk inoculated with lactobacillus. It requires some time fermenting to hopefully end up as delicious yogurt.", - "price": 20, + "price": "20 cent", "material": [ "milk" ], "volume": "250 ml", "charges": 1, - "price_postapoc": 20, + "price_postapoc": "20 cent", "phase": "liquid", "fun": -12, "flags": [ "NUTRIENT_OVERRIDE" ], @@ -801,9 +801,9 @@ "calories": 106, "quench": 6, "fun": -4, - "price": 0, + "price": "0 cent", "volume": "36 ml", - "price_postapoc": 2, + "price_postapoc": "2 cent", "charges": 1, "phase": "liquid", "comestible_type": "DRINK", diff --git a/data/json/items/comestibles/carnivore.json b/data/json/items/comestibles/carnivore.json index ad9e824f06d1e..a2d59d6595c4a 100644 --- a/data/json/items/comestibles/carnivore.json +++ b/data/json/items/comestibles/carnivore.json @@ -20,8 +20,8 @@ "//": "Nutrition information from USDA", "weight": "100 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 15, + "price": "10 USD", + "price_postapoc": "15 cent", "spoils_in": "12 hours", "flags": [ "SMOKABLE", "RAW" ], "smoking_result": "froglegs_smoked", @@ -36,7 +36,7 @@ "parasites": 0, "spoils_in": "1 day", "flags": [ "EATEN_HOT" ], - "price_postapoc": 100 + "price_postapoc": "1 USD" }, { "id": "froglegs_smoked", @@ -45,7 +45,7 @@ "name": { "str": "pair of smoked frog legs", "str_pl": "pairs of smoked frog legs" }, "color": "brown", "spoils_in": "24 days", - "price_postapoc": 200, + "price_postapoc": "2 USD", "quench": -1, "fun": 5, "flags": [ "EATEN_HOT", "SMOKED", "SMOKABLE" ], @@ -60,8 +60,8 @@ "//": "Nutrition information based on whitefish", "weight": "148 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "spoils_in": "12 hours", "flags": [ "SMOKABLE", "RAW" ], "smoking_result": "fish_smoked", @@ -97,7 +97,7 @@ "description": "A cooked fish fillet. Very nutritious.", "proportional": { "price": 1.5 }, "spoils_in": "1 day", - "price_postapoc": 100, + "price_postapoc": "1 USD", "parasites": 0, "flags": [ "EATEN_HOT" ] }, @@ -110,8 +110,8 @@ "//": "Nutrition information based on whitefish", "weight": "148 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "spoils_in": "12 hours", "flags": [ "SMOKABLE", "RAW" ], "smoking_result": "lobster_smoked", @@ -126,7 +126,7 @@ "description": "A chunk of delicious cooked lobster meat.", "proportional": { "price": 1.5 }, "spoils_in": "1 day", - "price_postapoc": 150, + "price_postapoc": "1 USD 50 cent", "parasites": 0, "flags": [ "EATEN_HOT" ] }, @@ -139,8 +139,8 @@ "//": "Nutrition information roughly based on squid. if you know more pls expand", "weight": "148 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "spoils_in": "12 hours", "flags": [ "SMOKABLE", "RAW" ], "vitamins": [ [ "vitC", 0 ], [ "calcium", 6 ], [ "iron", 2 ] ], @@ -154,7 +154,7 @@ "description": "Cooked mollusk meat. Devoid of any parasites or bacteria due to heat, the only thing left to do is add sauce.", "proportional": { "price": 1.5 }, "spoils_in": "1 day", - "price_postapoc": 150, + "price_postapoc": "1 USD 50 cent", "parasites": 0, "flags": [ "EATEN_HOT" ] }, @@ -167,8 +167,8 @@ "//": "Nutrition information roughly based on a serving of 6 snails. if you know more pls expand", "weight": "15 g", "volume": "15 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "spoils_in": "12 hours", "flags": [ "RAW" ], "vitamins": [ [ "vitC", 0 ], [ "calcium", 3 ], [ "iron", 1 ] ], @@ -182,7 +182,7 @@ "description": "Cooked gastropods. A bit low on calories, but high in protein.", "proportional": { "price": 1.5 }, "spoils_in": "1 day", - "price_postapoc": 150, + "price_postapoc": "1 USD 50 cent", "parasites": 0, "flags": [ "EATEN_HOT" ] }, @@ -217,7 +217,7 @@ "name": { "str_sp": "human tallow" }, "copy-from": "tallow", "description": "A smooth white block of cleaned and rendered human fat. It will remain edible for a very long time, and can be used as an ingredient in many foods and projects.", - "price": 500, + "price": "5 USD", "//": "*May* have been commercially traded.", "material": [ "hflesh" ] }, @@ -269,8 +269,8 @@ "description": "A chunk of raw meat. You could eat it as-is, but cooking it is better.", "weight": "275 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "spoils_in": "1 day", "calories": 402, "fun": -10, @@ -304,8 +304,8 @@ "description": "A fatty cut of pork from the belly, popular in some cuisine. With proper technique, it can be used to create bacon. Not safe to consume in its current raw form.", "weight": "296 g", "volume": "250 ml", - "price": 650, - "price_postapoc": 150, + "price": "6 USD 50 cent", + "price_postapoc": "1 USD 50 cent", "spoils_in": "1 day", "calories": 1300, "fun": -10, @@ -322,8 +322,8 @@ "weight": "250 g", "volume": "250ml", "calories": 1556, - "price": 650, - "price_postapoc": 300, + "price": "6 USD 50 cent", + "price_postapoc": "3 USD", "spoils_in": "14 days", "vitamins": [ [ "vitC", 0 ], [ "calcium", 3 ], [ "iron", 22 ] ], "flags": [ "SMOKABLE", "RAW" ], @@ -337,8 +337,8 @@ "description": "A huge slab of uncut smoked bacon. You can eat it as is, but it would be more efficient to cut it into smaller portions with a knife.", "volume": "250ml", "calories": 1566, - "price": 2000, - "price_postapoc": 3000, + "price": "20 USD", + "price_postapoc": "30 USD", "//": "High price to reflect the rarity and value of bacon. Note that this is three pieces of it.", "spoils_in": "24 days", "fun": 5, @@ -354,8 +354,8 @@ "weight": "275 g", "volume": "250ml", "calories": 1556, - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "spoils_in": "14 days", "fun": -15, "vitamins": [ [ "vitC", 0 ], [ "calcium", 0 ], [ "iron", 0 ] ], @@ -503,8 +503,8 @@ "cooks_like": "meat_mutant_tainted_cooked", "spoils_in": "4 hours", "use_action": [ "POISON" ], - "price": 0, - "price_postapoc": 5, + "price": "0 cent", + "price_postapoc": "5 cent", "fun": -15, "flags": [ "TRADER_AVOID", "SMOKABLE", "BAD_TASTE", "RAW" ], "smoking_result": "meat_mutant_tainted_smoked" @@ -561,8 +561,8 @@ "type": "COMESTIBLE", "name": { "str_sp": "cooked meat" }, "description": "A chunk of cooked meat. It's filling and nutritious, but unseasoned and a bit bland.", - "price": 750, - "price_postapoc": 100, + "price": "7 USD 50 cent", + "price_postapoc": "1 USD", "parasites": 0, "calories": 402, "vitamins": [ [ "calcium", 2 ], [ "iron", 12 ] ], @@ -577,8 +577,8 @@ "type": "COMESTIBLE", "name": { "str_sp": "cooked pepper meat" }, "description": "A piece of cooked meat, properly seasoned with black pepper and salt. It's nutritious, yet basic seasoning adds a welcoming taste to this simple dish.", - "price": 800, - "price_postapoc": 150, + "price": "8 USD", + "price_postapoc": "1 USD 50 cent", "fun": 2, "parasites": 0, "calories": 402, @@ -595,8 +595,8 @@ "name": { "str_sp": "cooked fatty meat" }, "description": "A chunk of cooked fatty meat. Although absent of vitamins, it is very filling and delightfully greasy.", "calories": 1300, - "price": 900, - "price_postapoc": 300, + "price": "9 USD", + "price_postapoc": "3 USD", "//": "Luxury good.", "fun": 2, "parasites": 0, @@ -613,8 +613,8 @@ "name": { "str_sp": "cooked pepper fatty meat" }, "description": "A chunk of cooked fatty meat properly seasoned with black pepper and salt. Although absent of vitamins, it is very filling, tasty and delightfully greasy.", "calories": 1300, - "price": 920, - "price_postapoc": 320, + "price": "9 USD 20 cent", + "price_postapoc": "3 USD 20 cent", "fun": 3, "parasites": 0, "vitamins": [ ], @@ -702,8 +702,8 @@ "color": "red", "weight": "60 g", "volume": "50 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "flesh" ], "spoils_in": "1 day", "calories": 471, @@ -721,8 +721,8 @@ "color": "red", "weight": "55 g", "volume": "50 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "flesh" ], "spoils_in": "1 day", "calories": 471, @@ -736,7 +736,7 @@ "name": { "str_sp": "raw offal" }, "description": "A selection of uncooked internal organs and entrails. Filled with essential vitamins, but most people consider it a bit gross unless it's very carefully prepared.", "proportional": { "parasites": 0.5 }, - "price_postapoc": 25, + "price_postapoc": "25 cent", "delete": { "flags": [ "SMOKABLE" ] }, "relative": { "vitamins": [ [ "iron", 4 ] ], "fun": -5 } }, @@ -747,7 +747,7 @@ "name": { "str_sp": "cooked offal" }, "description": "A selection of cooked organs and entrails. Filled with essential vitamins, but pretty unappetizing in this form.", "parasites": 0, - "price_postapoc": 50, + "price_postapoc": "50 cent", "fun": -5, "flags": [ "EATEN_HOT" ] }, @@ -760,7 +760,7 @@ "snippet_category": "tainted_innards_desc", "spoils_in": "4 hours", "use_action": [ "POISON" ], - "price_postapoc": 0, + "price_postapoc": "0 cent", "fun": -25 }, { @@ -823,8 +823,8 @@ "description": "The stomach of a woodland creature. It is surprisingly durable.", "weight": "72 g", "volume": "250 ml", - "price_postapoc": 25, - "price": 200, + "price_postapoc": "25 cent", + "price": "2 USD", "spoils_in": "8 hours", "calories": 60, "quench": 1, @@ -857,8 +857,8 @@ "spoils_in": "24 days", "volume": "250 ml", "parasites": 0, - "price": 320, - "price_postapoc": 250, + "price": "3 USD 20 cent", + "price_postapoc": "2 USD 50 cent", "quench": -5, "fun": 4, "calories": 348, @@ -876,7 +876,7 @@ "color": "light_gray", "spoils_in": "24 days", "parasites": 0, - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "quench": -5, "fun": 4, "proportional": { "price": 2.0, "volume": 0.345, "weight": 0.345 }, @@ -893,7 +893,7 @@ "color": "light_red", "spoils_in": "24 days", "parasites": 0, - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "quench": -5, "fun": 4, "proportional": { "price": 2.0, "volume": 0.345, "weight": 0.345 }, @@ -912,7 +912,7 @@ "description": "Tasty meat that has been heavily smoked for preservation. It could be further smoked to dehydrate it completely.", "color": "brown", "spoils_in": "24 days", - "price_postapoc": 200, + "price_postapoc": "2 USD", "quench": -1, "fun": 5, "flags": [ "EATEN_HOT", "SMOKED", "SMOKABLE" ], @@ -926,7 +926,7 @@ "description": "Tasty fish that has been heavily smoked for long term preservation. It could be further smoked to dehydrate it completely.", "color": "brown", "spoils_in": "24 days", - "price_postapoc": 200, + "price_postapoc": "2 USD", "fun": 6, "flags": [ "EATEN_HOT", "SMOKED", "SMOKABLE" ], "smoking_result": "dry_fish" @@ -938,7 +938,7 @@ "name": { "str_sp": "smoked lobster" }, "description": "Tasty lobster that has been heavily smoked for long term preservation. It could be further smoked to dehydrate it completely.", "color": "brown", - "price_postapoc": 300, + "price_postapoc": "3 USD", "fun": 10, "flags": [ "EATEN_HOT", "SMOKED", "SMOKABLE" ], "smoking_result": "dry_lobster" @@ -950,7 +950,7 @@ "name": { "str_sp": "smoked mollusk" }, "description": "Tasty mollusk that has been heavily smoked for long term preservation. It could be further smoked to dehydrate it completely.", "color": "brown", - "price_postapoc": 300, + "price_postapoc": "3 USD", "fun": 10, "flags": [ "EATEN_HOT", "SMOKED", "SMOKABLE" ], "smoking_result": "dry_mollusk" @@ -1041,7 +1041,7 @@ "looks_like": "offal", "name": { "str_sp": "raw liver" }, "description": "A piece of liver from an animal. Although many dislike its texture, it's one of the more vitamin-rich parts of the animal. It is very good in sausages, but maybe a little less appetizing when cooked on its own.", - "price_postapoc": 25, + "price_postapoc": "25 cent", "quench": -4, "calories": 92, "vitamins": [ [ "vitC", 0 ], [ "calcium", 1 ], [ "iron", 28 ] ] @@ -1073,7 +1073,7 @@ "description": "Chock-full of A- and B-Vitamins! Cooked liver isn't all that bad, depending on how you feel about the texture, but this is probably the least fancy way to do it.", "parasites": 0, "fun": 0, - "price_postapoc": 50, + "price_postapoc": "50 cent", "delete": { "flags": [ "RAW" ] } }, { @@ -1103,8 +1103,8 @@ "description": "A soft, spongy substance found in bones, rich in fat. Chock-full of good stuff and doesn't taste too bad even raw, but beware of parasites.", "weight": "60 g", "volume": "50 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "spoils_in": "1 day", "calories": 471, "fun": -3, @@ -1153,7 +1153,7 @@ "name": { "str_sp": "raw brains" }, "description": "A chunk of brain from an animal. You wouldn't want to eat this raw…", "color": "light_gray", - "price_postapoc": 10, + "price_postapoc": "10 cent", "quench": 10, "parasites": 15, "calories": 78, @@ -1184,7 +1184,7 @@ "looks_like": "offal_cooked", "name": { "str_sp": "cooked brains" }, "description": "Now you can emulate those zombies you love so much! Preparing brain for eating is challenging, and this doesn't seem to be the best way to do it.", - "price_postapoc": 25, + "price_postapoc": "25 cent", "parasites": 0, "fun": -5, "extend": { "flags": [ "EATEN_HOT" ] }, @@ -1219,7 +1219,7 @@ "name": { "str_sp": "raw kidney" }, "description": "A chunk of kidney from an animal. Preparing it for cooking is a challenge unless you want the kitchen to smell strongly of urine.", "color": "brown", - "price_postapoc": 25, + "price_postapoc": "25 cent", "calories": 54, "vitamins": [ [ "vitC", 0 ], [ "calcium", 1 ], [ "iron", 25 ] ] }, @@ -1248,7 +1248,7 @@ "looks_like": "offal_cooked", "name": { "str_sp": "cooked kidney" }, "description": "No, this is not beans.", - "price_postapoc": 25, + "price_postapoc": "25 cent", "quench": 0, "fun": -2, "parasites": 0, @@ -1282,7 +1282,7 @@ "name": { "str_sp": "raw sweetbread" }, "description": "A piece of the thymus or pancreas of an animal. These are a delicacy, if prepared properly.", "color": "brown", - "price_postapoc": 25, + "price_postapoc": "25 cent", "quench": 0, "calories": 133, "vitamins": [ [ "vitC", 11 ], [ "calcium", 0 ], [ "iron", 5 ] ] @@ -1311,7 +1311,7 @@ "copy-from": "sweetbread", "looks_like": "meat_cooked", "name": { "str_sp": "cooked sweetbread" }, - "price_postapoc": 50, + "price_postapoc": "50 cent", "fun": -1, "description": "Normally a delicacy, but this style of preparation is missing something.", "parasites": 0, @@ -1327,9 +1327,9 @@ "container": "bag_iv", "comestible_type": "DRINK", "symbol": "~", - "price_postapoc": 10, + "price_postapoc": "10 cent", "description": "Blood extracted from a human being.", - "price": 0, + "price": "0 cent", "material": [ "hblood" ], "volume": "250 ml", "charges": 1, @@ -1343,7 +1343,7 @@ "name": { "str": "abstract bone" }, "category": "spare_parts", "color": "white", - "price": 0, + "price": "0 cent", "material": [ "bone" ], "weight": "1000 g", "flags": [ "RAW", "NUTRIENT_OVERRIDE", "INEDIBLE", "LUPINE" ] @@ -1356,7 +1356,7 @@ "weight": "225 g", "symbol": "%", "description": "A bone from some creature or other. Could be used in cooking and crafting.", - "price_postapoc": 10, + "price_postapoc": "10 cent", "milling": { "into": "meal_bone", "recipe": "meal_bone_mill_1_4" }, "volume": "250 ml", "longest_side": "40 cm", @@ -1370,7 +1370,7 @@ "symbol": "I", "description": "A huge bone of a large creature.", "copy-from": "bone_abstract", - "price_postapoc": 20, + "price_postapoc": "20 cent", "//": "While it would make sense to be able to mill it, the bone won't fit into a mill...", "volume": "36 L", "longest_side": "2000 cm", @@ -1388,10 +1388,10 @@ "comestible_type": "FOOD", "symbol": "%", "quench": -10, - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "calories": 1923, "description": "A chunk of raw fat. You could eat it as-is, but it is better used as an ingredient in other foods or projects.", - "price": 0, + "price": "0 cent", "material": [ "flesh" ], "volume": "250 ml", "parasites": 32, @@ -1487,8 +1487,8 @@ "symbol": "%", "calories": 174, "description": "A piece of meat that's obviously unhealthy. You could eat it, but it will poison you.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "flesh" ], "volume": "250 ml", "fun": -10, @@ -1513,8 +1513,8 @@ "fun": -20, "vitamins": [ ], "spoils_in": "2 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "flags": [ "TRADER_AVOID", "NUTRIENT_OVERRIDE", "NO_REPAIR" ] }, { @@ -1535,8 +1535,8 @@ "fun": -20, "vitamins": [ ], "spoils_in": "2 days", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "flags": [ "TRADER_AVOID", "NUTRIENT_OVERRIDE", "NO_REPAIR" ] }, { @@ -1567,8 +1567,8 @@ "symbol": "%", "calories": 17, "description": "A rotten, brittle bone from some unnatural creature or other. Could be used to make some stuff, like charcoal or glue. You could eat it, but it will poison you.", - "price": 0, - "price_postapoc": 5, + "price": "0 cent", + "price_postapoc": "5 cent", "milling": { "into": "meal_bone_tainted", "recipe": "meal_bone_tainted_mill_1_4" }, "//": "Not for use in edible recipes, and should require ~200% as much as normal for applicable inedible recipes except for charcoal.", "material": [ "bone" ], @@ -1589,8 +1589,8 @@ "symbol": "%", "calories": 235, "description": "A wet, green chunk of spongy goop extracted from a rotten bone. You could eat it, but it will poison you.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "flesh" ], "volume": "50 ml", "fun": -10, @@ -1626,8 +1626,8 @@ "symbol": "%", "calories": 9, "description": "A watery yellow glob of fat from some unnatural creature or other. You could eat it, but it will poison you.", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "//": "Not for use in edible recipes, and should require ~200% as much as normal for applicable inedible recipes.", "material": [ "flesh" ], "volume": "250 ml", @@ -1682,8 +1682,8 @@ "symbol": ",", "calories": 60, "description": "A small boiled stomach from an animal, nothing else. It looks all but appetizing.", - "price": 375, - "price_postapoc": 10, + "price": "3 USD 75 cent", + "price_postapoc": "10 cent", "material": [ "flesh" ], "volume": "250 ml", "flags": [ "EATEN_HOT" ], @@ -1711,8 +1711,8 @@ "quench": -2, "calories": 350, "description": "A carefully folded raw skin harvested from an animal. You can cure it for storage and tanning, or eat it if you're desperate enough.", - "price": 330, - "price_postapoc": 20, + "price": "3 USD 30 cent", + "price_postapoc": "20 cent", "material": [ "flesh" ], "flags": [ "TRADER_AVOID" ], "fun": -12 @@ -1724,9 +1724,9 @@ "name": { "str_sp": "tainted hide" }, "spoils_in": "6 hours", "use_action": [ "POISON" ], - "price_postapoc": 10, + "price_postapoc": "10 cent", "description": "A carefully folded poisonous raw skin harvested from an unnatural creature. You can cure it for storage and tanning.", - "price": 0 + "price": "0 cent" }, { "type": "COMESTIBLE", @@ -1738,9 +1738,9 @@ "spoils_in": "3 hours", "calories": 3, "use_action": [ "POISON" ], - "price_postapoc": 0, + "price_postapoc": "0 cent", "description": "Shredded scraps of raw skin from an unnatural creature. It can't have much use.", - "price": 0 + "price": "0 cent" }, { "type": "COMESTIBLE", @@ -1773,8 +1773,8 @@ "quench": -20, "calories": 350, "description": "A carefully folded raw skin harvested from a fur-bearing animal. It still has the fur attached. You can cure it for storage and tanning, or eat it if you're desperate enough.", - "price": 330, - "price_postapoc": 100, + "price": "3 USD 30 cent", + "price_postapoc": "1 USD", "material": [ "fur", "flesh" ], "flags": [ "NO_SALVAGE", "TRADER_AVOID" ], "fun": -24 @@ -1787,7 +1787,7 @@ "spoils_in": "6 hours", "use_action": [ "POISON" ], "description": "A carefully folded raw skin harvested from a fur-bearing unnatural creature. It still has the fur attached and is poisonous. You can cure it for storage and tanning.", - "price": 0 + "price": "0 cent" }, { "type": "COMESTIBLE", @@ -1809,8 +1809,8 @@ "calories": 200, "quench": 10, "description": "A thick mass of flesh superficially resembling a mammalian heart. It's the size of your fist and covered in dimpled grooves.", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "flesh" ], "volume": "500 ml", "fun": -25, @@ -1828,8 +1828,8 @@ "healthy": -10, "calories": 347, "description": "A thick, hulking mass of flesh that's easily the size of your head, superficially resembling a mammalian heart and covered in ribbed grooves. It's still full of whatever passes for blood in jabberwocks, and is heavy in your hands. After everything you've seen lately, you can't help but remember old sayings about eating the hearts of your enemies…", - "price": 6500, - "price_postapoc": 500, + "price": "65 USD", + "price_postapoc": "5 USD", "material": [ "flesh" ], "volume": "1 L", "fun": -25, @@ -1847,8 +1847,8 @@ "healthy": -1, "calories": 217, "description": "A huge strip of muscle - all that remains of a putrid heart that has been sliced open and drained of blood. It could be eaten if you're hungry, but looks *disgusting*.", - "price": 1000, - "price_postapoc": 25, + "price": "10 USD", + "price_postapoc": "25 cent", "material": [ "flesh" ], "use_action": [ "POISON" ], "volume": "250 ml", @@ -1878,7 +1878,7 @@ "description": "The alien beauty of this indigo flower is betrayed by its disgustingly fleshy composition. What from afar appear to be petals are but layered membranes of transparent veiny flesh, given color by a covering of blue iridescent ichor. Even if it is certainly poisonous, it has a pleasant medicinal smell to it.", "stim": 30, "healthy": -10, - "price_postapoc": 10, + "price_postapoc": "10 cent", "fun": 15, "use_action": { "type": "consume_drug", @@ -1898,7 +1898,7 @@ "type": "COMESTIBLE", "name": { "str": "leech bark", "str_pl": "scraps of leech bark" }, "description": "Dry and tough bark matter harvested from an alien plant. It is slightly translucent, and if placed against the light you can distinguish glistening blue veins running through it.", - "price_postapoc": 10, + "price_postapoc": "10 cent", "vitamins": [ [ "vitC", 0 ], [ "calcium", 2 ], [ "iron", 8 ], [ "mutant_toxin", 12 ] ] }, { @@ -1934,7 +1934,7 @@ "name": { "str_sp": "demihuman tallow" }, "copy-from": "tallow", "description": "A smooth white block of cleaned and rendered demihuman fat. It will remain edible for a very long time, and can be used as an ingredient in many foods and projects.", - "price": 500, + "price": "5 USD", "//": "*May* have been commercially traded.", "material": [ "flesh" ], "extend": { "flags": [ "STRICT_HUMANITARIANISM" ] } @@ -2017,7 +2017,7 @@ ], "description": "Delicious oil-fried meat.", "color": "brown", - "price_postapoc": 200, + "price_postapoc": "2 USD", "quench": -1, "fun": 6, "weight": "298 g", @@ -2037,8 +2037,8 @@ "symbol": "%", "calories": 0, "description": "A piece of mi-go meat that's obviously alien, given its pink color, odd odor, and strange texture. It would not be advisable to try to eat it.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mi-go_flesh" ], "volume": "250 ml", "fun": -10, @@ -2069,8 +2069,8 @@ "symbol": "%", "calories": 0, "description": "An unrecognized structural element from inside a mi-go. It's strong and springy, somewhat like cartilage, but a bit stiffer. It's also a deep green color, and might possibly serve a scaffolding role, like bone.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mi-go_bone" ], "volume": "250 ml", "fun": -10, diff --git a/data/json/items/comestibles/casseroles.json b/data/json/items/comestibles/casseroles.json index 6f5283771c624..97ae05e4f4241 100644 --- a/data/json/items/comestibles/casseroles.json +++ b/data/json/items/comestibles/casseroles.json @@ -13,8 +13,8 @@ "fun": 6, "volume": "250 ml", "description": "It's cheesy and indulgent, although the mix of tender kernels of corn, veggies, fresh herbs, and a pop of heat keep it in check so it's not too heavy for the apocalypse.", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "material": [ "veggy", "milk" ], "flags": [ "EATEN_HOT" ] }, @@ -32,8 +32,8 @@ "fun": 4, "volume": "250 ml", "description": "This cheesy spinach casserole is cheesy, packed with hearty spinach, and totally delicious.", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "material": [ "veggy", "milk", "egg" ], "flags": [ "EATEN_HOT" ] }, @@ -51,8 +51,8 @@ "fun": 6, "volume": "250 ml", "description": "Fish noodle casserole is a casserole primarily made with pasta and canned tuna, with canned peas and corn sometimes added.", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "material": [ "flesh", "wheat", "veggy" ], "flags": [ "EATEN_HOT" ] }, @@ -70,8 +70,8 @@ "fun": 10, "volume": "250 ml", "description": "A classic New England casserole made with butter, lobster, and crackers, in roughly that order.", - "price": 60, - "price_postapoc": 150, + "price": "60 cent", + "price_postapoc": "1 USD 50 cent", "material": [ "flesh", "wheat", "milk" ], "flags": [ "EATEN_HOT" ] }, @@ -89,8 +89,8 @@ "healthy": -1, "calories": 301, "description": "A good portion of tasty eggplant parmigiana.", - "price": 100, - "price_postapoc": 300, + "price": "1 USD", + "price_postapoc": "3 USD", "material": [ "veggy", "milk" ], "primary_material": "veggy", "volume": "250 ml", diff --git a/data/json/items/comestibles/cereal.json b/data/json/items/comestibles/cereal.json index ea40cd3bdce03..77d46314c486a 100644 --- a/data/json/items/comestibles/cereal.json +++ b/data/json/items/comestibles/cereal.json @@ -13,8 +13,8 @@ "quench": -2, "calories": 145, "description": "A generic box of cereal, you shouldn't see this.", - "price": 300, - "price_postapoc": 200, + "price": "3 USD", + "price_postapoc": "2 USD", "material": [ "wheat" ], "flags": [ "EDIBLE_FROZEN", "USE_EAT_VERB" ], "looks_like": "cereal", diff --git a/data/json/items/comestibles/dairy.json b/data/json/items/comestibles/dairy.json index e802d6dc156f4..dad442a7dac77 100644 --- a/data/json/items/comestibles/dairy.json +++ b/data/json/items/comestibles/dairy.json @@ -12,8 +12,8 @@ "quench": 25, "calories": 132, "description": "Baby cow food, appropriated for human consumption. Spoils rapidly.", - "price": 38, - "price_postapoc": 50, + "price": "38 cent", + "price_postapoc": "50 cent", "//": "A 12-charge gallon currently goes for around US$4.", "material": [ "milk" ], "volume": "250 ml", @@ -46,8 +46,8 @@ "name": { "str_sp": "raw milk" }, "copy-from": "milk", "spoils_in": "12 hours", - "price": 19, - "price_postapoc": 50, + "price": "19 cent", + "price_postapoc": "50 cent", "contamination": [ { "disease": "bad_food", "probability": 5 } ], "description": "This is raw, unhomogenized and unpasteurized milk from a cow. It couldn't be any fresher unless you drank it straight from the cow, which might upset it. Depending on your dietary sensibilities, you might want to pasteurize or even boil this before drinking." }, @@ -59,8 +59,8 @@ "spoils_in": "7 d", "container": "carton_sealed", "description": "This is milk that has been pasteurized at much higher temperatures than normal. It tastes slightly different, but, unopened, will last far longer than regular milk.", - "price": 50, - "price_postapoc": 150 + "price": "50 cent", + "price_postapoc": "1 USD 50 cent" }, { "type": "COMESTIBLE", @@ -72,8 +72,8 @@ "calories": 207, "quench": 10, "description": "Milk that's had about 60% of its water removed prior to canning.", - "price": 38, - "price_postapoc": 200, + "price": "38 cent", + "price_postapoc": "2 USD", "material": [ "milk" ], "volume": "500 ml", "charges": 2 @@ -89,7 +89,7 @@ "quench": 20, "calories": 161, "description": "This is cultured milk defatted either due to churning or curdling. Spoils quickly.", - "price": 1, + "price": "1 cent", "vitamins": [ [ "vitC", 1 ], [ "calcium", 1 ] ] }, { @@ -104,8 +104,8 @@ "symbol": "%", "calories": 150, "description": "Delicious fermented dairy. It tastes of vanilla.", - "price": 190, - "price_postapoc": 100, + "price": "1 USD 90 cent", + "price_postapoc": "1 USD", "material": [ "milk" ], "volume": "250 ml", "charges": 1, @@ -160,8 +160,8 @@ "container": "jar_glass_sealed", "calories": 112, "description": "Clarified butter, free from milk solids and water. Will last a very long time.", - "price": 420, - "price_postapoc": 50, + "price": "4 USD 20 cent", + "price_postapoc": "50 cent", "material": [ "oil" ], "charges": 1, "phase": "liquid", @@ -179,8 +179,8 @@ "symbol": "%", "calories": 302, "description": "Sugary, fermented dairy. A wonderful treat.", - "price": 210, - "price_postapoc": 250, + "price": "2 USD 10 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "milk", "junk" ], "volume": "250 ml", "charges": 1, @@ -202,8 +202,8 @@ "quench": 8, "calories": 35, "description": "Milk that has been curdled with vinegar and rennet. It still needs to be salted and drained of whey.", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "milk" ], "volume": "250 ml", "charges": 1, @@ -221,8 +221,8 @@ "quench": -5, "calories": 135, "description": "Hard, dry cheese made to last, unlike modern processed cheese. Will make you thirsty though.", - "price": 385, - "price_postapoc": 150, + "price": "3 USD 85 cent", + "price_postapoc": "1 USD 50 cent", "vitamins": [ [ "calcium", 32 ], [ "iron", 2 ] ], "fun": 5, "flags": [ "NUTRIENT_OVERRIDE" ] @@ -262,8 +262,8 @@ "container": "plastic_bucket", "material": [ "milk" ], "description": "Unaged curdled milk and whey, made by draining cheese rather than pressing like cheese curds. The retained whey keeps the curds loose and soft, giving a somewhat soupy texture to this lower calorie variety of cheese.", - "price": 385, - "price_postapoc": 150, + "price": "3 USD 85 cent", + "price_postapoc": "1 USD 50 cent", "vitamins": [ [ "calcium", 32 ], [ "iron", 2 ] ], "fun": 1 }, @@ -273,8 +273,8 @@ "name": { "str_sp": "cottage cheese with fruit" }, "copy-from": "cottage_cheese", "description": "Unaged curdled milk and whey, made by draining cheese rather than pressing like cheese curds. The retained whey keeps the curds loose and soft, giving a somewhat soupy texture to this lower calorie variety of cheese. By adding fruits to it you've made what might be a full meal.", - "price": 585, - "price_postapoc": 200, + "price": "5 USD 85 cent", + "price_postapoc": "2 USD", "vitamins": [ [ "calcium", 32 ], [ "iron", 2 ], [ "vitC", 10 ] ], "fun": 3 }, @@ -284,8 +284,8 @@ "name": { "str_sp": "cottage cheese with savory vegetables" }, "copy-from": "cottage_cheese", "description": "Unaged curdled milk and whey, made by draining cheese rather than pressing like cheese curds. The retained whey keeps the curds loose and soft, giving a somewhat soupy texture to this lower calorie variety of cheese. By adding savory vegetables to it you've made what might be a full meal.", - "price": 485, - "price_postapoc": 175, + "price": "4 USD 85 cent", + "price_postapoc": "1 USD 75 cent", "calories": 475, "vitamins": [ [ "calcium", 32 ], [ "iron", 8 ] ], "fun": 2 @@ -302,8 +302,8 @@ "symbol": "%", "calories": 85, "description": "A ball of white mozzarella cheese.", - "price": 450, - "price_postapoc": 60, + "price": "4 USD 50 cent", + "price_postapoc": "60 cent", "material": [ "milk" ], "primary_material": "cheese", "volume": "250 ml", @@ -429,8 +429,8 @@ "quench": 12, "calories": 103, "description": "Cow's milk that has been partly dehydrated and sweetened. A key ingredient in many sweets.", - "price": 70, - "price_postapoc": 100, + "price": "70 cent", + "price_postapoc": "1 USD", "material": [ "milk", "junk" ], "primary_material": "milk", "volume": "500 ml", @@ -463,8 +463,8 @@ "quench": 10, "calories": 490, "description": "Cream that has been skimmed from the top of raw milk left to sit.", - "price": 70, - "price_postapoc": 150, + "price": "70 cent", + "price_postapoc": "1 USD 50 cent", "looks_like": "milk", "material": [ "milk" ], "volume": "250 ml", @@ -488,8 +488,8 @@ "healthy": -1, "calories": 490, "description": "It is an Italian spoon dessert based on savoiardi soaked in coffee and covered with a cream composed of mascarpone and eggs.", - "price": 100, - "price_postapoc": 300, + "price": "1 USD", + "price_postapoc": "3 USD", "material": [ "wheat", "milk" ], "primary_material": "milk", "volume": "250 ml", @@ -509,8 +509,8 @@ "symbol": "%", "calories": 250, "description": "A portion of mascarpone, a dairy product obtained from the processing of cream and citric acid, a typical Italian spreadable cheese.", - "price": 200, - "price_postapoc": 250, + "price": "2 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "milk" ], "volume": "250 ml", "phase": "solid", diff --git a/data/json/items/comestibles/drink.json b/data/json/items/comestibles/drink.json index fb07b16a40667..bf4ac9ef1038b 100644 --- a/data/json/items/comestibles/drink.json +++ b/data/json/items/comestibles/drink.json @@ -12,8 +12,8 @@ "quench": 35, "calories": 120, "description": "Pressed from fresh apples, tasty and nutritious. This is a non-alcoholic beverage, which sometimes confuses foreigners. It's instead called 'hard cider' when alcohol is involved.", - "price": 85, - "price_postapoc": 25, + "price": "85 cent", + "price_postapoc": "25 cent", "material": [ "fruit" ], "primary_material": "water", "volume": "250 ml", @@ -37,8 +37,8 @@ "quench": 22, "calories": 50, "description": "Wait, you can milk almonds? Not quite, but you can blend them with water! A dairy-free alternative high in calcium, and rival to soy milk.", - "price": 40, - "price_postapoc": 50, + "price": "40 cent", + "price_postapoc": "50 cent", "material": [ "water", "nut" ], "volume": "250 ml", "charges": 1, @@ -61,8 +61,8 @@ "quench": 22, "calories": 110, "description": "Wait, you can milk soybeans? Not quite, but you can blend them with water! A dairy-free alternative high in protein, and rival to almond milk.", - "price": 40, - "price_postapoc": 50, + "price": "40 cent", + "price_postapoc": "50 cent", "material": [ "water", "veggy" ], "volume": "250 ml", "charges": 1, @@ -83,8 +83,8 @@ "addiction_potential": 8, "calories": 35, "description": "This serving of coffee has twice as much coffee as black coffee, as well as some caffeine pills and sugar for good measure. You didn't plan to sleep this week anyway, right?", - "price": 300, - "price_postapoc": 100, + "price": "3 USD", + "price_postapoc": "1 USD", "flags": [ "EATEN_HOT", "NO_AUTO_CONSUME" ], "fun": 10 }, @@ -99,8 +99,8 @@ "sleepiness_mod": 5, "quench": 30, "description": "Some wild sarsaparilla root steeped in boiling water. Energizing.", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "fun": 1, "flags": [ "EATEN_HOT", "NO_AUTO_CONSUME", "NUTRIENT_OVERRIDE" ] }, @@ -117,8 +117,8 @@ "quench": 34, "calories": 2, "description": "A healthy beverage made from bee balm steeped in boiling water. Can be used to reduce negative effects of common cold or flu.", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "fun": 1, "flags": [ "EATEN_HOT", "NO_AUTO_CONSUME" ] }, @@ -136,8 +136,8 @@ "quench": 5, "calories": 445, "description": "A dense, sweet, creamy sauce, often used in curries.", - "price": 350, - "price_postapoc": 500, + "price": "3 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "fruit" ], "volume": "500 ml", "phase": "liquid", @@ -162,8 +162,8 @@ "quench": 40, "calories": 120, "description": "A traditional south Asian mixed-spice tea with milk.", - "price": 475, - "price_postapoc": 50, + "price": "4 USD 75 cent", + "price_postapoc": "50 cent", "material": [ "milk", "water" ], "volume": "250 ml", "charges": 1, @@ -188,8 +188,8 @@ "quench": 34, "calories": 1, "description": "A healthy beverage made from chamomile flowers steeped in boiling water. Can be used to treat insomnia.", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE", "NO_AUTO_CONSUME" ], "fun": 1 }, @@ -206,8 +206,8 @@ "quench": 36, "calories": 116, "description": "A chocolate-flavored beverage made of artificial flavoring and milk byproducts. Shelf stable and vaguely appetizing even when lukewarm.", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "material": [ "junk", "milk" ], "volume": "250 ml", "charges": 1, @@ -232,8 +232,8 @@ "addiction_potential": 2, "calories": 2, "description": "The morning ritual of the pre-apocalyptic world, created from coffee cherries through a complex process of seed removal, roasting, grinding, and brewing. Coffee is substantially richer in caffeine than its rival tea.", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "material": [ "water" ], "volume": "250 ml", "charges": 1, @@ -254,8 +254,8 @@ "quench": 40, "calories": 2, "description": "Homemade not-coffee created from the Kentucky coffeetree, just like the Meskwaki tribe! Doesn't actually have any caffeine, and is very bitter, but it'll pass in a pinch.", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "material": [ "water" ], "volume": "250 ml", "charges": 1, @@ -317,8 +317,8 @@ "quench": 36, "calories": 11, "description": "Toasted, ground chicory root steeped in boiling water. This bitter brew is used as a coffee substitute, though it tastes nothing like coffee.", - "price": 125, - "price_postapoc": 25, + "price": "1 USD 25 cent", + "price_postapoc": "25 cent", "volume": "250 ml", "charges": 1, "material": [ "water" ], @@ -344,8 +344,8 @@ "addiction_potential": 2, "calories": 98, "description": "Things go better with cola. Sugar water with caffeine added.", - "price": 95, - "price_postapoc": 50, + "price": "95 cent", + "price_postapoc": "50 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -372,8 +372,8 @@ "addiction_potential": 2, "calories": 115, "description": "It tastes and looks like windshield wiper fluid, but it's loaded to the brim with sugar and caffeine.", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -400,8 +400,8 @@ "addiction_potential": 2, "calories": 126, "description": "A caffeinated, carbonated drink, flavored with vanilla.", - "price": 95, - "price_postapoc": 50, + "price": "95 cent", + "price_postapoc": "50 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -423,8 +423,8 @@ "quench": 37, "calories": 112, "description": "Made from real Massachusetts cranberries. Quite sour, but nutritious.", - "price": 80, - "price_postapoc": 50, + "price": "80 cent", + "price_postapoc": "50 cent", "material": [ "fruit" ], "primary_material": "water", "volume": "250 ml", @@ -447,8 +447,8 @@ "quench": 27, "calories": 105, "description": "Mixing cranberry juice and lemon-lime soda works out quite well.", - "price": 110, - "price_postapoc": 50, + "price": "1 USD 10 cent", + "price_postapoc": "50 cent", "material": [ "junk", "fruit" ], "primary_material": "water", "volume": "250 ml", @@ -470,8 +470,8 @@ "quench": 48, "calories": 1, "description": "A healthy beverage made from dandelion roots steeped in boiling water.", - "price": 50, - "price_postapoc": 25, + "price": "50 cent", + "price_postapoc": "25 cent", "volume": "250 ml", "charges": 1, "material": [ "water" ], @@ -491,8 +491,8 @@ "quench": 48, "calories": 101, "description": "A healthy beverage made from dandelion and burdock roots steeped in boiling water. The addition of burdock makes it more nourishing and slightly tastier.", - "price": 50, - "price_postapoc": 25, + "price": "50 cent", + "price_postapoc": "25 cent", "volume": "250 ml", "charges": 1, "material": [ "water" ], @@ -514,8 +514,8 @@ "quench": 25, "calories": 118, "description": "Smooth and rich, this spoon-coating mixture of milk, eggs, and cinnamon sugar is a popular traditional holiday drink. This type isn't spiked with alcohol, but it is still delicious. Meant to be stored cold, it will spoil rapidly.", - "price": 40, - "price_postapoc": 100, + "price": "40 cent", + "price_postapoc": "1 USD", "material": [ "milk", "egg" ], "volume": "250 ml", "phase": "liquid", @@ -542,8 +542,8 @@ "addiction_potential": 2, "calories": 157, "description": "A heavily-caffeinated soft drink. Popular among those who need to stay up late working.", - "price": 170, - "price_postapoc": 50, + "price": "1 USD 70 cent", + "price_postapoc": "50 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -565,8 +565,8 @@ "quench": 45, "addiction_potential": 9, "description": "According to the label, this loathsome-tasting beverage is called ATOMIC POWER THIRST. Alongside the lengthy health warning, it promises to make the consumer UNCOMFORTABLY ENERGETIC using ELECTROLYTES and THE POWER OF THE ATOM.", - "price": 1500, - "price_postapoc": 150, + "price": "15 USD", + "price_postapoc": "1 USD 50 cent", "//": "Check whether Rivtech-Expensive applies to their energy drinks", "fun": -1 }, @@ -583,8 +583,8 @@ "quench": 44, "calories": 1, "description": "A healthy beverage made from herbs steeped in boiling water.", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "volume": "250 ml", "charges": 1, "material": [ "water" ], @@ -602,8 +602,8 @@ "weight": "257 g", "volume": "250 ml", "charges": 1, - "price": 285, - "price_postapoc": 50, + "price": "2 USD 85 cent", + "price_postapoc": "50 cent", "phase": "liquid", "container": "bottle_plastic", "material": [ "milk", "junk" ], @@ -628,8 +628,8 @@ "weight": "237 g", "volume": "250 ml", "charges": 1, - "price": 250, - "price_postapoc": 75, + "price": "2 USD 50 cent", + "price_postapoc": "75 cent", "phase": "liquid", "container": "bottle_plastic", "sealed": false, @@ -653,8 +653,8 @@ "copy-from": "juice", "spoils_in": "180 days", "description": "A sweet liquid with a vaguely fruity taste. Having been pasteurized, it will last for a long time.", - "price": 90, - "price_postapoc": 150, + "price": "90 cent", + "price_postapoc": "1 USD 50 cent", "flags": [ "EATEN_COLD", "IRREPLACEABLE_CONSUMABLE" ], "fun": 1 }, @@ -706,8 +706,8 @@ "quench": 20, "calories": 32, "description": "Freshly-squeezed from real fruit! Tasty and nutritious.", - "price": 80, - "price_postapoc": 50, + "price": "80 cent", + "price_postapoc": "50 cent", "material": [ "fruit" ], "primary_material": "water", "volume": "250 ml", @@ -742,8 +742,8 @@ "quench": 40, "calories": 299, "description": "An alcohol-free variant of the pina colada cocktail, consisting of pineapple juice and coconut milk.", - "price": 80, - "price_postapoc": 50, + "price": "80 cent", + "price_postapoc": "50 cent", "material": [ "fruit", "water" ], "primary_material": "water", "volume": "250 ml", @@ -767,8 +767,8 @@ "quench": 35, "calories": 70, "description": "An alcohol-free variant of the Bloody Mary cocktail; basically tomato juice mixed with some spices.", - "price": 600, - "price_postapoc": 250, + "price": "6 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "water", "tomato" ], "primary_material": "water", "volume": "250 ml", @@ -792,8 +792,8 @@ "quench": 18, "calories": 169, "description": "An alcohol-free mixed drink made from grenadine syrup and lemon-lime soda, lemonade or orange juice.", - "price": 80, - "price_postapoc": 50, + "price": "80 cent", + "price_postapoc": "50 cent", "material": [ "junk", "water" ], "primary_material": "water", "volume": "250 ml", @@ -820,8 +820,8 @@ "addiction_potential": 2, "calories": 162, "description": "An alcohol-free mixed drink made from grenadine syrup and cola.", - "price": 80, - "price_postapoc": 50, + "price": "80 cent", + "price_postapoc": "50 cent", "material": [ "junk", "water" ], "primary_material": "water", "volume": "250 ml", @@ -886,8 +886,8 @@ "quench": 50, "calories": 135, "description": "Clear juice obtained by cooking fruit in a large volume of water.", - "price": 62, - "price_postapoc": 50, + "price": "62 cent", + "price_postapoc": "50 cent", "material": [ "fruit" ], "primary_material": "water", "volume": "250 ml", @@ -910,8 +910,8 @@ "quench": 35, "calories": 104, "description": "Lemon juice mixed with water and sugar to dull the sourness. Delicious and refreshing.", - "price": 80, - "price_postapoc": 50, + "price": "80 cent", + "price_postapoc": "50 cent", "material": [ "fruit" ], "primary_material": "water", "volume": "250 ml", @@ -949,8 +949,8 @@ "healthy": -1, "calories": 105, "description": "Unlike cola this is caffeine free, however it is still carbonated and has plenty of sugar and a lemon-lime taste.", - "price": 95, - "price_postapoc": 50, + "price": "95 cent", + "price_postapoc": "50 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -968,8 +968,8 @@ "spoils_in": "10 days", "quench": 34, "description": "A healthy beverage made from lotus flowers steeped in boiling water.", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "fun": 1, "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE" ] }, @@ -983,8 +983,8 @@ "weight": "263 g", "volume": "250 ml", "charges": 1, - "price": 335, - "price_postapoc": 50, + "price": "3 USD 35 cent", + "price_postapoc": "50 cent", "phase": "liquid", "container": "bottle_plastic", "sealed": false, @@ -1019,8 +1019,8 @@ "addiction_potential": 2, "calories": 69, "description": "Coffee syrup or black coffee mixed into milk. It's been the state drink of Rhode Island since 1993.", - "price": 480, - "price_postapoc": 50, + "price": "4 USD 80 cent", + "price_postapoc": "50 cent", "material": [ "milk", "water" ], "primary_material": "milk", "volume": "500 ml", @@ -1046,8 +1046,8 @@ "quench": 40, "calories": 69, "description": "Hot tea with cold milk.", - "price": 450, - "price_postapoc": 50, + "price": "4 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "milk", "water" ], "primary_material": "water", "volume": "500 ml", @@ -1071,8 +1071,8 @@ "quench": 35, "calories": 117, "description": "Store-bought orange juice. Refreshing, tasty, and a great source of Vitamin C.", - "price": 14, - "price_postapoc": 50, + "price": "14 cent", + "price_postapoc": "50 cent", "material": [ "fruit" ], "primary_material": "water", "volume": "250 ml", @@ -1097,8 +1097,8 @@ "calories": 111, "//": "Calories shouldn't matter since it won't spawn - should only be craftable.", "description": "Freshly-squeezed from real oranges! Tasty and nutritious.", - "price": 14, - "price_postapoc": 50, + "price": "14 cent", + "price_postapoc": "50 cent", "material": [ "fruit" ], "primary_material": "water", "volume": "250 ml", @@ -1122,8 +1122,8 @@ "healthy": -1, "calories": 130, "description": "Unlike cola this is caffeine free, however it is still carbonated, sweet, and tastes vaguely orange-like.", - "price": 95, - "price_postapoc": 50, + "price": "95 cent", + "price_postapoc": "50 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -1143,8 +1143,8 @@ "symbol": "~", "quench": 44, "description": "A fragrant and healthy beverage made from pine needles steeped in boiling water.", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "volume": "250 ml", "charges": 1, "calories": 1, @@ -1169,8 +1169,8 @@ "healthy": -1, "calories": 63, "description": "A mass-produced grape flavored beverage of artificial origin. Good for when you want something that tastes like fruit, but still don't care about your health.", - "price": 85, - "price_postapoc": 50, + "price": "85 cent", + "price_postapoc": "50 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -1195,8 +1195,8 @@ "quench": 100, "calories": 462, "description": "Freshly-squeezed from the fruit of the Mycus.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "water", "mushroom" ], "primary_material": "water", "volume": "250 ml", @@ -1220,8 +1220,8 @@ "healthy": -1, "calories": 106, "description": "Like cola, but without caffeine. Still not that healthy.", - "price": 95, - "price_postapoc": 50, + "price": "95 cent", + "price_postapoc": "50 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -1245,8 +1245,8 @@ "calories": 156, "vitamins": [ [ "calcium", 1 ] ], "description": "Like cola, but without caffeine. Still not that healthy, but better than the canned stuff.", - "price": 95, - "price_postapoc": 50, + "price": "95 cent", + "price_postapoc": "50 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -1269,7 +1269,7 @@ "healthy": -1, "calories": 80, "description": "A carbonated soft drink which contains quinine, giving it a bitter flavor. Originally used as a prophylactic against malaria, this modern variant is unsuitable for this purpose as it contains much less quinine and is also sweetened.", - "price": 50, + "price": "50 cent", "volume": "250 ml", "charges": 1, "material": [ "water", "junk" ], @@ -1295,8 +1295,8 @@ "addiction_potential": 2, "calories": 100, "description": "Originating in Germany almost a century ago, this mix of cola and orange soda tastes great.", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -1318,8 +1318,8 @@ "quench": 60, "calories": 66, "description": "A flavored drink consisting of a special blend of electrolytes and simple sugars. It tastes vaguely like fruit with a slight chemical aftertaste.", - "price": 55, - "price_postapoc": 50, + "price": "55 cent", + "price_postapoc": "50 cent", "material": [ "water", "junk" ], "volume": "250 ml", "charges": 1, @@ -1339,8 +1339,8 @@ "calories": 1, "comestible_type": "MED", "description": "A healthy beverage made from spurge flowers steeped in boiling water. Can be used to prevent asthma attacks.", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "fun": 1, "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE", "NO_AUTO_CONSUME" ], "use_action": { @@ -1361,8 +1361,8 @@ "quench": 60, "calories": 12, "description": "A basic oral rehydration therapy drink. It will rehydrate you faster than water, but tastes like bottled sweat.", - "price": 55, - "price_postapoc": 50, + "price": "55 cent", + "price_postapoc": "50 cent", "material": [ "water" ], "flags": [ "EATEN_COLD" ], "volume": "250 ml", @@ -1384,8 +1384,8 @@ "quench": 38, "calories": 170, "description": "Water with sugar or honey added. Tastes okay.", - "price": 95, - "price_postapoc": 10, + "price": "95 cent", + "price_postapoc": "10 cent", "material": [ { "type": "water", "portion": 833 }, { "type": "junk", "portion": 167 } ], "volume": "250 ml", "charges": 1, @@ -1408,8 +1408,8 @@ "quench": 40, "calories": 1, "description": "The beverage of gentlemen everywhere, made from applying hot water to oxidized leaves of the tea plant \"Camellia sinensis\".", - "price": 90, - "price_postapoc": 25, + "price": "90 cent", + "price_postapoc": "25 cent", "volume": "250 ml", "charges": 1, "material": [ "water" ], @@ -1448,8 +1448,8 @@ "symbol": "~", "quench": -35, "description": "Often regarded as folk medicine in some countries, bark tea tastes awful and tends to dry you out, but can help flush out stomach or other gut bugs.", - "price": 1250, - "price_postapoc": 25, + "price": "12 USD 50 cent", + "price_postapoc": "25 cent", "volume": "500 ml", "charges": 1, "material": [ "water" ], @@ -1471,8 +1471,8 @@ "quench": 6, "calories": 51, "description": "Contains up to eight vegetables! Nutritious and tasty.", - "price": 40, - "price_postapoc": 50, + "price": "40 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "primary_material": "water", "volume": "250 ml", @@ -1493,8 +1493,8 @@ "weight": "250 g", "volume": "250 ml", "charges": 1, - "price": 50, - "price_postapoc": 1, + "price": "50 cent", + "price_postapoc": "1 cent", "symbol": "~", "color": "light_blue", "phase": "liquid", @@ -1557,8 +1557,8 @@ "name": { "str_sp": "sweetened coffee" }, "calories": 21, "description": "The morning ritual of the pre-apocalyptic world, created from coffee cherries through a complex process of seed removal, roasting, grinding, and brewing. Coffee is substantially richer in caffeine than its rival tea. With added sweetener for better taste.", - "price": 110, - "price_postapoc": 60, + "price": "1 USD 10 cent", + "price_postapoc": "60 cent", "material": [ "water" ], "fun": 10 }, @@ -1571,8 +1571,8 @@ "calories": 21, "extend": { "flags": [ "EATEN_COLD" ] }, "description": "The beverage of gentlemen everywhere, made from applying hot water to leaves of the tea plant \"Camellia sinensis\". With added sweetener for a better taste. Can also be served cold as iced tea.", - "price": 100, - "price_postapoc": 35, + "price": "1 USD", + "price_postapoc": "35 cent", "fun": 10 }, { @@ -1582,8 +1582,8 @@ "name": { "str_sp": "sweetened milk tea" }, "calories": 88, "description": "Hot tea with cold milk and added sweetener.", - "price": 460, - "price_postapoc": 60, + "price": "4 USD 60 cent", + "price_postapoc": "60 cent", "vitamins": [ [ "vitC", 2 ], [ "calcium", 12 ] ], "fun": 14 }, @@ -1594,8 +1594,8 @@ "name": { "str_sp": "sweetened coffee substitute" }, "calories": 21, "description": "Homemade not-coffee created from the Kentucky coffeetree, just like the Meskwaki tribe! Doesn't actually have any caffeine, but it'll pass in a pinch. The added sweetener neutralizes the bitterness somewhat.", - "price": 110, - "price_postapoc": 35, + "price": "1 USD 10 cent", + "price_postapoc": "35 cent", "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE" ], "fun": 1 }, @@ -1608,8 +1608,8 @@ "calories": 88, "extend": { "flags": [ "EATEN_COLD" ] }, "description": "Coffee syrup mixed into milk. It's been the state drink of Rhode Island since 1993. With added sweetener for those who like it even sweeter. Can also be served cold as iced coffee.", - "price": 490, - "price_postapoc": 60, + "price": "4 USD 90 cent", + "price_postapoc": "60 cent", "fun": 14 }, { @@ -1625,8 +1625,8 @@ "quench": 40, "calories": 40, "description": "A thick red liquid, made from tomatoes. Not to everyone's taste, it is a healthy and refreshing drink when chilled.", - "price": 90, - "price_postapoc": 40, + "price": "90 cent", + "price_postapoc": "40 cent", "material": [ "tomato" ], "primary_material": "water", "volume": "250 ml", @@ -1649,8 +1649,8 @@ "quench": 40, "calories": 126, "description": "A cold savory yogurt-based beverage popular across Western Asia, Central Asia, Southeastern Europe, North Asia and Eastern Europe.", - "price": 90, - "price_postapoc": 40, + "price": "90 cent", + "price_postapoc": "40 cent", "volume": "236 ml", "charges": 1, "phase": "liquid", @@ -1670,8 +1670,8 @@ "quench": 24, "calories": 0, "description": "Things go lighter with Cola Zero! No sugar, no caffeine, no worries!", - "price": 95, - "price_postapoc": 40, + "price": "95 cent", + "price_postapoc": "40 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -1693,8 +1693,8 @@ "quench": 24, "calories": 0, "description": "Trofica brand zero-sugar soda with natural orange flavors. Now with 99% less calories!", - "price": 95, - "price_postapoc": 40, + "price": "95 cent", + "price_postapoc": "40 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -1716,8 +1716,8 @@ "quench": 24, "calories": 0, "description": "Trofica brand zero-sugar soda. Made with all-natural pineapple, kiwi, and passionfruit flavors that taste just like real fruit with none of the real sugar!", - "price": 95, - "price_postapoc": 40, + "price": "95 cent", + "price_postapoc": "40 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -1744,8 +1744,8 @@ "addiction_potential": 2, "calories": 0, "description": "Hill Mist 'Puebla Punch', a popular zero-sugar energy drink with enough caffeine to keep you awake but none of the calories that keep you going. It looks and tastes like blue automotive coolant.", - "price": 100, - "price_postapoc": 45, + "price": "1 USD", + "price_postapoc": "45 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -1767,8 +1767,8 @@ "quench": 24, "calories": 0, "description": "A curious entry to the diet soda market by Foodplace, the \"Refreshing Drink™\" tastes just like real human beverages and contains no additives proven to cause diabetes or heart diseases!", - "price": 95, - "price_postapoc": 35, + "price": "95 cent", + "price_postapoc": "35 cent", "material": [ "junk" ], "primary_material": "water", "volume": "250 ml", @@ -1790,8 +1790,8 @@ "quench": 32, "calories": 0, "description": "Plain, naturally carbonated mineral water with a subtle bitterness.", - "price": 120, - "price_postapoc": 35, + "price": "1 USD 20 cent", + "price_postapoc": "35 cent", "material": [ "water" ], "volume": "250 ml", "charges": 1, @@ -1812,8 +1812,8 @@ "quench": 32, "calories": 0, "description": "Naturally carbonated mineral water with a hint of peach flavoring.", - "price": 120, - "price_postapoc": 35, + "price": "1 USD 20 cent", + "price_postapoc": "35 cent", "material": [ "water" ], "volume": "250 ml", "charges": 1, @@ -1834,8 +1834,8 @@ "quench": 32, "calories": 0, "description": "Naturally carbonated mineral water with pomegranate flavoring. Fruity and bitter.", - "price": 120, - "price_postapoc": 35, + "price": "1 USD 20 cent", + "price_postapoc": "35 cent", "material": [ "water" ], "volume": "250 ml", "charges": 1, diff --git a/data/json/items/comestibles/drink_other.json b/data/json/items/comestibles/drink_other.json index 09a382fbe0f97..8e1bbc648ca13 100644 --- a/data/json/items/comestibles/drink_other.json +++ b/data/json/items/comestibles/drink_other.json @@ -13,8 +13,8 @@ "calories": 28, "sealed": true, "description": "A minimally seasoned sauce of cooked tomatoes.", - "price": 4, - "price_postapoc": 50, + "price": "4 cent", + "price_postapoc": "50 cent", "//": "Small cans--needs upsized after the string freeze.", "material": [ "tomato" ], "volume": "500 ml", @@ -31,8 +31,8 @@ "name": { "str_sp": "maple sap" }, "copy-from": "syrup", "description": "A water and sugar solution that has been extracted from a maple tree.", - "price": 50, - "price_postapoc": 25, + "price": "50 cent", + "price_postapoc": "25 cent", "weight": "255 g", "volume": "250 ml", "charges": 1, @@ -56,8 +56,8 @@ "color": "white", "name": { "str_sp": "mayonnaise" }, "description": "A gloppy mix of egg, oil, and salt that is traditionally used to moisten sandwiches.", - "price": 187, - "price_postapoc": 500, + "price": "1 USD 87 cent", + "price_postapoc": "5 USD", "material": [ "junk", "egg" ], "weight": "17 g", "volume": "250 ml", @@ -80,8 +80,8 @@ "color": "red", "name": { "str_sp": "ketchup" }, "description": "A viscous paste of tomato, salt, and vinegar.", - "price": 1875, - "price_postapoc": 100, + "price": "18 USD 75 cent", + "price_postapoc": "1 USD", "material": [ "veggy", "junk" ], "weight": "17 g", "volume": "250 ml", @@ -103,8 +103,8 @@ "color": "brown", "name": { "str_sp": "barbecue sauce" }, "description": "Invented in the American south, barbecue sauce is sweet, dark, and full of spices like garlic, pepper, and cayenne. It's often used in meat dishes as a marinade or condiment.", - "price": 1875, - "price_postapoc": 100, + "price": "18 USD 75 cent", + "price_postapoc": "1 USD", "material": [ "veggy", "junk" ], "weight": "17 g", "volume": "250 ml", @@ -126,8 +126,8 @@ "color": "yellow", "name": { "str_sp": "honey mustard" }, "description": "A tangy, sweet, and creamy sauce that perfectly complements salads and fried food.", - "price": 1875, - "price_postapoc": 100, + "price": "18 USD 75 cent", + "price_postapoc": "1 USD", "material": [ "veggy", "junk" ], "weight": "17 g", "volume": "250 ml", @@ -149,8 +149,8 @@ "color": "yellow", "name": { "str_sp": "mustard", "ctxt": "condiment" }, "description": "A condiment made from the seeds of a mustard plant (\"Brassica\" or \"Sinapis\"), vinegar, salt, and spices.", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "material": [ "junk" ], "weight": "5 g", "volume": "250 ml", @@ -172,8 +172,8 @@ "color": "yellow", "name": { "str_sp": "forest honey" }, "description": "Honey, that stuff bees make. This one is \"forest honey\", a liquid form. It never spoils, and is good for your digestion.", - "price": 250, - "price_postapoc": 750, + "price": "2 USD 50 cent", + "price_postapoc": "7 USD 50 cent", "material": [ "honey" ], "weight": "22 g", "volume": "250 ml", @@ -199,8 +199,8 @@ "comestible_type": "DRINK", "symbol": "~", "description": "Shockingly tart white vinegar. This is what you get when you let your booze ferment too long.", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "water" ], "volume": "250 ml", "phase": "liquid", @@ -222,8 +222,8 @@ "quench": -1, "calories": 127, "description": "Thin yellow vegetable oil used for cooking.", - "price": 40, - "price_postapoc": 5, + "price": "40 cent", + "price_postapoc": "5 cent", "material": [ "oil", "veggy" ], "volume": "250 ml", "charges": 16, @@ -256,8 +256,8 @@ "quench": -2, "calories": 205, "description": "An extremely sugary tar-like syrup, produced by repeatedly boiling the juice of sugarcane or sugar beets. It has a slightly bitter aftertaste.", - "price": 200, - "price_postapoc": 500, + "price": "2 USD", + "price_postapoc": "5 USD", "material": [ "junk" ], "volume": "250 ml", "phase": "liquid", @@ -281,8 +281,8 @@ "quench": 1, "calories": 64, "description": "Extremely sweet syrup made from sugar and pomegranate juice. It's meant to be mixed with other drinks, rather than drink it as is.", - "price": 80, - "price_postapoc": 50, + "price": "80 cent", + "price_postapoc": "50 cent", "material": [ "fruit", "junk" ], "primary_material": "water", "volume": "250 ml", @@ -299,8 +299,8 @@ "color": "white", "name": { "str_sp": "horseradish" }, "description": "A spicy grated root vegetable packed in vinegared brine.", - "price": 75, - "price_postapoc": 100, + "price": "75 cent", + "price_postapoc": "1 USD", "material": [ "veggy" ], "weight": "6 g", "volume": "250 ml", @@ -333,8 +333,8 @@ "addiction_potential": 1, "calories": 116, "description": "A thick syrup made of water and sugar strained through coffee grounds. Can be used to flavor many foods and beverages.", - "price": 800, - "price_postapoc": 100, + "price": "8 USD", + "price_postapoc": "1 USD", "material": [ "junk" ], "volume": "250 ml", "phase": "liquid", @@ -351,8 +351,8 @@ "name": { "str_sp": "coconut water" }, "description": "Sweet-tasting cloudy liquid extracted from a coconut.", "charges": 1, - "price": 50, - "price_postapoc": 10, + "price": "50 cent", + "price_postapoc": "10 cent", "material": [ "water" ], "weight": "240 g", "volume": "250 ml", @@ -399,8 +399,8 @@ "quench": 25, "calories": 280, "description": "A molasses-like syrup obtained after condensing juices of grape must.", - "price": 200, - "price_postapoc": 200, + "price": "2 USD", + "price_postapoc": "2 USD", "material": [ "fruit" ], "volume": "595 ml", "flags": [ "FREEZERBURN", "EATEN_COLD" ], diff --git a/data/json/items/comestibles/egg.json b/data/json/items/comestibles/egg.json index a408ab0e3ea2a..2f7723950ef5b 100644 --- a/data/json/items/comestibles/egg.json +++ b/data/json/items/comestibles/egg.json @@ -11,8 +11,8 @@ "quench": 4, "calories": 71, "description": "A nutritious egg laid by a bird.", - "price": 44, - "price_postapoc": 50, + "price": "44 cent", + "price_postapoc": "50 cent", "material": [ "egg" ], "volume": "50 ml", "fun": -8, @@ -191,8 +191,8 @@ "calories": 240, "quench": 10, "fun": -20, - "price": 0, - "price_postapoc": 100, + "price": "0 cent", + "price_postapoc": "1 USD", "spoils_in": "5 days", "flags": [ "FREEZERBURN", "RAW", "NO_AUTO_CONSUME" ], "vitamins": [ [ "calcium", 7 ], [ "iron", 18 ], [ "mutant_toxin", 25 ] ] @@ -203,8 +203,8 @@ "name": { "str": "ant egg" }, "copy-from": "egg_insect", "description": "A large, heavy ant egg, the size of a softball. Extremely nutritious, but incredibly gross.", - "price": 175, - "price_postapoc": 500, + "price": "1 USD 75 cent", + "price_postapoc": "5 USD", "material": [ "egg" ], "proportional": { "weight": 4, "calories": 4, "volume": 4 }, "vitamins": [ [ "calcium", 28 ], [ "iron", 72 ], [ "mutant_toxin", 100 ] ], @@ -482,8 +482,8 @@ "quench": 10, "calories": 338, "description": "A clump of razorclaw eggs. A post-Cataclysm delicacy.", - "price": 3000, - "price_postapoc": 750, + "price": "30 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "flesh" ], "volume": "250 ml", "vitamins": [ [ "vitC", 42 ], [ "calcium", 5 ], [ "iron", 8 ] ], @@ -868,8 +868,8 @@ "symbol": "o", "calories": 425, "quench": 50, - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "egg" ], "fun": -8, "vitamins": [ [ "vitC", 12 ], [ "mutant_toxin", 27 ] ], @@ -913,8 +913,8 @@ "looks_like": "powder_egg", "quench": 2, "description": "Rehydrated eggs. You can use them instead of eggs when cooking, provided you don't care that they have lost their complete shape.", - "price": 22, - "price_postapoc": 25, + "price": "22 cent", + "price_postapoc": "25 cent", "flags": [ ], "fun": -2, "rot_spawn": "GROUP_NULL", @@ -929,8 +929,8 @@ "spoils_in": "2 days", "symbol": "%", "description": "Fluffy and delicious scrambled eggs.", - "price": 400, - "price_postapoc": 100, + "price": "4 USD", + "price_postapoc": "1 USD", "material": [ "egg" ], "volume": "125 ml", "flags": [ "EATEN_HOT", "FREEZERBURN" ], @@ -955,8 +955,8 @@ "symbol": "o", "quench": -1, "description": "A hard-boiled egg, still in its shell. Portable and nutritious!", - "price": 95, - "price_postapoc": 50, + "price": "95 cent", + "price_postapoc": "50 cent", "material": [ "egg" ], "fun": 2, "flags": [ "FREEZERBURN" ], @@ -972,8 +972,8 @@ "symbol": "o", "quench": 2, "description": "Hard-boiled eggs, mixed into a salad. Can be made into a sandwich!", - "price": 95, - "price_postapoc": 50, + "price": "95 cent", + "price_postapoc": "50 cent", "material": [ "egg" ], "fun": 4, "flags": [ "FREEZERBURN" ] @@ -988,8 +988,8 @@ "quench": -1, "calories": 222, "description": "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the edges.", - "price": 500, - "price_postapoc": 120, + "price": "5 USD", + "price_postapoc": "1 USD 20 cent", "material": [ "egg" ], "flags": [ "EATEN_HOT", "FREEZERBURN" ] }, @@ -1011,8 +1011,8 @@ "quench": -1, "calories": 322, "description": "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on the edges with cheese or a vegetable, garnish and condiment.", - "price": 500, - "price_postapoc": 120, + "price": "5 USD", + "price_postapoc": "1 USD 20 cent", "material": [ "egg", "veggy" ], "fun": 10, "flags": [ "EATEN_HOT", "FREEZERBURN" ] @@ -1027,8 +1027,8 @@ "quench": -1, "calories": 422, "description": "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the edges. Made into a sandwich, just like Sunday morning.", - "price": 500, - "price_postapoc": 120, + "price": "5 USD", + "price_postapoc": "1 USD 20 cent", "material": [ "egg", "wheat" ], "fun": 4, "flags": [ "EATEN_HOT", "FREEZERBURN" ] @@ -1043,8 +1043,8 @@ "quench": -1, "calories": 422, "description": "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on the edges. Made into a sandwich, just like Sunday morning.", - "price": 500, - "price_postapoc": 120, + "price": "5 USD", + "price_postapoc": "1 USD 20 cent", "material": [ "egg", "wheat" ], "fun": 12, "flags": [ "EATEN_HOT", "FREEZERBURN" ] @@ -1059,8 +1059,8 @@ "quench": -1, "calories": 422, "description": "Sunny-side up eggs fried with a runny yolk and just a bit of crisp on the edges. Made into a sandwich with wheat-free bread, just like Sunday morning.", - "price": 500, - "price_postapoc": 120, + "price": "5 USD", + "price_postapoc": "1 USD 20 cent", "material": [ "egg", "veggy" ], "fun": 4, "flags": [ "EATEN_HOT", "FREEZERBURN" ] @@ -1075,8 +1075,8 @@ "quench": -1, "calories": 422, "description": "Deluxe sunny-side up eggs fried with a runny yolk and just a bit of crisp on the edges. Made into a sandwich with wheat-free bread, just like Sunday morning.", - "price": 500, - "price_postapoc": 120, + "price": "5 USD", + "price_postapoc": "1 USD 20 cent", "material": [ "egg", "veggy" ], "fun": 12, "flags": [ "EATEN_HOT", "FREEZERBURN" ] @@ -1090,8 +1090,8 @@ "symbol": "%", "calories": 190, "description": "A fluffy beaten egg pancaked over with cheese inside.", - "price": 500, - "price_postapoc": 70, + "price": "5 USD", + "price_postapoc": "70 cent", "material": [ "egg", "milk" ], "flags": [ "EATEN_HOT", "FREEZERBURN" ] }, @@ -1104,8 +1104,8 @@ "symbol": "%", "calories": 240, "description": "A fluffy beaten egg pancaked over with cheese and vegetables inside.", - "price": 500, - "price_postapoc": 70, + "price": "5 USD", + "price_postapoc": "70 cent", "material": [ "egg", "milk", "veggy" ], "flags": [ "EATEN_HOT", "FREEZERBURN" ] }, @@ -1118,8 +1118,8 @@ "symbol": "%", "calories": 350, "description": "A fluffy beaten egg pancaked over with cheese, vegetables, and meat all stuffed inside. The mother of all omelets.", - "price": 500, - "price_postapoc": 70, + "price": "5 USD", + "price_postapoc": "70 cent", "material": [ "egg", "milk", "veggy", "flesh" ], "flags": [ "EATEN_HOT", "FREEZERBURN" ] }, @@ -1133,8 +1133,8 @@ "symbol": "%", "calories": 252, "description": "A simple sandwich with sliced, hard boiled eggs and mayo to balance out the saltiness of the caviar. Scandinavian breakfast staple.", - "price": 500, - "price_postapoc": 300, + "price": "5 USD", + "price_postapoc": "3 USD", "material": [ "bread", "egg" ], "primary_material": "bread", "volume": "649 ml", @@ -1150,8 +1150,8 @@ "symbol": "%", "quench": -1, "description": "A pickled egg. Rather salty, but tastes good and lasts for a long time.", - "price": 95, - "price_postapoc": 75, + "price": "95 cent", + "price_postapoc": "75 cent", "material": [ "egg" ], "fun": 2, "flags": [ "FREEZERBURN" ] @@ -1167,8 +1167,8 @@ "charges": 1, "stack_size": 4, "calories": 68, - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "phase": "liquid", "fun": -15, "use_action": { @@ -1309,8 +1309,8 @@ "quench": -1, "calories": 450, "description": "A popular traditional Turkish dish which includes eggs, tomato, green peppers, and spices such as ground black and red pepper cooked in olive oil.", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "egg", "veggy" ], "fun": 5, "flags": [ "EATEN_HOT", "FREEZERBURN" ] @@ -1322,8 +1322,8 @@ "name": { "str": "cluster of frog's eggs", "str_pl": "clusters of frog's eggs" }, "color": "brown", "description": "A large clump of frog eggs. They're gelatinous and transparent.", - "price": 25, - "price_postapoc": 50, + "price": "25 cent", + "price_postapoc": "50 cent", "fun": -16, "vitamins": [ [ "iron", 4 ] ] }, @@ -1436,8 +1436,8 @@ "quench": 8, "calories": 200, "description": "A large clump of very large frog eggs. They're gelatinous, transparent and larger than even chicken's eggs.", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "fun": -30, "vitamins": [ [ "iron", 29 ] ] }, diff --git a/data/json/items/comestibles/frozen.json b/data/json/items/comestibles/frozen.json index db0ec5203e294..c5649a907dc8c 100644 --- a/data/json/items/comestibles/frozen.json +++ b/data/json/items/comestibles/frozen.json @@ -15,8 +15,8 @@ "calories": 150, "quench": 30, "fun": 20, - "price": 250, - "price_postapoc": 100, + "price": "2 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "milk" ], "phase": "liquid", "charges": 1, @@ -32,8 +32,8 @@ "calories": 175, "fun": 23, "healthy": -1, - "price": 275, - "price_postapoc": 100, + "price": "2 USD 75 cent", + "price_postapoc": "1 USD", "material": [ "milk", "junk" ], "primary_material": "milk" }, @@ -56,8 +56,8 @@ "quench": 40, "fun": 25, "healthy": -1, - "price": 400, - "price_postapoc": 150, + "price": "4 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "milk", "junk" ], "primary_material": "milk" }, @@ -96,8 +96,8 @@ "calories": 325, "fun": 15, "healthy": -1, - "price": 250, - "price_postapoc": 300, + "price": "2 USD 50 cent", + "price_postapoc": "3 USD", "material": [ "milk" ], "primary_material": "ice_cream", "phase": "liquid", @@ -112,8 +112,8 @@ "id": "icecream_artificial", "name": { "str": "serving of dairy dessert", "str_pl": "servings of dairy dessert" }, "description": "Government regulations dictate that since this isn't *technically* ice cream, it can be called a dairy dessert instead. You can't really taste the difference.", - "price": 200, - "price_postapoc": 100, + "price": "2 USD", + "price_postapoc": "1 USD", "primary_material": "ice_cream", "material": [ "milk", "junk" ] }, @@ -146,8 +146,8 @@ "name": { "str": "serving of candy ice cream", "str_pl": "servings of candy ice cream" }, "description": "Ice cream with bits of chocolate, caramel, or other sweet candy mixed in.", "fun": 20, - "price": 300, - "price_postapoc": 300, + "price": "3 USD", + "price_postapoc": "3 USD", "calories": 330, "primary_material": "ice_cream", "vitamins": [ [ "calcium", 8 ], [ "iron", 4 ] ], @@ -161,8 +161,8 @@ "description": "Small bits of sweet fruit have been tossed into this ice cream.", "calories": 224, "fun": 17, - "price": 300, - "price_postapoc": 300, + "price": "3 USD", + "price_postapoc": "3 USD", "primary_material": "ice_cream", "vitamins": [ [ "vitC", 6 ], [ "calcium", 8 ], [ "iron", 1 ] ], "material": [ "milk", "fruit" ] @@ -175,8 +175,8 @@ "description": "A treat made famous on Coney Island, made like ice cream but with egg yolk added in. Its storing temperature is warmer, and it lasts a little longer than regular ice cream.", "spoils_in": "2 days", "calories": 328, - "price": 300, - "price_postapoc": 300, + "price": "3 USD", + "price_postapoc": "3 USD", "primary_material": "ice_cream", "vitamins": [ [ "calcium", 8 ] ], "material": [ "milk", "egg" ] @@ -188,8 +188,8 @@ "name": { "str": "serving of frozen yogurt", "str_pl": "servings of frozen yogurt" }, "description": "Tarter than ice cream, this is made with yogurt and other dairy products, and is generally lower-fat compared to ice cream.", "calories": 127, - "price": 275, - "price_postapoc": 100, + "price": "2 USD 75 cent", + "price_postapoc": "1 USD", "weight": "80 g", "primary_material": "ice_cream", "vitamins": [ [ "vitC", 4 ], [ "calcium", 10 ] ], @@ -205,8 +205,8 @@ "calories": 116, "quench": 8, "fun": 10, - "price": 175, - "price_postapoc": 100, + "price": "1 USD 75 cent", + "price_postapoc": "1 USD", "weight": "106 g", "vitamins": [ ], "material": [ "water", "fruit" ] @@ -219,8 +219,8 @@ "description": "Italian-style ice cream. It is denser and less airy, giving it a richer flavor and texture.", "calories": 240, "fun": 13, - "price": 300, - "price_postapoc": 200, + "price": "3 USD", + "price_postapoc": "2 USD", "weight": "90 g", "primary_material": "ice_cream", "vitamins": [ [ "calcium", 2 ], [ "iron", 2 ] ], diff --git a/data/json/items/comestibles/fruit_dishes.json b/data/json/items/comestibles/fruit_dishes.json index dc7099d60041f..08a8be73405f1 100644 --- a/data/json/items/comestibles/fruit_dishes.json +++ b/data/json/items/comestibles/fruit_dishes.json @@ -10,8 +10,8 @@ "comestible_type": "DRINK", "symbol": "~", "description": "It's like strawberry jam, only without sugar.", - "price": 50, - "price_postapoc": 50, + "price": "50 cent", + "price_postapoc": "50 cent", "//": "Cheap for three liters of spread!", "material": [ "fruit" ], "charges": 1, @@ -87,8 +87,8 @@ "comestible_type": "DRINK", "symbol": "~", "description": "It's like blueberry jam, only without sugar.", - "price": 50, - "price_postapoc": 50, + "price": "50 cent", + "price_postapoc": "50 cent", "material": [ "fruit" ], "charges": 1, "phase": "liquid", @@ -109,8 +109,8 @@ "calories": 135, "sealed": true, "description": "Yellow cling peach slices packed in light syrup.", - "price": 96, - "price_postapoc": 150, + "price": "96 cent", + "price_postapoc": "1 USD 50 cent", "material": [ "fruit" ], "volume": "250 ml", "fun": 5, @@ -220,8 +220,8 @@ "symbol": "~", "calories": 100, "description": "It's like fruit jam, only without sugar.", - "price": 50, - "price_postapoc": 50, + "price": "50 cent", + "price_postapoc": "50 cent", "material": [ "fruit" ], "volume": "250 ml", "charges": 1, @@ -279,8 +279,8 @@ "symbol": "~", "calories": 35, "description": "Fresh fruit cooked with sugar to make it last longer.", - "price": 80, - "price_postapoc": 75, + "price": "80 cent", + "price_postapoc": "75 cent", "material": [ "fruit" ], "sealed": true, "volume": "250 ml", @@ -343,8 +343,8 @@ "quench": -2, "calories": 100, "description": "Dehydrated fruit flakes. With proper storage, this dried food will remain edible for an incredibly long time. They are useful for several cooking recipes.", - "price": 900, - "price_postapoc": 100, + "price": "9 USD", + "price_postapoc": "1 USD", "material": [ "fruit" ], "primary_material": "dried_vegetable", "//": "most of the water weight and volume is lost", @@ -406,8 +406,8 @@ "quench": 1, "calories": 100, "description": "Reconstituted fruit flakes, which are much more enjoyable to eat now that they have been rehydrated.", - "price": 900, - "price_postapoc": 50, + "price": "9 USD", + "price_postapoc": "50 cent", "material": [ "fruit" ], "volume": "250 ml", "fun": 4 @@ -557,8 +557,8 @@ "quench": 2, "calories": 150, "description": "An old recipe from the American Civil War, designed to make hardtack more palatable. The hardtack is crushed and combined with water and flour to make dough, followed by kneading in pieces of fruit. The dough is then boiled into bread pudding chunks and topped with sweeteners. Soldiers would call this a dessert.", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "material": [ "fruit", "wheat" ], "volume": "500 ml", "charges": 4, @@ -635,8 +635,8 @@ "symbol": "~", "calories": 90, "description": "Whole fruits preserved in 40 proof or higher alcohol.", - "price": 50, - "price_postapoc": 50, + "price": "50 cent", + "price_postapoc": "50 cent", "addiction_type": "alcohol", "addiction_potential": 5, "material": [ "fruit", "alcohol" ], diff --git a/data/json/items/comestibles/junkfood.json b/data/json/items/comestibles/junkfood.json index 67987ce750761..72cc617c67259 100644 --- a/data/json/items/comestibles/junkfood.json +++ b/data/json/items/comestibles/junkfood.json @@ -220,8 +220,8 @@ "symbol": "%", "calories": 418, "description": "A pair of graham crackers with some chocolate and a marshmallow between them.", - "price": 400, - "price_postapoc": 250, + "price": "4 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "wheat", "junk" ], "volume": "250 ml", "flags": [ "EDIBLE_FROZEN" ], @@ -490,8 +490,8 @@ "quench": 1, "calories": 54, "description": "Boiling the sap of a maple tree has concentrated it into this sweet, delicious maple syrup.", - "price": 600, - "price_postapoc": 750, + "price": "6 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "junk" ], "volume": "250 ml", "phase": "liquid", @@ -512,8 +512,8 @@ "quench": 3, "calories": 41, "description": "A thick syrup produced from shredded sugar beets. Useful in cooking as a sweetener.", - "price": 1500, - "price_postapoc": 350, + "price": "15 USD", + "price_postapoc": "3 USD 50 cent", "material": [ "junk" ], "volume": "250 ml", "phase": "liquid", @@ -596,8 +596,8 @@ "calories": 229, "spoils_in": "1 days", "description": "Salty, deep-fried potatoes from a fast food restaurant.", - "price": 120, - "price_postapoc": 50, + "price": "1 USD 20 cent", + "price_postapoc": "50 cent", "material": [ "junk" ], "volume": "250 ml", "fun": 4, @@ -707,8 +707,8 @@ "healthy": -1, "calories": 362, "description": "A caramel-covered apple. Best served on an autumn day, at a harvest fair, on a stick - but those days are long gone.", - "price": 150, - "price_postapoc": 500, + "price": "1 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "junk", "fruit" ], "volume": "175 ml", "vitamins": [ [ "calcium", 9 ], [ "vitC", 14 ], [ "iron", 1 ] ], @@ -769,8 +769,8 @@ "quench": -10, "calories": 500, "description": "Salted chips made from corn tortillas, with cheese melted on top. Could stand to have some meat.", - "price": 250, - "price_postapoc": 200, + "price": "2 USD 50 cent", + "price_postapoc": "2 USD", "material": [ "junk", "milk" ], "primary_material": "processed_food", "volume": "250 ml", @@ -796,8 +796,8 @@ "quench": -10, "calories": 424, "description": "Salted chips made from corn tortillas, with ground meat on top. Could probably use some cheese, though.", - "price": 250, - "price_postapoc": 600, + "price": "2 USD 50 cent", + "price_postapoc": "6 USD", "material": [ "junk", "flesh" ], "primary_material": "processed_food", "volume": "250 ml", @@ -827,8 +827,8 @@ "quench": -10, "calories": 704, "description": "Salted chips made from corn tortillas smothered in cheese and ground meat. Delicious.", - "price": 300, - "price_postapoc": 500, + "price": "3 USD", + "price_postapoc": "5 USD", "material": [ "flesh", "milk", "junk" ], "primary_material": "processed_food", "volume": "250 ml", @@ -912,8 +912,8 @@ "healthy": -1, "calories": 434, "description": "A small, microwavable steak & cheese burrito, like those found at gas stations.", - "price": 200, - "price_postapoc": 200, + "price": "2 USD", + "price_postapoc": "2 USD", "material": [ "flesh", "junk", "milk" ], "primary_material": "processed_food", "volume": "250 ml", @@ -1075,8 +1075,8 @@ "volume": "80 ml", "calories": 201, "description": "Fluffy and delicious pancakes with real maple syrup, with delicious chocolate baked right in.", - "price": 700, - "price_postapoc": 100, + "price": "7 USD", + "price_postapoc": "1 USD", "material": [ "wheat", "junk", "milk" ], "primary_material": "processed_food", "fun": 6, @@ -1093,8 +1093,8 @@ "symbol": "%", "calories": 660, "description": "Crunchy and delicious waffles with real maple syrup, with delicious chocolate baked right in.", - "price": 650, - "price_postapoc": 100, + "price": "6 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "wheat", "junk", "milk" ], "primary_material": "processed_food", "volume": "250 ml", @@ -1136,8 +1136,8 @@ "healthy": -1, "calories": 348, "description": "Fried potatoes with delicious cheese smothered on top.", - "price": 190, - "price_postapoc": 150, + "price": "1 USD 90 cent", + "price_postapoc": "1 USD 50 cent", "material": [ "junk", "milk" ], "primary_material": "cheese", "volume": "250 ml", @@ -1158,8 +1158,8 @@ "healthy": -1, "calories": 639, "description": "Battered and fried onions. Crunchy and delicious.", - "price": 400, - "price_postapoc": 250, + "price": "4 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "veggy", "junk" ], "volume": "250 ml", "flags": [ "EATEN_HOT", "EDIBLE_FROZEN", "FREEZERBURN" ], @@ -1209,8 +1209,8 @@ "healthy": -1, "calories": 407, "description": "Surprisingly, not made from dog. Now that it's been cooked, this hot dog tastes much better, but will spoil faster.", - "price": 800, - "price_postapoc": 350, + "price": "8 USD", + "price_postapoc": "3 USD 50 cent", "material": [ "flesh", "junk", "wheat" ], "volume": "250 ml", "flags": [ "EATEN_HOT" ], @@ -1230,8 +1230,8 @@ "healthy": -1, "calories": 407, "description": "Surprisingly, not made from dog. Now that it's been cooked and served on a wheat-free bun, this hot dog tastes much better, but will spoil faster.", - "price": 800, - "price_postapoc": 350, + "price": "8 USD", + "price_postapoc": "3 USD 50 cent", "material": [ "flesh", "junk", "veggy" ], "volume": "250 ml", "flags": [ "EATEN_HOT" ], @@ -1247,7 +1247,7 @@ "looks_like": "hotdogs_cooked", "calories": 721, "description": "What's better than a hot dog? A hot dog smothered in ground meat and chopped onions, of course!", - "price_postapoc": 500, + "price_postapoc": "5 USD", "volume": "375 ml", "fun": 18, "//": "The fun value is high to justify crafting this versus a normal hot dog." @@ -1261,7 +1261,7 @@ "looks_like": "hotdogs_cooked_wheat_free", "calories": 721, "description": "What's better than a gluten-free hot dog? A gluten-free hot dog smothered in ground meat and chopped onions, of course!", - "price_postapoc": 500, + "price_postapoc": "5 USD", "volume": "375 ml", "fun": 18, "//": "The fun value is high to justify crafting this versus a normal hot dog." @@ -1325,8 +1325,8 @@ "quench": -8, "calories": 879, "description": "A sealed plastic bag containing a full dehydrated meal. This one contains a hearty beef and egg breakfast.", - "price": 1200, - "price_postapoc": 1400, + "price": "12 USD", + "price_postapoc": "14 USD", "material": [ "flesh", "egg", "junk" ], "volume": "250ml", "flags": [ "EATEN_HOT" ], @@ -1346,8 +1346,8 @@ "quench": 1, "calories": 879, "description": "A rehydrated beef and egg breakfast meal meant for camping or hiking.", - "price": 1200, - "price_postapoc": 1400, + "price": "12 USD", + "price_postapoc": "14 USD", "material": [ "flesh", "egg", "junk" ], "volume": "500ml", "flags": [ "EATEN_HOT" ], @@ -1364,8 +1364,8 @@ "weight": "115 g", "description": "A thick, dense bar of military chocolate. While tough to chew and not very appetizing, it provides almost a day's worth of calories in portable form.", "comestible_type": "FOOD", - "price": 250, - "price_postapoc": 500, + "price": "2 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "junk" ], "volume": "500 ml", "flags": [ "EDIBLE_FROZEN" ], @@ -1384,8 +1384,8 @@ "quench": -8, "calories": 400, "description": "A serving of sugary, fruit-flavored gelatin dessert powder. Just add water and set.", - "price": 5, - "price_postapoc": 10, + "price": "5 cent", + "price_postapoc": "10 cent", "material": [ "flesh", "junk" ], "volume": "250ml", "flags": [ "EATEN_COLD" ], @@ -1403,8 +1403,8 @@ "symbol": "%", "calories": 100, "description": "An unflavored jiggly, sugary treat made from gelatin and sugar. It would taste better with some flavor.", - "price": 210, - "price_postapoc": 250, + "price": "2 USD 10 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "flesh", "junk" ], "volume": "250 ml", "phase": "solid", @@ -1470,8 +1470,8 @@ "healthy": -1, "calories": 400, "description": "A famous Italian pasta dish made with egg, pecorino and bacon.", - "price": 100, - "price_postapoc": 250, + "price": "1 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "wheat", "egg" ], "primary_material": "wheat", "volume": "250 ml", @@ -1493,8 +1493,8 @@ "healthy": -1, "calories": 220, "description": "A famous Italian pasta dish made with red sauce, pecorino and bacon.", - "price": 100, - "price_postapoc": 250, + "price": "1 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "wheat", "veggy" ], "primary_material": "wheat", "volume": "250 ml", diff --git a/data/json/items/comestibles/meat_dishes.json b/data/json/items/comestibles/meat_dishes.json index 39817e893829e..26f7d0d506045 100644 --- a/data/json/items/comestibles/meat_dishes.json +++ b/data/json/items/comestibles/meat_dishes.json @@ -17,8 +17,8 @@ "calories": 474, "parasites": 32, "description": "A hefty raw sausage, prepared for smoking or cooking.", - "price": 1600, - "price_postapoc": 200, + "price": "16 USD", + "price_postapoc": "2 USD", "material": [ "flesh" ], "volume": "250 ml", "flags": [ "SMOKABLE" ], @@ -38,7 +38,7 @@ "copy-from": "sausage_raw", "parasites": 0, "spoils_in": "14 days", - "price_postapoc": 300, + "price_postapoc": "3 USD", "description": "A hefty sausage that has been cured and smoked for long term storage.", "flags": [ "EATEN_HOT", "SMOKED" ], "fun": 5 @@ -56,7 +56,7 @@ "parasites": 0, "fun": 5, "spoils_in": "2 days", - "price_postapoc": 200, + "price_postapoc": "2 USD", "description": "A hefty cooked sausage. Better eat it hot and fresh.", "flags": [ "EATEN_HOT" ] }, @@ -79,8 +79,8 @@ "quench": -2, "calories": 716, "description": "Salted meat slowly cooked in butter or melted fat, a form of food preservation from the days before canning. Rich and fatty, it will last for a long time.", - "price": 600, - "price_postapoc": 350, + "price": "6 USD", + "price_postapoc": "3 USD 50 cent", "material": [ "flesh" ], "volume": "250 ml", "vitamins": [ [ "calcium", 2 ], [ "iron", 20 ] ], @@ -99,10 +99,10 @@ "symbol": "%", "calories": 539, "description": "A sweet and delicious maple-flavored sausage. Better eat it hot and fresh.", - "price": 2400, + "price": "24 USD", "material": [ "flesh" ], "volume": "250 ml", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "vitamins": [ [ "vitC", 4 ], [ "iron", 22 ] ], "flags": [ "EATEN_HOT" ], "fun": 8 @@ -168,8 +168,8 @@ "symbol": "%", "calories": 637, "description": "A chunk of meat coated with royal jelly. It's a lot like a honey-baked ham.", - "price": 21000, - "price_postapoc": 4500, + "price": "210 USD", + "price_postapoc": "45 USD", "material": [ "flesh" ], "volume": "500 ml", "fun": 7, @@ -355,8 +355,8 @@ "calories": 213, "//": "Same as the meat it's been made from. It's additional ingredient compared to smoking, jerking, and dehydrating, so there's no incentive otherwise.", "description": "A dish in which meat or fish is set into a gelatin made from a meat or vegetable stock.", - "price": 2500, - "price_postapoc": 150, + "price": "25 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "flesh" ], "volume": "250 ml", "vitamins": [ [ "vitC", 15 ], [ "calcium", 2 ], [ "iron", 8 ] ], @@ -373,8 +373,8 @@ "spoils_in": "360 days", "quench": -3, "description": "Dehydrated fish flakes. With proper storage, this dried food will remain edible for an incredibly long time.", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "volume": "125 ml", "flags": [ "EDIBLE_FROZEN" ] }, @@ -385,7 +385,7 @@ "copy-from": "fish_cooked", "color": "white", "description": "Reconstituted fish flakes, which are much more enjoyable to eat now that they have been rehydrated.", - "price": 500, + "price": "5 USD", "fun": 2 }, { @@ -399,8 +399,8 @@ "spoils_in": "360 days", "quench": -3, "description": "Dehydrated lobster meat. With proper storage, this dried food will remain edible for an incredibly long time.", - "price": 500, - "price_postapoc": 300, + "price": "5 USD", + "price_postapoc": "3 USD", "volume": "125 ml", "flags": [ "EDIBLE_FROZEN" ] }, @@ -411,7 +411,7 @@ "copy-from": "lobster_cooked", "color": "white", "description": "Reconstituted lobster meat, which is much more enjoyable to eat now that it has been rehydrated.", - "price": 500, + "price": "5 USD", "fun": 4 }, { @@ -425,8 +425,8 @@ "spoils_in": "360 days", "quench": -3, "description": "Dehydrated mollusk meat. With proper storage, this dried food will remain edible for an incredibly long time.", - "price": 500, - "price_postapoc": 300, + "price": "5 USD", + "price_postapoc": "3 USD", "volume": "125 ml", "flags": [ "EDIBLE_FROZEN" ] }, @@ -437,7 +437,7 @@ "copy-from": "mollusk_cooked", "color": "pink", "description": "Reconstituted mollusk meat, which is much more enjoyable to eat now that it has been rehydrated.", - "price": 500, + "price": "5 USD", "fun": 4 }, { @@ -462,8 +462,8 @@ "spoils_in": "1 day 16 hours", "container": "can_food", "description": "Low-sodium boiled and canned fish. Contains most of the nutrition, but little of the savor of cooked fish.", - "price": 250, - "price_postapoc": 250, + "price": "2 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "sealed": true, "fun": 2 }, @@ -476,8 +476,8 @@ "spoils_in": "1 day 16 hours", "container": "can_food", "description": "Low-sodium boiled and canned lobster. Contains most of the nutrition, but little of the savor of cooked lobster.", - "price": 250, - "price_postapoc": 250, + "price": "2 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "sealed": true, "fun": 4 }, @@ -493,8 +493,8 @@ "symbol": "f", "calories": 381, "description": "A delicious pair of golden-brown crispy fried frog legs.", - "price": 700, - "price_postapoc": 300, + "price": "7 USD", + "price_postapoc": "3 USD", "material": [ "flesh" ], "volume": "250 ml", "flags": [ "EATEN_HOT" ], @@ -513,8 +513,8 @@ "symbol": "%", "calories": 748, "description": "A delicious golden-brown serving of crispy fried fish.", - "price": 500, - "price_postapoc": 400, + "price": "5 USD", + "price_postapoc": "4 USD", "material": [ "flesh" ], "volume": "250 ml", "flags": [ "EATEN_HOT" ], @@ -572,8 +572,8 @@ "symbol": "%", "calories": 180, "description": "Meat that has been cooked, preserved, and cut into thin slices for convenient sandwich construction. It tastes fine cold.", - "price": 14, - "price_postapoc": 75, + "price": "14 cent", + "price_postapoc": "75 cent", "//": "*Looking for ~$6 per pound here.", "material": [ "flesh" ], "volume": "75 ml", @@ -616,8 +616,8 @@ "quench": -2, "calories": 260, "description": "Preserved fish that has been dried in a lye solution. Vile and soap-like yet highly nutritious, it is reminiscent of the afterbirth of a dog or the world's largest chunk of phlegm.", - "price": 200, - "price_postapoc": 250, + "price": "2 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "flesh" ], "primary_material": "cured_meat", "volume": "250 ml", @@ -670,8 +670,8 @@ "quench": -8, "calories": 340, "description": "Salty little fish. They'll make you thirsty.", - "price": 200, - "price_postapoc": 300, + "price": "2 USD", + "price_postapoc": "3 USD", "material": [ "flesh" ], "volume": "250 ml", "flags": [ "EATEN_HOT" ], @@ -696,8 +696,8 @@ "quench": 6, "calories": 363, "description": "Biscuits, meat, and delicious mushroom soup all crammed together into a wonderfully greasy and tasty mush.", - "price": 1000, - "price_postapoc": 200, + "price": "10 USD", + "price_postapoc": "2 USD", "material": [ "flesh", "wheat", "mushroom" ], "volume": "250 ml", "flags": [ "EATEN_HOT" ], @@ -721,8 +721,8 @@ "quench": -2, "calories": 440, "description": "A concentrated mixture of fat and protein, first said to have been used as a nutritious high-energy food by the Querecho and Teya people of what is Texas today. Composed of meat, tallow, and edible berries, it provides excellent nutrition in an easy to carry form.", - "price": 600, - "price_postapoc": 350, + "price": "6 USD", + "price_postapoc": "3 USD 50 cent", "material": [ "flesh", "fruit" ], "volume": "120 ml", "vitamins": [ [ "vitC", 3 ], [ "calcium", 5 ], [ "iron", 21 ] ], @@ -746,8 +746,8 @@ "quench": -2, "calories": 440, "description": "A concentrated mixture of fat and protein, first said to have been used as a nutritious high-energy food by the Querecho and Teya people of what is Texas today. Composed of meat, tallow, and edible plants or mushrooms, it provides excellent nutrition in an easy to carry form.", - "price": 599, - "price_postapoc": 350, + "price": "5 USD 99 cent", + "price_postapoc": "3 USD 50 cent", "material": [ "flesh", "veggy" ], "volume": "120 ml", "vitamins": [ [ "vitC", 3 ], [ "calcium", 5 ], [ "iron", 21 ] ], @@ -771,8 +771,8 @@ "quench": -3, "calories": 400, "description": "A concentrated mixture of fat and protein, first said to have been used as a nutritious high-energy food by the Querecho and Teya people of what is Texas today. Composed of meat and tallow, it provides excellent nutrition in an easy to carry form. Contains no fruits or veggies.", - "price": 500, - "price_postapoc": 300, + "price": "5 USD", + "price_postapoc": "3 USD", "material": [ "flesh" ], "volume": "110 ml", "vitamins": [ [ "calcium", 4 ], [ "iron", 20 ] ], @@ -796,8 +796,8 @@ "quench": 13, "calories": 393, "description": "Some mac and cheese with ground meat added, enhancing the flavor and nutritional value.", - "price": 490, - "price_postapoc": 200, + "price": "4 USD 90 cent", + "price_postapoc": "2 USD", "material": [ "wheat", "flesh", "milk" ], "volume": "250 ml", "flags": [ "EATEN_HOT", "FREEZERBURN" ], @@ -881,8 +881,8 @@ "symbol": "%", "calories": 305, "description": "Now with 95 percent fewer dolphins!", - "price": 200, - "price_postapoc": 300, + "price": "2 USD", + "price_postapoc": "3 USD", "material": [ "flesh" ], "volume": "250 ml", "fun": 2, @@ -900,8 +900,8 @@ "symbol": "%", "calories": 276, "description": "Bright pink fish-paste from a can.", - "price": 500, - "price_postapoc": 350, + "price": "5 USD", + "price_postapoc": "3 USD 50 cent", "material": [ "flesh" ], "volume": "250 ml", "fun": 1, @@ -958,8 +958,8 @@ "quench": 1, "calories": 240, "description": "Chopped quahog clams in water.", - "price": 500, - "price_postapoc": 500, + "price": "5 USD", + "price_postapoc": "5 USD", "material": [ "flesh" ], "volume": "250 ml", "fun": 2, @@ -1112,8 +1112,8 @@ "weight": "300 g", "calories": 641, "description": "A supreme pizza with ALL the toppings.", - "price": 1500, - "price_postapoc": 1500, + "price": "15 USD", + "price_postapoc": "15 USD", "material": [ "wheat", "flesh", "veggy", "milk" ], "fun": 11, "vitamins": [ [ "vitC", 20 ], [ "calcium", 32 ], [ "iron", 28 ] ] @@ -1156,8 +1156,8 @@ "spoils_in": "1 day 16 hours", "container": "can_food", "description": "Low-sodium boiled and canned meat. Contains most of the nutrition, but little of the savor of cooked meat.", - "price": 250, - "price_postapoc": 250, + "price": "2 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "flags": [ "EATEN_HOT" ], "sealed": true, "fun": 2 @@ -1177,8 +1177,8 @@ "container": "plastic_bag_vac", "quench": -5, "description": "Meat slices cured in brine. Salty but tasty in a pinch.", - "price": 500, - "price_postapoc": 300, + "price": "5 USD", + "price_postapoc": "3 USD", "material": [ "flesh" ], "delete": { "flags": [ "NUTRIENT_OVERRIDE" ] }, "primary_material": "cured_meat", @@ -1242,7 +1242,7 @@ "color": "red", "quench": -6, "description": "Now that it's been fried, this SPAM is actually pretty tasty.", - "price": 500, + "price": "5 USD", "material": [ "flesh" ], "flags": [ "EATEN_HOT" ], "fun": 8 @@ -1265,8 +1265,8 @@ "symbol": "%", "calories": 380, "description": "A sandwich of minced meat and cheese with condiments. A simple favorite of the people before the Cataclysm.", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "flesh", "wheat", "milk" ], "primary_material": "processed_food", "volume": "300 ml", @@ -1292,8 +1292,8 @@ "symbol": "%", "calories": 380, "description": "A wheat-free sandwich of minced meat and cheese with condiments. A simple favorite of the people before the Cataclysm.", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "flesh", "veggy", "milk" ], "primary_material": "processed_food", "volume": "300 ml", @@ -1309,7 +1309,7 @@ "weight": "380 g", "calories": 500, "description": "A cheeseburger with more vegetables and condiments. This is the apex of pre-Cataclysm culinary achievement.", - "price_postapoc": 300, + "price_postapoc": "3 USD", "material": [ "flesh", "wheat", "milk", "veggy", "tomato" ], "primary_material": "processed_food", "volume": "350 ml", @@ -1324,7 +1324,7 @@ "weight": "380 g", "calories": 500, "description": "A wheat-free cheeseburger with more vegetables and condiments. This is the apex of pre-Cataclysm culinary achievement.", - "price_postapoc": 300, + "price_postapoc": "3 USD", "material": [ "flesh", "milk", "veggy", "tomato" ], "primary_material": "processed_food", "volume": "350 ml", @@ -1349,8 +1349,8 @@ "symbol": "%", "calories": 258, "description": "A sandwich of minced meat with condiments.", - "price": 900, - "price_postapoc": 200, + "price": "9 USD", + "price_postapoc": "2 USD", "material": [ "flesh", "wheat" ], "volume": "300 ml", "flags": [ "EATEN_HOT" ], @@ -1375,8 +1375,8 @@ "symbol": "%", "calories": 258, "description": "A wheat-free sandwich of minced meat with condiments.", - "price": 900, - "price_postapoc": 200, + "price": "9 USD", + "price_postapoc": "2 USD", "material": [ "flesh", "veggy" ], "volume": "300 ml", "flags": [ "EATEN_HOT" ], @@ -1404,8 +1404,8 @@ "symbol": "%", "calories": 391, "description": "A sandwich consisting of ground meat and tomato sauce served on bread.", - "price": 900, - "price_postapoc": 250, + "price": "9 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "flesh", "tomato", "wheat" ], "volume": "300 ml", "flags": [ "EATEN_HOT" ], @@ -1437,8 +1437,8 @@ "symbol": "%", "calories": 391, "description": "A sandwich consisting of ground meat and tomato sauce served on wheat-free bread.", - "price": 900, - "price_postapoc": 250, + "price": "9 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "flesh", "tomato", "veggy" ], "volume": "300 ml", "flags": [ "EATEN_HOT" ], @@ -1463,8 +1463,8 @@ "quench": -5, "calories": 210, "description": "A traditional Mexican dish composed of a corn tortilla folded or rolled around a meat filling.", - "price": 210, - "price_postapoc": 150, + "price": "2 USD 10 cent", + "price_postapoc": "1 USD 50 cent", "material": [ "flesh" ], "volume": "250 ml", "fun": 8, @@ -1488,8 +1488,8 @@ "quench": -5, "calories": 365, "description": "Frybread topped with beans, meat, and lettuce. Originally conceived by the Navajo in the 19th century, only having available basic foodstuffs provided by the US-government after forced expulsion from their homelands, this dish became popular with many Native Americans and is often served at Powwows or other festivities.", - "price": 210, - "price_postapoc": 150, + "price": "2 USD 10 cent", + "price_postapoc": "1 USD 50 cent", "material": [ "flesh" ], "volume": "250 ml", "fun": 8, @@ -1509,8 +1509,8 @@ "spoils_in": "4 days", "container": "jar_glass_sealed", "description": "A serving of crisply brined and canned meat. Tasty and nutritious.", - "price": 250, - "price_postapoc": 300, + "price": "2 USD 50 cent", + "price_postapoc": "3 USD", "delete": { "flags": [ "NUTRIENT_OVERRIDE" ] }, "fun": 6 }, @@ -1529,8 +1529,8 @@ "spoils_in": "360 days", "quench": -3, "description": "Dehydrated meat flakes. With proper storage, this dried food will remain edible for an incredibly long time.", - "price": 900, - "price_postapoc": 300, + "price": "9 USD", + "price_postapoc": "3 USD", "material": [ "flesh" ], "primary_material": "cured_meat", "volume": "125 ml", @@ -1547,8 +1547,8 @@ "spoils_in": "360 days", "quench": -1, "description": "A pair of dehydrated frog legs. With proper storage, this dried food will remain edible for an incredibly long time.", - "price": 600, - "price_postapoc": 300, + "price": "6 USD", + "price_postapoc": "3 USD", "material": [ "flesh" ], "primary_material": "cured_meat", "volume": "25 ml", @@ -1561,8 +1561,8 @@ "copy-from": "froglegs_cooked", "color": "light_red", "description": "Reconstituted frog legs, which are much more enjoyable to eat now that they have been rehydrated.", - "price": 600, - "price_postapoc": 300, + "price": "6 USD", + "price_postapoc": "3 USD", "fun": 2 }, { @@ -1577,8 +1577,8 @@ "copy-from": "meat_cooked", "color": "light_red", "description": "Reconstituted meat flakes, which are much more enjoyable to eat now that they have been rehydrated.", - "price": 900, - "price_postapoc": 100, + "price": "9 USD", + "price_postapoc": "1 USD", "delete": { "flags": [ "NUTRIENT_OVERRIDE" ] }, "fun": 2 }, @@ -1599,8 +1599,8 @@ "quench": 2, "calories": 979, "description": "This traditional Scottish savory pudding is made of meat and offal mixed with oatmeal, sewn into an animal's stomach and boiled. Surprisingly tasty and quite filling, it is best served with boiled root vegetables and strong whisky.", - "price": 750, - "price_postapoc": 250, + "price": "7 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "wheat", "flesh" ], "volume": "250 ml", "flags": [ "EATEN_HOT" ], @@ -1653,8 +1653,8 @@ "spoils_in": "12 hours", "calories": 160, "description": "Delicious slivers of thinly sliced raw fish, served with tasty vegetables.", - "price": 600, - "price_postapoc": 300, + "price": "6 USD", + "price_postapoc": "3 USD", "material": [ "veggy", "flesh" ], "fun": 7 }, @@ -1669,8 +1669,8 @@ "use_action": [ "POISON" ], "quench": -3, "description": "Pieces of poisonous meat that have been dried to prevent them from rotting away. They're still unsafe to eat.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "flesh" ], "volume": "125 ml", "flags": [ "EDIBLE_FROZEN" ], @@ -1738,8 +1738,8 @@ "calories": 230, "parasites": 32, "description": "A round, seasoned lump of meat, ready to fry.", - "price": 800, - "price_postapoc": 200, + "price": "8 USD", + "price_postapoc": "2 USD", "material": [ "flesh" ], "volume": "85 ml", "vitamins": [ [ "vitC", 2 ], [ "calcium", 8 ], [ "iron", 4 ] ], @@ -1757,7 +1757,7 @@ "copy-from": "meatball_raw", "parasites": 0, "spoils_in": "4 days", - "price_postapoc": 300, + "price_postapoc": "3 USD", "description": "A seasoned and fried round lump of meat. Just like mom used to make!", "flags": [ "EATEN_HOT" ], "fun": 6 diff --git a/data/json/items/comestibles/med.json b/data/json/items/comestibles/med.json index b857b3a0f0bd0..fe6596fc06300 100644 --- a/data/json/items/comestibles/med.json +++ b/data/json/items/comestibles/med.json @@ -58,8 +58,8 @@ "looks_like": "flu_shot", "weight": "12 g", "volume": "10ml", - "price": 3400, - "price_postapoc": 1000, + "price": "34 USD", + "price_postapoc": "10 USD", "material": [ "plastic" ], "symbol": "!", "color": "pink", @@ -321,8 +321,8 @@ "description": "Dilute hydrogen peroxide, for use as an antiseptic and for bleaching hair or textiles. Foams a little when in contact with organic matter, but otherwise harmless.", "weight": "28 g", "volume": "250 ml", - "price": 100, - "price_postapoc": 500, + "price": "1 USD", + "price_postapoc": "5 USD", "charges": 10, "symbol": "~", "color": "white", @@ -380,8 +380,8 @@ "description": "A debug item that lets you put NPCs (or yourself) to sleep.", "weight": "240 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "!", "color": "red", @@ -458,8 +458,8 @@ "addiction_potential": 60, "calories": 49, "description": "A potent cocktail of amphetamines, caffeine and corn syrup, this stuff puts a spring in your step, a fire in your eye, and a bad case of tachycardia tremors in your somersaulting heart.", - "price": 9000, - "price_postapoc": 300, + "price": "90 USD", + "price_postapoc": "3 USD", "material": [ "junk" ], "volume": "250 ml", "phase": "liquid", @@ -870,8 +870,8 @@ "description": "Daytime cold and flu medication, non-drowsy formula. Will suppress coughing, aching, headaches and runny noses, but you'll still need lots of fluids and rest.", "weight": "48 g", "volume": "250 ml", - "price": 800, - "price_postapoc": 1000, + "price": "8 USD", + "price_postapoc": "10 USD", "charges": 5, "symbol": "~", "color": "yellow", @@ -889,8 +889,8 @@ "weight": "27 g", "volume": "250 ml", "material": [ { "type": "isopropyl", "portion": 7 }, { "type": "water", "portion": 3 } ], - "price": 1500, - "price_postapoc": 500, + "price": "15 USD", + "price_postapoc": "5 USD", "charges": 10, "symbol": "~", "color": "light_cyan", @@ -904,7 +904,7 @@ "id": "disinfectant_makeshift", "type": "COMESTIBLE", "name": { "str_sp": "makeshift antiseptic" }, - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "copy-from": "disinfectant", "description": "Makeshift antiseptic made from ethanol. Can be used to disinfect wounds.", "flags": [ "NO_INGEST", "WATER_DISSOLVE" ], @@ -1025,7 +1025,7 @@ "volume": "1 ml", "stack_size": 10, "charges": 10, - "price": 1000, + "price": "10 USD", "container": "jar_3l_glass_sealed", "sealed": false, "symbol": "!", @@ -1094,8 +1094,8 @@ "description": "A pharmaceutical flu shot designed for mass vaccinations, still in its packaging. Purported to provide immunity to influenza, for the flu season for which it was developed.", "weight": "12 g", "volume": "10ml", - "price": 5000, - "price_postapoc": 1500, + "price": "50 USD", + "price_postapoc": "15 USD", "material": [ "plastic" ], "symbol": "!", "color": "magenta", @@ -1299,8 +1299,8 @@ "weight": "40 g", "volume": "250 ml", "charges": 1, - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "material": [ "oil" ], "symbol": "~", "color": "yellow", @@ -1326,8 +1326,8 @@ "weight": "40 g", "volume": "250 ml", "charges": 1, - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "material": [ "oil" ], "symbol": "~", "color": "yellow", @@ -1364,8 +1364,8 @@ "description": "Nighttime cold and flu medication. Useful when trying to sleep with a head full of virions. Will cause drowsiness.", "weight": "48 g", "volume": "250 ml", - "price": 800, - "price_postapoc": 750, + "price": "8 USD", + "price_postapoc": "7 USD 50 cent", "charges": 5, "symbol": "~", "color": "blue", @@ -1516,8 +1516,8 @@ "description": "Cough syrup made from mutated poppy. Will make you sleepy.", "weight": "48 g", "volume": "250 ml", - "price": 2500, - "price_postapoc": 250, + "price": "25 USD", + "price_postapoc": "2 USD 50 cent", "charges": 5, "symbol": "~", "color": "magenta", @@ -1621,8 +1621,8 @@ "material": [ { "type": "water", "portion": 991 }, { "type": "salt", "portion": 9 } ], "weight": "51 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 125, + "price": "5 USD", + "price_postapoc": "1 USD 25 cent", "charges": 5, "symbol": "~", "color": "light_cyan", @@ -1667,8 +1667,8 @@ "weight": "40 g", "volume": "250 ml", "charges": 1, - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "material": [ "oil" ], "symbol": "~", "color": "yellow", @@ -1973,8 +1973,8 @@ "material": [ "drug_filler" ], "weight": "1 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "container": "bottle_plastic_small", "charges": 10, "symbol": "%", @@ -2043,8 +2043,8 @@ "weight": "50 g", "volume": "250 ml", "charges": 7, - "price": 50, - "price_postapoc": 50, + "price": "50 cent", + "price_postapoc": "50 cent", "material": [ "oil" ], "phase": "liquid", "symbol": "~", @@ -2084,8 +2084,8 @@ "description": "A medical cream that provides both vascular restriction and anesthetic properties.", "weight": "5 g", "volume": "250 ml", - "price": 550, - "price_postapoc": 3000, + "price": "5 USD 50 cent", + "price_postapoc": "30 USD", "charges": 6, "stack_size": 60, "symbol": "u", diff --git a/data/json/items/comestibles/mre.json b/data/json/items/comestibles/mre.json index 2b7840644ef5a..2f45f350b5b53 100644 --- a/data/json/items/comestibles/mre.json +++ b/data/json/items/comestibles/mre.json @@ -10,8 +10,8 @@ "symbol": "%", "calories": 320, "description": "A generic MRE entree, you shouldn't see this.", - "price": 1250, - "price_postapoc": 300, + "price": "12 USD 50 cent", + "price_postapoc": "3 USD", "volume": "250 ml", "flags": [ "EATEN_HOT", "RAD_STERILIZED", "DECAY_EXPOSED_ATMOSPHERE" ], "looks_like": "mre_beef", @@ -290,7 +290,7 @@ "name": { "str": "frankfurters & beans entree" }, "calories": 254, "description": "The dreaded four fingers of death. It seems to be several decades old.", - "price": 850, + "price": "8 USD 50 cent", "material": [ "flesh", "junk", "bean" ], "fun": -6 }, @@ -301,7 +301,7 @@ "name": { "str": "cheese pizza entree" }, "calories": 261, "description": "The pizza entree from an MRE, now in vegetarian form.", - "price": 850, + "price": "8 USD 50 cent", "material": [ "wheat", "milk" ], "fun": 1 }, @@ -326,8 +326,8 @@ "symbol": "%", "calories": 220, "description": "A generic MRE side, you shouldn't see this.", - "price": 1250, - "price_postapoc": 300, + "price": "12 USD 50 cent", + "price_postapoc": "3 USD", "volume": "250 ml", "flags": [ "EATEN_HOT", "RAD_STERILIZED", "DECAY_EXPOSED_ATMOSPHERE" ], "looks_like": "mre_beef", @@ -378,8 +378,8 @@ "symbol": "%", "calories": 270, "description": "A generic MRE dessert, you shouldn't see this.", - "price": 1250, - "price_postapoc": 300, + "price": "12 USD 50 cent", + "price_postapoc": "3 USD", "volume": "125 ml", "flags": [ "RAD_STERILIZED", "DECAY_EXPOSED_ATMOSPHERE" ], "looks_like": "cookies", diff --git a/data/json/items/comestibles/mushroom.json b/data/json/items/comestibles/mushroom.json index bc630b87b6e6a..5fad736e0fd26 100644 --- a/data/json/items/comestibles/mushroom.json +++ b/data/json/items/comestibles/mushroom.json @@ -6,8 +6,8 @@ "copy-from": "mushroom", "spoils_in": "1 day", "description": "A tasty cooked wild mushroom.", - "price": 150, - "price_postapoc": 50, + "price": "1 USD 50 cent", + "price_postapoc": "50 cent", "fun": 1, "vitamins": [ [ "vitC", 4 ], [ "iron", 7 ] ], "flags": [ "FREEZERBURN" ] @@ -25,8 +25,8 @@ "looks_like": "mushroom", "calories": 24, "description": "Prized by chefs and woodsmen alike, morel mushrooms are delicious but must be cooked before they are safe to eat.", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "material": [ "mushroom" ], "volume": "250 ml", "fun": 1, @@ -42,8 +42,8 @@ "use_action": [ ], "spoils_in": "1 day", "description": "A tasty cooked morel mushroom.", - "price": 1500, - "price_postapoc": 50, + "price": "15 USD", + "price_postapoc": "50 cent", "fun": 4, "flags": [ "FREEZERBURN" ], "vitamins": [ [ "calcium", 2 ], [ "iron", 52 ] ] @@ -75,8 +75,8 @@ "quench": -1, "calories": 22, "description": "Dried mushrooms are a tasty and healthy addition to many meals.", - "price": 180, - "price_postapoc": 100, + "price": "1 USD 80 cent", + "price_postapoc": "1 USD", "material": [ "mushroom" ], "primary_material": "dried_vegetable", "volume": "25 ml", @@ -94,8 +94,8 @@ "symbol": "%", "calories": 15, "description": "Mushrooms are tasty, but be careful. Some can poison you, while others are hallucinogenic.", - "price": 140, - "price_postapoc": 50, + "price": "1 USD 40 cent", + "price_postapoc": "50 cent", "material": [ "mushroom" ], "volume": "250 ml", "fun": -3, diff --git a/data/json/items/comestibles/mutagen.json b/data/json/items/comestibles/mutagen.json index 7990a8448b85f..2c409cbb40347 100644 --- a/data/json/items/comestibles/mutagen.json +++ b/data/json/items/comestibles/mutagen.json @@ -144,7 +144,7 @@ "type": "COMESTIBLE", "name": { "str_sp": "chimera mutagenic primer" }, "description": "A processed mutagenic primer that churns with iridescence.", - "price": 400000, + "price": "4 kUSD", "looks_like": "iv_mutagen", "color": "red", "healthy": -15, @@ -163,7 +163,7 @@ "type": "COMESTIBLE", "name": { "str_sp": "Elf-A mutagenic primer" }, "description": "A processed mutagenic primer that's a striking sylvan green.", - "price": 400000, + "price": "4 kUSD", "looks_like": "iv_mutagen", "color": "light_green", "use_action": { @@ -286,7 +286,7 @@ "type": "COMESTIBLE", "name": { "str_sp": "raptor mutagenic primer" }, "description": "A processed mutagenic primer that seems to shift slightly whenever you look at it.", - "price": 400000, + "price": "4 kUSD", "looks_like": "iv_mutagen", "color": "green", "use_action": { @@ -643,7 +643,7 @@ "copy-from": "mutagen_flavor", "type": "COMESTIBLE", "name": { "str_sp": "medical mutagen" }, - "price": 150000, + "price": "1 kUSD 500 USD", "looks_like": "mutagen", "//": "*May* have been considered for commercial trading.", "use_action": { @@ -887,8 +887,8 @@ "description": "An experimental stem cell treatment, offering limited control over which mutations are purified. The liquid sloshes strangely inside of this syringe.", "weight": "12 g", "volume": "10ml", - "price": 1200000, - "price_postapoc": 3000, + "price": "12 kUSD", + "price_postapoc": "30 USD", "material": [ "plastic" ], "symbol": "!", "color": "magenta", @@ -911,8 +911,8 @@ "healthy": -12, "calories": 156, "description": "A deformed human fetus. Eating this would be the most vile thing you can think of, and just might cause you to mutate.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "hflesh" ], "volume": "250 ml", "fun": -60, @@ -932,8 +932,8 @@ "healthy": -8, "calories": 278, "description": "A misshapen human arm. Eating this would be incredibly disgusting and probably cause you to mutate.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "hflesh" ], "volume": "4500 ml", "fun": -20, @@ -953,8 +953,8 @@ "healthy": -8, "calories": 399, "description": "A malformed human leg. This would be gross to eat, and probably cause mutations.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "hflesh" ], "volume": "12 L", "fun": -20, diff --git a/data/json/items/comestibles/nuts.json b/data/json/items/comestibles/nuts.json index 26225d3b274b9..19babb5467e83 100644 --- a/data/json/items/comestibles/nuts.json +++ b/data/json/items/comestibles/nuts.json @@ -31,8 +31,8 @@ "quench": -2, "calories": 22, "description": "A handful of female juniper cones, for making gin and adding earthy flavors to food. Spicy, tastes similar to rosemary.", - "price": 400, - "price_postapoc": 25, + "price": "4 USD", + "price_postapoc": "25 cent", "material": [ "fruit" ], "volume": "250 ml", "fun": -2, @@ -67,7 +67,7 @@ "name": { "str_sp": "roasted pistachios" }, "copy-from": "pistachio_shelled", "description": "A handful of roasted nuts from a pistachio tree.", - "price": 150, + "price": "1 USD 50 cent", "flags": [ "EATEN_HOT", "EDIBLE_FROZEN" ], "fun": 3, "milling": { "into": "null", "recipe": "" } @@ -107,8 +107,8 @@ "symbol": "%", "calories": 184, "description": "Pulp left over after making almond milk. It's gritty and incredibly bland.", - "price": 10, - "price_postapoc": 50, + "price": "10 cent", + "price_postapoc": "50 cent", "material": [ "nut" ], "volume": "125 ml", "flags": [ "EDIBLE_FROZEN" ], @@ -120,8 +120,8 @@ "name": { "str_sp": "roasted almonds" }, "copy-from": "almond_shelled", "description": "A handful of roasted nuts from an almond tree.", - "price": 150, - "price_postapoc": 600, + "price": "1 USD 50 cent", + "price_postapoc": "6 USD", "flags": [ "EATEN_HOT", "EDIBLE_FROZEN" ], "fun": 3, "milling": { "into": "null", "recipe": "" } @@ -177,7 +177,7 @@ "name": { "str_sp": "roasted pecans" }, "copy-from": "pecan_shelled", "description": "A handful of roasted nuts from a pecan tree.", - "price": 150, + "price": "1 USD 50 cent", "flags": [ "EATEN_HOT", "EDIBLE_FROZEN" ], "fun": 3, "milling": { "into": "null", "recipe": "" } @@ -273,7 +273,7 @@ "name": { "str_sp": "roasted walnuts" }, "copy-from": "walnut_shelled", "description": "A handful of roasted nuts from a walnut tree.", - "price": 90, + "price": "90 cent", "flags": [ "EATEN_HOT", "EDIBLE_FROZEN" ], "fun": 1, "milling": { "into": "null", "recipe": "" } @@ -284,7 +284,7 @@ "name": { "str_sp": "roasted butternuts" }, "copy-from": "butternut_shelled", "description": "A handful of roasted nuts from a butternut tree.", - "price": 90, + "price": "90 cent", "flags": [ "EATEN_HOT", "EDIBLE_FROZEN" ], "fun": 1 }, @@ -316,7 +316,7 @@ "name": { "str_sp": "roasted chestnuts" }, "copy-from": "chestnut_shelled", "description": "A handful of roasted nuts from a chestnut tree.", - "price": 90, + "price": "90 cent", "flags": [ "EATEN_HOT", "EDIBLE_FROZEN" ], "milling": { "into": "flour_wheat_free", "recipe": "flour_wheat_free_mill_4_5" }, "fun": 3 @@ -389,7 +389,7 @@ "name": { "str_sp": "roasted hazelnuts" }, "copy-from": "hazelnut_shelled", "description": "A handful of roasted nuts from a hazelnut tree.", - "price": 90, + "price": "90 cent", "flags": [ "EATEN_HOT", "EDIBLE_FROZEN" ], "fun": 1, "milling": { "into": "null", "recipe": "" } @@ -422,8 +422,8 @@ "name": { "str_sp": "roasted hickory nuts" }, "copy-from": "hickory_nut_shelled", "description": "A handful of roasted nuts from a hickory tree.", - "price": 90, - "price_postapoc": 500, + "price": "90 cent", + "price_postapoc": "5 USD", "flags": [ "EATEN_HOT", "EDIBLE_FROZEN" ], "fun": 1, "milling": { "into": "null", "recipe": "" } @@ -442,8 +442,8 @@ "quench": 10, "calories": 130, "description": "Delicious hickory nut ambrosia. A drink worthy of the gods.", - "price": 100, - "price_postapoc": 400, + "price": "1 USD", + "price_postapoc": "4 USD", "material": [ "nut", "milk" ], "volume": "250 ml", "phase": "liquid", @@ -460,8 +460,8 @@ "spoils_in": "180 days", "name": { "str_sp": "peanut butter" }, "description": "A brown goo that tastes very little like its namesake. It's not bad, but it'll stick to the roof of your mouth.", - "price": 195, - "price_postapoc": 1000, + "price": "1 USD 95 cent", + "price_postapoc": "10 USD", "//": "Two tablespoons per charge.", "weight": "50 g", "volume": "250 ml", @@ -496,8 +496,8 @@ "comestible_type": "FOOD", "color": "brown", "spoils_in": "180 days", - "price": 195, - "price_postapoc": 1000, + "price": "1 USD 95 cent", + "price_postapoc": "10 USD", "//": "Two tablespoons per charge.", "phase": "solid", "volume": "31 ml", @@ -567,8 +567,8 @@ "copy-from": "acorns", "spoils_in": "5 days", "description": "A handful of mushy blanched acorns. No longer bitter, but not pleasant to eat in this state.", - "price": 90, - "price_postapoc": 200, + "price": "90 cent", + "price_postapoc": "2 USD", "flags": [ "EDIBLE_FROZEN", "SMOKABLE" ], "smoking_result": "acorns_cooked", "fun": -1, @@ -583,7 +583,7 @@ "comestible_type": "DRINK", "symbol": "~", "quench": 25, - "price_postapoc": 50, + "price_postapoc": "50 cent", "delete": { "flags": [ "EDIBLE_FROZEN" ] }, "weight": "512 g", "volume": "500 ml", diff --git a/data/json/items/comestibles/offal_dishes.json b/data/json/items/comestibles/offal_dishes.json index e72bda7a88378..0d8e834b924f8 100644 --- a/data/json/items/comestibles/offal_dishes.json +++ b/data/json/items/comestibles/offal_dishes.json @@ -27,7 +27,7 @@ "symbol": "%", "looks_like": "meat_cooked", "description": "A classic way to serve liver.", - "price_postapoc": 150, + "price_postapoc": "1 USD 50 cent", "material": [ "flesh", "veggy" ], "color": "brown", "weight": "206 g", @@ -89,7 +89,7 @@ "quench": 2, "fun": 3, "description": "Stomach lining, cut up and stewed for an hour in broth. Better than it sounds.", - "price_postapoc": 50, + "price_postapoc": "50 cent", "material": [ "flesh" ], "primary_material": "flesh", "color": "brown", @@ -109,7 +109,7 @@ "quench": -4, "fun": 6, "description": "Some people don't enjoy the taste or texture of organ meat, so deep-frying is a great way to disguise both.", - "price_postapoc": 150, + "price_postapoc": "1 USD 50 cent", "material": [ "flesh", "wheat" ], "primary_material": "flesh", "color": "brown", @@ -227,7 +227,7 @@ "quench": 2, "fun": 7, "description": "A German peasant dish that converts many less-desirable meat cuts and organs into a palatable meal with the liberal application of butter, sugar, and wine.", - "price_postapoc": 1000, + "price_postapoc": "10 USD", "material": [ "flesh", "wheat", "veggy" ], "primary_material": "flesh", "color": "yellow", diff --git a/data/json/items/comestibles/other.json b/data/json/items/comestibles/other.json index 4af1cd4709124..bad42111a358e 100644 --- a/data/json/items/comestibles/other.json +++ b/data/json/items/comestibles/other.json @@ -355,8 +355,8 @@ "symbol": "%", "calories": 174, "description": "A little hunk of glop that fell off a slime monster. It doesn't seem hostile, but it does wiggle occasionally.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "volume": "250 ml", "fun": -10 }, @@ -372,8 +372,8 @@ "quench": 2, "calories": 436, "description": "A large chunk of wax filled with honey. Very tasty.", - "price": 3500, - "price_postapoc": 300, + "price": "35 USD", + "price_postapoc": "3 USD", "material": [ "honey" ], "volume": "250 ml", "fun": 9 @@ -388,8 +388,8 @@ "material": [ "beeswax" ], "symbol": "%", "description": "A large chunk of beeswax. Despite being used in some cooking recipes, beeswax in itself is indigestible to humans.", - "price": 1300, - "price_postapoc": 10, + "price": "13 USD", + "price_postapoc": "10 cent", "volume": "250 ml", "flags": [ "UNRECOVERABLE" ] }, @@ -404,8 +404,8 @@ "symbol": "%", "calories": 240, "description": "A translucent hexagonal chunk of wax, filled with dense, milky, bitter and acidic-tasting jelly. Though some hold it as a panacea, it doesn't have any medical benefit. Still it is rich with the most beneficial substances the hive can produce.", - "price": 20000, - "price_postapoc": 400, + "price": "200 USD", + "price_postapoc": "4 USD", "volume": "250 ml", "flags": [ "EDIBLE_FROZEN", "NUTRIENT_OVERRIDE" ], "fun": -5 @@ -601,8 +601,8 @@ "calories": 6, "//": "Same as the meat it's been made from. It's additional ingredient compared to smoking, jerking, and dehydrating, so there's no incentive otherwise.", "description": "Fresh gelatin. Not vegan-friendly!", - "price": 150, - "price_postapoc": 50, + "price": "1 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "flesh" ], "volume": "250 ml", "vitamins": [ [ "vitC", 15 ], [ "calcium", 2 ], [ "iron", 8 ] ], @@ -654,8 +654,8 @@ "color": "white", "symbol": "`", "description": "A napkin. Can be used for fires.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "volume": "3 ml", "flags": [ "TINDER" ], @@ -671,8 +671,8 @@ "color": "brown", "symbol": "`", "description": "A piece of cardboard.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "cardboard" ], "volume": "25 ml" }, @@ -731,8 +731,8 @@ "quench": 1, "calories": 203, "description": "A hearty serving of cooked great northern beans.", - "price": 100, - "price_postapoc": 100, + "price": "1 USD", + "price_postapoc": "1 USD", "material": [ "bean" ], "volume": "250 ml", "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE" ], @@ -750,8 +750,8 @@ "symbol": "%", "calories": 130, "description": "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very well and can be used as a meat alternative in many dishes.", - "price": 90, - "price_postapoc": 50, + "price": "90 cent", + "price_postapoc": "50 cent", "fun": -4, "material": [ "veggy" ], "volume": "85 ml", @@ -771,8 +771,8 @@ "fun": 10, "calories": 150, "description": "Tofu, a soy protein crucial to East Asian cuisine. It absorbs flavors very well and can be used as a meat alternative in many dishes.", - "price": 90, - "price_postapoc": 50, + "price": "90 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "85 ml", "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE" ], @@ -789,8 +789,8 @@ "symbol": "%", "calories": 130, "description": "Dehydrated tofu, sealed and still extra firm to last a long time.", - "price": 90, - "price_postapoc": 75, + "price": "90 cent", + "price_postapoc": "75 cent", "material": [ "veggy" ], "volume": "85 ml", "vitamins": [ [ "calcium", 16 ], [ "iron", 4 ] ] @@ -808,8 +808,8 @@ "spoils_in": "364 days", "calories": 56, "description": "Beige colored beans. They have many uses, but in their raw form are fairly poisonous to humans.", - "price": 90, - "price_postapoc": 50, + "price": "90 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "fun": -5, "vitamins": [ [ "iron", 25 ], [ "vitC", 1 ], [ "calcium", 3 ] ], @@ -837,8 +837,8 @@ "healthy": -1, "calories": 56, "description": "Beige colored beans, dried until rock hard. They'll need to be cooked or processed before use.", - "price": 90, - "price_postapoc": 50, + "price": "90 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "fun": -5, "milling": { "into": "flour_wheat_free", "recipe": "flour_wheat_free_mill_1_1" }, @@ -866,8 +866,8 @@ "spoils_in": "3 days", "calories": 56, "description": "Raw soybeans still in their pod. They can be cooked as-is or shelled for further processing, but in their raw form, they're toxic to humans.", - "price": 150, - "price_postapoc": 50, + "price": "1 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "fun": 1, "vitamins": [ [ "iron", 26 ], [ "vitC", 16 ], [ "calcium", 6 ] ], @@ -923,8 +923,8 @@ "symbol": "f", "calories": 12, "description": "Real foodstuff now in a pocket size format!", - "price": 50, - "price_postapoc": 500, + "price": "50 cent", + "price_postapoc": "5 USD", "material": [ "foodplace_foodstuff" ], "volume": "12 ml", "flags": [ "EDIBLE_FROZEN", "IRREPLACEABLE_CONSUMABLE" ], @@ -1033,8 +1033,8 @@ "calories": 78, "vitamins": [ [ "vitC", 2 ], [ "calcium", 1 ], [ "iron", 8 ] ], "description": "This is a human brain soaked in a solution of highly toxic formaldehyde. Eating this would be a terrible idea.", - "price": 80, - "price_postapoc": 0, + "price": "80 cent", + "price_postapoc": "0 cent", "material": [ "hflesh" ], "flags": [ "TRADER_AVOID" ], "volume": "250 ml", @@ -1048,8 +1048,8 @@ "description": "What cattle eat. Mainly made of grass, silage or legumes. It's perfect for ruminants.", "weight": "300 g", "volume": "250 ml", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "to_hit": -5, "material": [ "veggy" ], "symbol": ";", @@ -1071,8 +1071,8 @@ "description": "A pile of cattle fodder, about enough to feed a goat or a sheep for a day.", "weight": "1925 g", "volume": "1750 ml", - "price": 700, - "price_postapoc": 175, + "price": "7 USD", + "price_postapoc": "1 USD 75 cent", "to_hit": -5, "material": [ "veggy" ], "symbol": ";", @@ -1094,8 +1094,8 @@ "description": "A big heap of cattle fodder, enough to feed a cow for a day.", "weight": "9900 g", "volume": "9000 ml", - "price": 36000, - "price_postapoc": 900, + "price": "360 USD", + "price_postapoc": "9 USD", "to_hit": -5, "material": [ "veggy" ], "symbol": ";", @@ -1117,8 +1117,8 @@ "description": "What birds eat. Mainly made of seeds, silage or legumes. It's perfect for small birds.", "weight": "60 g", "volume": "250 ml", - "price": 20, - "price_postapoc": 25, + "price": "20 cent", + "price_postapoc": "25 cent", "to_hit": -5, "material": [ "veggy" ], "symbol": ";", @@ -1141,8 +1141,8 @@ "spoils_in": "1 day", "container": "can_medium", "volume": "500 ml", - "price": 300, - "price_postapoc": 250, + "price": "3 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "flesh" ], "symbol": ";", @@ -1165,8 +1165,8 @@ "spoils_in": "90 days", "container": "bag_plastic", "volume": "250 ml", - "price": 300, - "price_postapoc": 400, + "price": "3 USD", + "price_postapoc": "4 USD", "to_hit": -5, "material": [ "flesh" ], "symbol": ";", @@ -1190,8 +1190,8 @@ "spoils_in": "1 day", "container": "can_food", "volume": "250 ml", - "price": 300, - "price_postapoc": 400, + "price": "3 USD", + "price_postapoc": "4 USD", "to_hit": -5, "material": [ "flesh" ], "symbol": ";", @@ -1214,8 +1214,8 @@ "spoils_in": "90 days", "container": "bag_plastic", "volume": "250 ml", - "price": 300, - "price_postapoc": 400, + "price": "3 USD", + "price_postapoc": "4 USD", "to_hit": -5, "material": [ "flesh" ], "symbol": ";", @@ -1241,8 +1241,8 @@ "calories": 70, "vitamins": [ ], "description": "Some grass, edible by grazers and ruminants only. Seeing this item is a bug.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "veggy" ], "flags": [ "TRADER_AVOID" ], "volume": "250 ml" @@ -1258,8 +1258,8 @@ "calories": 50, "vitamins": [ ], "description": "A small plant or flower, edible by grazers and ruminants only. Seeing this item is a bug.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "veggy" ], "flags": [ "TRADER_AVOID" ], "volume": "250 ml" @@ -1275,8 +1275,8 @@ "calories": 174, "vitamins": [ ], "description": "Some underbrush, edible by ruminants only. Seeing this item is a bug.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "veggy" ], "flags": [ "TRADER_AVOID" ], "volume": "250 ml" @@ -1292,8 +1292,8 @@ "calories": 130, "vitamins": [ ], "description": "Some nectar. Seeing this item is a bug.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "flags": [ "TRADER_AVOID" ], "volume": "250 ml" }, @@ -1310,8 +1310,8 @@ "container": "box_tea", "calories": 1, "material": [ "paper" ], - "price": 50, - "price_postapoc": 200, + "price": "50 cent", + "price_postapoc": "2 USD", "freezing_point": -274, "description": "A paper sachet with tea leaves inside. Put it into boiling water to make a cup of black tea." }, @@ -1362,8 +1362,8 @@ "color": "brown", "symbol": ",", "material": [ "plastic" ], - "price": 50, - "price_postapoc": 200, + "price": "50 cent", + "price_postapoc": "2 USD", "freezing_point": -274, "description": "A small packet of commercial instant coffee powder. No creamer or sweetener added." }, @@ -1380,10 +1380,10 @@ "calories": 9, "quench": 6, "fun": -10, - "price": 0, + "price": "0 cent", "volume": "10L", "charges": 1, - "price_postapoc": 10, + "price_postapoc": "10 cent", "phase": "liquid", "comestible_type": "DRINK", "flags": [ "NUTRIENT_OVERRIDE" ], @@ -1401,10 +1401,10 @@ "calories": 9, "quench": 6, "fun": -10, - "price": 0, + "price": "0 cent", "volume": "10L", "charges": 1, - "price_postapoc": 10, + "price_postapoc": "10 cent", "phase": "liquid", "comestible_type": "DRINK", "flags": [ "NUTRIENT_OVERRIDE" ] @@ -1452,8 +1452,8 @@ "description": "Dry leftovers that remain after extracting the oil from nuts or seeds.", "weight": "250 g", "volume": "250 ml", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "to_hit": -5, "material": [ "veggy" ], "symbol": "%", @@ -1481,8 +1481,8 @@ "description": "A common earthworm.", "weight": "2 g", "volume": "5 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -5, "material": [ "flesh" ], "symbol": "c", @@ -1563,8 +1563,8 @@ "spoils_in": "15 days", "rot_spawn": "GROUP_MUTATION_SNAIL", "description": "A small gastropod harvested from the bushes. Dangerous to consume raw but can be prepared if you get enough of them.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "volume": "15 ml", "fun": -20 }, @@ -1576,8 +1576,8 @@ "description": "A mass of ground seeds that are ready to be pressed into oil.", "weight": "100 g", "volume": "100 ml", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "to_hit": -5, "material": [ "veggy" ], "symbol": "%", @@ -1596,8 +1596,8 @@ "description": "A thick mass of ground nuts that are ready to be pressed into oil.", "weight": "100 g", "volume": "100 ml", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "to_hit": -5, "material": [ "nut" ], "symbol": "%", @@ -1616,8 +1616,8 @@ "name": { "str": "swarm of bees", "str_pl": "swarms of bees" }, "description": "A swarm of honey bees, displaced from the hive. Without the support and nutrients of an apiary, or taking root somewhere, they will die in a few days.", "//": "While bees have mass and volume, it is easier to round to zero for the purposes of the game.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "spoils_in": "2 days", "flags": [ "ZERO_WEIGHT", "INEDIBLE" ], "volume": "500 ml", diff --git a/data/json/items/comestibles/protein.json b/data/json/items/comestibles/protein.json index 41ccbcf5393ff..6a2a1544abb41 100644 --- a/data/json/items/comestibles/protein.json +++ b/data/json/items/comestibles/protein.json @@ -13,8 +13,8 @@ "weight": "278 g", "volume": "250 ml", "charges": 1, - "price": 200, - "price_postapoc": 25, + "price": "2 USD", + "price_postapoc": "25 cent", "symbol": "~", "color": "light_gray", "spoils_in": "2 days", @@ -62,8 +62,8 @@ "description": "SoyPelusa ran a highly successful crowdfunding campaign for their signature protein bar, dubbed \"DaiZoom.\"\n\nA person can live on one of these bars, three times a day, presumably forever. After backers received their product, a single flaw was found: most consumers found starvation preferable to the flavor. Warehouses of the product went unsold as the company went bankrupt, providing the perfect opportunity for FEMA to scoop them up and stock the evac shelters.\n\nNow, you hold a piece of famous crowdfunding history in your hands. How exciting.", "weight": "150 g", "volume": "223 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "flags": [ "EDIBLE_FROZEN" ], "healthy": -1, "fun": -5, @@ -121,8 +121,8 @@ "weight": "286 g", "volume": "250 ml", "charges": 1, - "price": 300, - "price_postapoc": 75, + "price": "3 USD", + "price_postapoc": "75 cent", "symbol": "~", "color": "white", "spoils_in": "1 day", diff --git a/data/json/items/comestibles/raw_fruit.json b/data/json/items/comestibles/raw_fruit.json index 609daf1f75249..37a5294a348cf 100644 --- a/data/json/items/comestibles/raw_fruit.json +++ b/data/json/items/comestibles/raw_fruit.json @@ -11,8 +11,8 @@ "quench": 3, "calories": 94, "description": "An iconic and delicious fruit grown and enjoyed across the world, used for generations in folk medicine as doctor repellant.", - "price": 40, - "price_postapoc": 100, + "price": "40 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "232 ml", "fun": 3, @@ -32,8 +32,8 @@ "quench": 1, "calories": 38, "description": "A term used to describe both wild apples native to North America as well as less appetizing feral varieties, these are rather small and far too sour.", - "price": 40, - "price_postapoc": 100, + "price": "40 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "64 ml", "fun": -1, @@ -52,8 +52,8 @@ "symbol": "%", "calories": 105, "description": "A long, curved yellow fruit in a peel. Some people like using them in desserts. Those people are probably dead.", - "price": 18, - "price_postapoc": 100, + "price": "18 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "125 ml", "fun": 5, @@ -73,8 +73,8 @@ "quench": 8, "calories": 131, "description": "A sweet citrus fruit. Also comes in juice form. In case you were wondering, the color is named after the fruit, not the other way around.", - "price": 35, - "price_postapoc": 100, + "price": "35 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "156 ml", "fun": 3, @@ -94,8 +94,8 @@ "quench": 5, "calories": 21, "description": "A very sour citrus fruit. Can be eaten if you're desperate, but you should probably look for some other cooking application for this.", - "price": 38, - "price_postapoc": 100, + "price": "38 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "115 ml", "flags": [ "FREEZERBURN", "SMOKABLE", "RAW" ], @@ -115,8 +115,8 @@ "quench": 2, "calories": 84, "description": "A handful of tasty sweet-tart berries. They're blue, but that doesn't mean they're sad.", - "price": 221, - "price_postapoc": 100, + "price": "2 USD 21 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": 2, @@ -136,8 +136,8 @@ "quench": 3, "calories": 46, "description": "A handful of tasty, juicy red berries with visible seeds on the outside of the skin. Often found growing wild in fields.", - "price": 69, - "price_postapoc": 100, + "price": "69 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": 5, @@ -178,8 +178,8 @@ "quench": 3, "calories": 64, "description": "A handful of sweet red berries, each with a hollow core.", - "price": 173, - "price_postapoc": 100, + "price": "1 USD 73 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": 4, @@ -199,8 +199,8 @@ "quench": 2, "calories": 84, "description": "A handful of huckleberries, often times confused for blueberries.", - "price": 400, - "price_postapoc": 100, + "price": "4 USD", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": 2, @@ -220,8 +220,8 @@ "symbol": "%", "calories": 20, "description": "A bunch of deep red berries with a pleasant bittersweet flavor. Can have a laxative effect if eaten in large quantities.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "fruit" ], "volume": "20 ml", "flags": [ "SMOKABLE", "EDIBLE_FROZEN" ], @@ -240,8 +240,8 @@ "calories": 30, "healthy": -1, "description": "A small, edible fruit of an otherwise toxic plant. You should not eat too many of them.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "fruit" ], "volume": "20 ml", "flags": [ "SMOKABLE", "FORAGE_POISON" ], @@ -260,8 +260,8 @@ "symbol": "%", "calories": 70, "description": "A handful of sweet, brilliant red berries of the wintergreen shrub.", - "price": 400, - "price_postapoc": 100, + "price": "4 USD", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "40 ml", "fun": 2, @@ -281,8 +281,8 @@ "quench": 2, "calories": 60, "description": "This red variety of mulberries is unique to eastern North America, and is said to have the strongest flavor of any variety in the world.", - "price": 400, - "price_postapoc": 100, + "price": "4 USD", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": 4, @@ -303,8 +303,8 @@ "use_action": [ "POISON" ], "calories": 106, "description": "A handful of elderberries, toxic when eaten raw but great when cooked.", - "price": 45, - "price_postapoc": 100, + "price": "45 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": -2, @@ -325,8 +325,8 @@ "//": "Volume/calorie ratio is different from most online nutrition facts as the unprepared fruits are about 50% inedible matter by volume.", "calories": 102, "description": "A handful of fruits grown from pollinated rose flowers. Full of irritating hairs and hard seeds, they'll need to be disassembled before eating.", - "price": 200, - "price_postapoc": 50, + "price": "2 USD", + "price_postapoc": "50 cent", "material": [ "fruit" ], "volume": "250 ml", "fun": 2, @@ -345,8 +345,8 @@ "quench": 1, "calories": 103, "description": "Tart little fruits grown from a rose bush, now separated from their inedible seeds and spines.", - "price": 200, - "price_postapoc": 50, + "price": "2 USD", + "price_postapoc": "50 cent", "material": [ "fruit" ], "volume": "125 ml", "fun": 2, @@ -366,8 +366,8 @@ "quench": -1, "calories": 25, "description": "A handful of stringy pulp, left-over from juicing some kind of fruit. It's not very tasty, but contains a lot of healthy fiber.", - "price": 25, - "price_postapoc": 20, + "price": "25 cent", + "price_postapoc": "20 cent", "material": [ "fruit" ], "volume": "100 ml", "flags": [ "SMOKABLE" ], @@ -387,8 +387,8 @@ "quench": 7, "calories": 101, "description": "A juicy, bell-shaped pear. Yum!", - "price": 36, - "price_postapoc": 100, + "price": "36 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": 4, @@ -408,8 +408,8 @@ "quench": 3, "calories": 37, "description": "A sweet, sandy-textured fruit with pink flesh native to the Caribbean, Central America, and South America. Great for making milkshakes.", - "price": 30, - "price_postapoc": 100, + "price": "30 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "125 ml", "fun": 4, @@ -429,8 +429,8 @@ "quench": 5, "calories": 229, "description": "A sweet, acidic fruit originating from South America. It grows on vines and is filled with seeds like a pomegranate. Also known as the maracuya.", - "price": 120, - "price_postapoc": 100, + "price": "1 USD 20 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "flags": [ "FREEZERBURN", "SMOKABLE" ], @@ -450,8 +450,8 @@ "quench": 8, "calories": 30, "description": "An acidic fruit found in South America and the Caribbean, it looks like a hairy orange and is used mainly for juice and desserts. Also known as the naranjilla.", - "price": 180, - "price_postapoc": 100, + "price": "1 USD 80 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": 3, @@ -471,8 +471,8 @@ "quench": 18, "calories": 73, "description": "A hybrid citrus fruit descended from the orange, whose taste ranges from sour to semi-sweet, and a little bitter.", - "price": 71, - "price_postapoc": 100, + "price": "71 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "455 ml", "flags": [ "FREEZERBURN", "SMOKABLE" ], @@ -492,8 +492,8 @@ "quench": 2, "calories": 87, "description": "A sweet red fruit that grows on trees. If you have some time on your hands, maybe you could figure out how to do that trick where you tie a knot in the stem with your tongue.", - "price": 65, - "price_postapoc": 100, + "price": "65 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": 3, @@ -513,8 +513,8 @@ "quench": 4, "calories": 30, "description": "A large purple plum. Tasty and good for your digestion.", - "price": 19, - "price_postapoc": 100, + "price": "19 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "82 ml", "fun": 3, @@ -534,8 +534,8 @@ "quench": 5, "calories": 104, "description": "A handful of juicy grapes. Quite calorie-dense compared to most fruit, and you might be able to make them into wine if you're ambitious enough.", - "price": 29, - "price_postapoc": 100, + "price": "29 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": 4, @@ -555,8 +555,8 @@ "quench": 9, "calories": 452, "description": "A large, spiky tropical fruit. A tough rind protects the tasty flesh inside, and digging into it as-is would be pretty inefficient and messy. You should find a knife or something vaguely knife-like to cut it up with.", - "price": 765, - "price_postapoc": 500, + "price": "7 USD 65 cent", + "price_postapoc": "5 USD", "material": [ "fruit" ], "volume": "2400 ml", "fun": -4, @@ -577,8 +577,8 @@ "quench": 2, "calories": 82, "description": "A handful of pineapple chunks. Delicious and a great source of Vitamin C, though a bit sour.", - "price": 139, - "price_postapoc": 60, + "price": "1 USD 39 cent", + "price_postapoc": "60 cent", "material": [ "fruit" ], "volume": "250 ml", "fun": 4, @@ -598,8 +598,8 @@ "quench": 10, "calories": 1940, "description": "A tropical fruit with a hard, hairy shell and a hollow inside full of liquid and edible flesh. If you want to eat it, you'll have to find something heavy to crack open the shell and something sharp to remove the 'meat'.", - "price": 100, - "price_postapoc": 100, + "price": "1 USD", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "1850 ml", "vitamins": [ [ "vitC", "16200 μg" ], [ "iron", "8300 μg" ], [ "calcium", "102400 μg" ] ], @@ -617,8 +617,8 @@ "quench": 5, "calories": 283, "description": "A handful of coconut flesh. It's surprisingly calorie-dense.", - "price": 82, - "price_postapoc": 50, + "price": "82 cent", + "price_postapoc": "50 cent", "material": [ "fruit" ], "volume": "250 ml", "fun": 4, @@ -638,8 +638,8 @@ "quench": 4, "calories": 58, "description": "This fruit's large pit is surrounded by its tasty flesh.", - "price": 38, - "price_postapoc": 100, + "price": "38 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "180 ml", "fun": 4, @@ -660,8 +660,8 @@ "//": "yes, it really does have that much water in it - 4131.7g in this size specifically", "calories": 1355, "description": "A deep green melon, bigger than your head. It is very juicy! You should be able to take it apart with a knife.", - "price": 758, - "price_postapoc": 600, + "price": "7 USD 58 cent", + "price_postapoc": "6 USD", "material": [ "fruit" ], "volume": "7150 ml", "flags": [ "EATEN_COLD", "FREEZERBURN", "INEDIBLE" ], @@ -680,8 +680,8 @@ "quench": 52, "calories": 85, "description": "A yummy wedge of watermelon. A handheld snack that tastes like summer.", - "price": 48, - "price_postapoc": 40, + "price": "48 cent", + "price_postapoc": "40 cent", "material": [ "fruit" ], "volume": "445 ml", "flags": [ "EATEN_COLD", "FREEZERBURN", "SMOKABLE" ], @@ -701,8 +701,8 @@ "quench": 100, "calories": 187, "description": "A large and very sweet orange fruit. Technically a berry, like all melons are. You should be able to take it apart with a knife.", - "price": 217, - "price_postapoc": 100, + "price": "2 USD 17 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "1100 ml", "flags": [ "EATEN_COLD", "INEDIBLE" ], @@ -722,8 +722,8 @@ "quench": 25, "calories": 47, "description": "A handful of cantaloupe melon chunks. A great snack by itself or in a fruit salad.", - "price": 21, - "price_postapoc": 25, + "price": "21 cent", + "price_postapoc": "25 cent", "material": [ "fruit" ], "volume": "250 ml", "fun": 4, @@ -743,8 +743,8 @@ "quench": 3, "calories": 62, "description": "A darker cousin of the raspberry. The color isn't actually what sets them apart - the identifying characteristic is whether the stem stays connected to the fruit when it's first picked.", - "price": 178, - "price_postapoc": 100, + "price": "1 USD 78 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": 4, @@ -764,8 +764,8 @@ "quench": 3, "calories": 124, "description": "A fleshy tropical fruit with a large pit. Better enjoy it soon, you're pretty sure more of these aren't going to be imported for a long time.", - "price": 60, - "price_postapoc": 100, + "price": "60 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "500 ml", "fun": 5, @@ -785,8 +785,8 @@ "quench": 12, "calories": 234, "description": "Under this pomegranate's spongy skin lie hundreds of fleshy seeds.", - "price": 441, - "price_postapoc": 200, + "price": "4 USD 41 cent", + "price_postapoc": "2 USD", "material": [ "fruit" ], "volume": "550 ml", "fun": 7, @@ -806,8 +806,8 @@ "quench": 24, "calories": 130, "description": "A very sweet and soft tropical fruit.", - "price": 118, - "price_postapoc": 300, + "price": "1 USD 18 cent", + "price_postapoc": "3 USD", "material": [ "fruit" ], "volume": "594 ml", "fun": 5, @@ -827,8 +827,8 @@ "quench": 3, "calories": 42, "description": "A large, brown, and fuzzy-skinned berry. Its delicious insides are green.", - "price": 56, - "price_postapoc": 100, + "price": "56 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "70 ml", "fun": 3, @@ -849,8 +849,8 @@ "quench": 3, "calories": 67, "description": "A handful of smooth-skinned fruits related to the peach.", - "price": 52, - "price_postapoc": 100, + "price": "52 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": 3, @@ -870,8 +870,8 @@ "quench": 6, "calories": 62, "description": "The edible bud of a cholla cactus, with its spines removed; the candy of the Mojave indigenous peoples. Tastes similar to asparagus.", - "price": 900, - "price_postapoc": 100, + "price": "9 USD", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "175 ml", "fun": 6, @@ -891,8 +891,8 @@ "quench": 15, "calories": 14, "description": "A handful of edible pads from a cactus.", - "price": 50, - "price_postapoc": 25, + "price": "50 cent", + "price_postapoc": "25 cent", "material": [ "fruit" ], "volume": "250 ml", "fun": -1, diff --git a/data/json/items/comestibles/raw_grain.json b/data/json/items/comestibles/raw_grain.json index fd702b463c996..7fab416258b71 100644 --- a/data/json/items/comestibles/raw_grain.json +++ b/data/json/items/comestibles/raw_grain.json @@ -10,9 +10,9 @@ "symbol": "%", "calories": 132, "description": "A corn cob full of delicious golden kernels. You can eat them on the cob or shell it for cooking.", - "price": 170, + "price": "1 USD 70 cent", "//": "Thinking this is a single ear here.", - "price_postapoc": 50, + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "195 ml", "flags": [ "EATEN_HOT", "RAW" ], @@ -30,8 +30,8 @@ "symbol": "%", "calories": 132, "description": "Delicious golden kernels of corn.", - "price": 200, - "price_postapoc": 60, + "price": "2 USD", + "price_postapoc": "60 cent", "material": [ "veggy" ], "volume": "83 ml", "smoking_result": "dry_corn", @@ -50,8 +50,8 @@ "comestible_type": "FOOD", "symbol": "%", "description": "An empty corn cob. No longer contains any edible kernels, but it can be used to make stock or as fuel.", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "veggy", "wood" ], "volume": "111 ml", "fun": -8, @@ -68,7 +68,7 @@ "symbol": "%", "calories": 120, "description": "A special variety of corn which could be used for making popcorn, after it's dried. Unlike normal corn, it's not sweet and is more dry.", - "price": 170, + "price": "1 USD 70 cent", "material": [ "veggy" ], "volume": "195 ml", "fun": -2, @@ -89,8 +89,8 @@ "symbol": "%", "calories": 120, "description": "Dried kernels from a particular type of corn. Inedible raw, they can be cooked to make a tasty snack.", - "price": 100, - "price_postapoc": 400, + "price": "1 USD", + "price_postapoc": "4 USD", "material": [ "junk" ], "volume": "83 ml", "fun": -6, @@ -151,10 +151,10 @@ "symbol": ",", "description": "A sheaf of freshly-cut wheat, now ready for drying in a stook or smoker.", "spoils_in": "22 days", - "price": 25, + "price": "25 cent", "calories": 707, "//": "Wheatstraw has about 4410 kcal/kg, about 30 kcal will be lost when the wheat is threshed, and another 10 when it's winnowed. Humans can't digest wheatstraw, but many herbivores can.", - "price_postapoc": 20, + "price_postapoc": "20 cent", "material": [ "veggy" ], "flags": [ "SMOKABLE", "FRESH_GRAIN", "INEDIBLE", "CATTLE" ], "petfood": [ "CATTLEFOOD" ], @@ -176,8 +176,8 @@ "description": "A sheaf of dried wheat stalks. These will require threshing before anything can be done with them.", "flags": [ "INEDIBLE", "CATTLE", "SMOKED" ], "petfood": [ "CATTLEFOOD" ], - "price": 25, - "price_postapoc": 20, + "price": "25 cent", + "price_postapoc": "20 cent", "volume": "900 ml" }, { @@ -194,8 +194,8 @@ "flags": [ "INEDIBLE", "CATTLE", "BIRD", "RAT", "MOUSE" ], "petfood": [ "CATTLEFOOD" ], "description": "Wheat with the chaff still mixed in. It will have to be winnowed before it's usable.", - "price": 25, - "price_postapoc": 20, + "price": "25 cent", + "price_postapoc": "20 cent", "volume": "252 ml" }, { @@ -213,8 +213,8 @@ "calories": 10, "flags": [ "INEDIBLE", "CATTLE", "BIRD" ], "description": "Loose bits of dried straw and seed casings from winnowed grain. There are a few fragments of seeds still mixed in, a big enough pile of this stuff could be made into bird food or cattle fodder.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "volume": "2 ml" }, { @@ -228,8 +228,8 @@ "quench": -10, "calories": 667, "description": "A heap of dried wheatberries, ready for planting. They're hard as gravel, but could be boiled for food or ground into flour.", - "price": 120, - "price_postapoc": 100, + "price": "1 USD 20 cent", + "price_postapoc": "1 USD", "material": [ "wheat" ], "//": "These things are rock-hard and not digestible by humans, but birds and cattle can eat them just fine.", "milling": { "into": "flour", "recipe": "flour_mill_1_15" }, @@ -291,9 +291,9 @@ "name": { "str_sp": "oat stalks" }, "copy-from": "wheat_stalks", "description": "A sheaf of freshly-cut oats, now ready for drying in a stook or smoker.", - "price": 12, + "price": "12 cent", "calories": 355, - "price_postapoc": 10, + "price_postapoc": "10 cent", "smoking_result": "dry_oat_stalks" }, { @@ -304,8 +304,8 @@ "quench": -5, "calories": 355, "description": "A sheaf of dried oat stalks. These will require threshing before anything can be done with them.", - "price": 12, - "price_postapoc": 10 + "price": "12 cent", + "price_postapoc": "10 cent" }, { "type": "COMESTIBLE", @@ -315,8 +315,8 @@ "quench": -5, "calories": 340, "description": "Oats with the chaff still mixed in. They will have to be winnowed before they're usable.", - "price": 12, - "price_postapoc": 10 + "price": "12 cent", + "price_postapoc": "10 cent" }, { "type": "COMESTIBLE", @@ -329,8 +329,8 @@ "quench": -5, "calories": 335, "description": "A pile of raw oats.", - "price": 120, - "price_postapoc": 100, + "price": "1 USD 20 cent", + "price_postapoc": "1 USD", "material": [ "wheat" ], "volume": "250 ml", "milling": { "into": "flour_wheat_free", "recipe": "flour_wheat_free_mill_4_15" }, @@ -358,8 +358,8 @@ "quench": -5, "calories": 135, "description": "A sheaf of wild rice stalks, ready for drying.", - "price": 12, - "price_postapoc": 10, + "price": "12 cent", + "price_postapoc": "10 cent", "smoking_result": "dry_wild_rice_stalks" }, { @@ -370,8 +370,8 @@ "quench": -5, "calories": 135, "description": "A bunch of dry wild rice stalks. Threshing these would knock the grains loose.", - "price": 12, - "price_postapoc": 10 + "price": "12 cent", + "price_postapoc": "10 cent" }, { "type": "COMESTIBLE", @@ -416,8 +416,8 @@ "quench": -5, "calories": 247, "description": "A sheaf of tall grass with slender little seed pods, now ready for drying.", - "price": 12, - "price_postapoc": 10, + "price": "12 cent", + "price_postapoc": "10 cent", "smoking_result": "dry_canola_stalks", "volume": "315 ml" }, @@ -430,8 +430,8 @@ "quench": -5, "calories": 247, "description": "A sheaf of dry grass, it must be threshed to separate out the seeds.", - "price": 12, - "price_postapoc": 10, + "price": "12 cent", + "price_postapoc": "10 cent", "volume": "315 ml" }, { @@ -443,8 +443,8 @@ "quench": -5, "calories": 235, "description": "Round black seeds mixed in with dry chaff.", - "price": 12, - "price_postapoc": 10, + "price": "12 cent", + "price_postapoc": "10 cent", "volume": "252 ml" }, { @@ -459,8 +459,8 @@ "quench": -10, "calories": 230, "description": "A heap of round black seeds, typically milled and pressed for their oil.", - "price": 20, - "price_postapoc": 150, + "price": "20 cent", + "price_postapoc": "1 USD 50 cent", "material": [ "veggy" ], "volume": "250 ml", "vitamins": [ [ "calcium", 4 ], [ "iron", 47 ], [ "vitC", 7 ] ], @@ -489,8 +489,8 @@ "quench": -5, "calories": 247, "description": "A pile of short stalks with lentils rattling in their pods. These plants dried in the field and didn't need a tool to harvest, but they'll still need to be threshed and winnowed.", - "price": 12, - "price_postapoc": 10, + "price": "12 cent", + "price_postapoc": "10 cent", "volume": "315 ml" }, { @@ -502,8 +502,8 @@ "quench": -5, "calories": 235, "description": "Lentils with chaff mixed in. These will have to be winnowed before they're usable.", - "price": 12, - "price_postapoc": 10, + "price": "12 cent", + "price_postapoc": "10 cent", "volume": "252 ml" }, { @@ -537,9 +537,9 @@ "symbol": ",", "description": "These leafy stalks only get about waist-high and technically aren't a grass, but thanks to their long stems and nutritious seeds, they can still be farmed like any other cereal crop.", "spoils_in": "22 days", - "price": 25, + "price": "25 cent", "calories": 679, - "price_postapoc": 20, + "price_postapoc": "20 cent", "material": [ "veggy" ], "flags": [ "SMOKABLE", "FRESH_GRAIN", "INEDIBLE", "CATTLE" ], "petfood": [ "CATTLEFOOD" ], @@ -561,8 +561,8 @@ "description": "A heap of dried buckwheat. It'll need to be threshed before eating, unless you're a cow.", "flags": [ "INEDIBLE", "CATTLE", "SMOKED" ], "petfood": [ "CATTLEFOOD" ], - "price": 25, - "price_postapoc": 20, + "price": "25 cent", + "price_postapoc": "20 cent", "volume": "315 ml" }, { @@ -579,8 +579,8 @@ "flags": [ "INEDIBLE", "CATTLE", "BIRD", "RAT", "MOUSE" ], "petfood": [ "CATTLEFOOD" ], "description": "A pile of buckwheat seeds with some chaff still mixed in. Once it's winnowed, it'll be ready for use.", - "price": 25, - "price_postapoc": 20, + "price": "25 cent", + "price_postapoc": "20 cent", "volume": "290 ml" } ] diff --git a/data/json/items/comestibles/raw_veggy.json b/data/json/items/comestibles/raw_veggy.json index 1db6891d706d9..59656ab1772ce 100644 --- a/data/json/items/comestibles/raw_veggy.json +++ b/data/json/items/comestibles/raw_veggy.json @@ -13,8 +13,8 @@ "symbol": ",", "material": [ "veggy" ], "volume": "20 ml", - "price": 0, - "price_postapoc": 0 + "price": "0 cent", + "price_postapoc": "0 cent" }, { "type": "COMESTIBLE", @@ -23,8 +23,8 @@ "comestible_type": "FOOD", "weight": "40 g", "volume": "40 ml", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "color": "brown", "material": [ "veggy" ], "calories": 29, @@ -43,8 +43,8 @@ "name": { "str": "wild sarsaparilla root" }, "weight": "40 g", "volume": "80 ml", - "price": 0, - "price_postapoc": 5, + "price": "0 cent", + "price_postapoc": "5 cent", "color": "brown", "calories": 40, "material": [ "veggy" ], @@ -63,8 +63,8 @@ "name": { "str": "Jerusalem artichoke" }, "weight": "40 g", "longest_side": "10 cm", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "volume": "80 ml", "color": "yellow", "calories": 33, @@ -84,8 +84,8 @@ "name": { "str_sp": "wild garlic" }, "comestible_type": "FOOD", "weight": "30 g", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "volume": "70 ml", "color": "light_green", "calories": 12, @@ -108,8 +108,8 @@ "symbol": "%", "calories": 44, "description": "A big stalk of broccoli. It's a bit tough, but rich in Vitamin C and quite delicious when properly cooked.", - "price": 400, - "price_postapoc": 50, + "price": "4 USD", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "180 ml", "flags": [ "EATEN_HOT", "SMOKABLE", "RAW" ], @@ -149,7 +149,7 @@ "symbol": "%", "calories": 22, "description": "Edible leaves of the grape vine. Typically used in salads or as a food wrapping.", - "price": 80, + "price": "80 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "FREEZERBURN", "SMOKABLE", "RAW" ], @@ -208,8 +208,8 @@ "symbol": "%", "calories": 334, "description": "A stout, branching rhizome from a cattail plant. Its crisp white flesh is very starchy and fibrous, but you really ought to cook it before you attempt to eat it.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "veggy" ], "volume": "250 ml", "fun": -12, @@ -227,8 +227,8 @@ "symbol": "%", "calories": 150, "description": "The rhizome of the lotus, which has many tubular cavities inside, can be eaten both raw and cooked.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "veggy" ], "volume": "500 ml", "flags": [ "SMOKABLE", "FREEZERBURN" ], @@ -246,8 +246,8 @@ "symbol": "%", "calories": 25, "description": "A stiff, green stalk from a cattail plant. It is starchy and fibrous, but it would be much better if you cooked it.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "veggy" ], "volume": "250 ml", "fun": -8, @@ -274,8 +274,8 @@ "quench": 3, "calories": 19, "description": "Neither tasty nor very nutritious, but it goes well with salad.", - "price": 200, - "price_postapoc": 10, + "price": "2 USD", + "price_postapoc": "10 cent", "material": [ "veggy" ], "volume": "190 ml", "flags": [ "FREEZERBURN", "SMOKABLE", "RAW" ], @@ -344,8 +344,8 @@ "quench": 7, "calories": 37, "description": "A vegetable from the gourd family. Not especially flavorful, but very refreshing.", - "price": 300, - "price_postapoc": 50, + "price": "3 USD", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "320 ml", "flags": [ "FREEZERBURN", "SMOKABLE", "RAW" ], @@ -362,8 +362,8 @@ "cooks_like": "cucumber", "spoils_in": "2 days", "description": "A chopped-up cucumber.", - "price": 30, - "price_postapoc": 10 + "price": "30 cent", + "price_postapoc": "10 cent" }, { "type": "COMESTIBLE", @@ -376,8 +376,8 @@ "symbol": "%", "calories": 60, "description": "The large, tuberous root of a dahlia flower. It smells spicy, but is too starchy to eat without cooking.", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "material": [ "veggy" ], "volume": "250 ml", "fun": -4, @@ -396,8 +396,8 @@ "calories": 109, "//": "Serving Size is 1 cup of sliced roots. Salsify grows in bountiful clumps, it's a weed.", "description": "A highly nutritious root, it is tough and bland until cooked, at which point it tastes strangely similar to oysters.", - "price": 75, - "price_postapoc": 50, + "price": "75 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "250 ml", "fun": -2, @@ -416,8 +416,8 @@ "symbol": "%", "calories": 43, "description": "A modest blue flower. The flower's roots are very bitter and not meant to be eaten raw.", - "price": 110, - "price_postapoc": 25, + "price": "1 USD 10 cent", + "price_postapoc": "25 cent", "material": [ "veggy" ], "volume": "250 ml", "fun": -8, @@ -454,8 +454,8 @@ "symbol": ",", "material": [ "veggy" ], "volume": "250 ml", - "price": 0, - "price_postapoc": 0 + "price": "0 cent", + "price_postapoc": "0 cent" }, { "type": "COMESTIBLE", @@ -469,8 +469,8 @@ "quench": -18, "calories": 24, "description": "A pungent garlic bulb. Popular as a seasoning for its strong flavor. Can be disassembled into cloves.", - "price": 300, - "price_postapoc": 50, + "price": "3 USD", + "price_postapoc": "50 cent", "material": [ "garlic" ], "volume": "150 ml", "fun": -18, @@ -526,7 +526,7 @@ "symbol": "%", "calories": 166, "description": "A large white tapered root of a horseradish plant. Way too spicy to eat in this form, but can be used for making condiments.", - "price": 80, + "price": "80 cent", "material": [ "veggy" ], "volume": "400 ml", "fun": -12, @@ -568,8 +568,8 @@ "symbol": ",", "material": [ "veggy" ], "volume": "250 ml", - "price": 0, - "price_postapoc": 10 + "price": "0 cent", + "price_postapoc": "10 cent" }, { "type": "COMESTIBLE", @@ -582,8 +582,8 @@ "symbol": "%", "calories": 80, "description": "An aromatic onion used in cooking. Cutting these up can make your eyes sting!", - "price": 50, - "price_postapoc": 50, + "price": "50 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "250 ml", "fun": -1, @@ -607,8 +607,8 @@ "healthy": -1, "calories": 35, "description": "A fluid bladder from a fungus-based lifeform. Not very nutritious, but safe to eat.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "SMOKABLE", "RAW" ], @@ -626,8 +626,8 @@ "healthy": -1, "calories": 193, "description": "A potato, mildly toxic and not very tasty raw. Delicious and filling when properly cooked.", - "price": 90, - "price_postapoc": 50, + "price": "90 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "375 ml", "fun": -3, @@ -646,8 +646,8 @@ "symbol": "%", "calories": 141, "description": "A much less sweet and more starchy relative of the banana; unlike dessert bananas, they usually are eaten cooked rather than raw, and can be processed into flour. They are a staple food in tropical regions of the world. Also known as plantains.", - "price": 120, - "price_postapoc": 100, + "price": "1 USD 20 cent", + "price_postapoc": "1 USD", "material": [ "veggy" ], "volume": "500 ml", "fun": -1, @@ -666,8 +666,8 @@ "symbol": "%", "calories": 120, "description": "A large gourd, about the size of a person's head. It'll require some disassembly before use.", - "price": 250, - "price_postapoc": 600, + "price": "2 USD 50 cent", + "price_postapoc": "6 USD", "material": [ "veggy" ], "volume": "3 L", "fun": -1, @@ -682,12 +682,12 @@ "copy-from": "pumpkin", "spoils_in": "6 days", "description": "A quarter section of a pumpkin. The seeds and stringy inner pulp have been removed.", - "price": 25, + "price": "25 cent", "calories": 30, "quench": 5, "volume": "500 ml", "weight": "525 g", - "price_postapoc": 60, + "price_postapoc": "60 cent", "flags": [ "SMOKABLE", "RAW" ], "smoking_result": "dry_veggy", "vitamins": [ [ "vitC", 17 ], [ "calcium", 2 ], [ "iron", 4 ] ], @@ -704,7 +704,7 @@ "symbol": "%", "calories": 22, "description": "Leaves of a horseradish plant with a sharp, bitter and peppery taste. They're edible, but not commonly eaten.", - "price": 80, + "price": "80 cent", "material": [ "veggy" ], "volume": "140 ml", "fun": -2, @@ -785,8 +785,8 @@ "quench": 3, "calories": 36, "description": "Sour stems of the rhubarb plant, often used in baking pies.", - "price": 410, - "price_postapoc": 50, + "price": "4 USD 10 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "SMOKABLE", "RAW" ], @@ -848,8 +848,8 @@ "symbol": "%", "calories": 4, "description": "These leaves smell strongly medicinal. When chewed, they first taste sweet but the aftertaste is incredibly bitter. These leaves contain good amounts of methyl salicylate and merely chewing them may have a similar effect to aspirin.", - "price": 130, - "price_postapoc": 100, + "price": "1 USD 30 cent", + "price_postapoc": "1 USD", "use_action": { "type": "consume_drug", "activation_message": "You chew the wintergreen leaves.", @@ -880,8 +880,8 @@ "quench": 28, "calories": 55, "description": "A juicy red tomato. It gained popularity in Italy after being brought back from the New World.", - "price": 90, - "price_postapoc": 50, + "price": "90 cent", + "price_postapoc": "50 cent", "material": [ "tomato" ], "volume": "375 ml", "flags": [ "SMOKABLE" ], @@ -908,8 +908,8 @@ "symbol": "%", "calories": 34, "description": "A nutrient-rich chunk of plant matter, could be eaten raw or cooked.", - "price": 600, - "price_postapoc": 50, + "price": "6 USD", + "price_postapoc": "50 cent", "material": [ "veggy" ], "flags": [ "TRADER_AVOID", "SMOKABLE", "RAW" ], "smoking_result": "dry_veggy", @@ -928,8 +928,8 @@ "spoils_in": "40 hours", "use_action": [ "POISON" ], "description": "A chunk of fungal matter from some sort of alien mushroom creature. Eating unfamiliar mushrooms is a bad idea.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "smoking_result": "dry_veggy_tainted" }, { @@ -940,7 +940,7 @@ "description": "An assortment of edible-looking wild plants. Most are quite bitter-tasting. Some are inedible until cooked.", "//": "In real life many root vegetables are mildly toxic until cooked", "fun": -10, - "price_postapoc": 10, + "price_postapoc": "10 cent", "flags": [ "FREEZERBURN", "SMOKABLE", "RAW" ] }, { @@ -954,8 +954,8 @@ "symbol": "%", "calories": 59, "description": "A tasty summer squash.", - "price": 300, - "price_postapoc": 50, + "price": "3 USD", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "395 ml", "flags": [ "EATEN_HOT", "SMOKABLE" ], @@ -985,8 +985,8 @@ "symbol": "%", "calories": 56, "description": "Raw, uncooked beans. They are mildly toxic to humans in this form, but you could cook them to make them tasty.", - "price": 90, - "price_postapoc": 25, + "price": "90 cent", + "price_postapoc": "25 cent", "material": [ "veggy" ], "cooks_like": "beans_cooked", "smoking_result": "dry_beans", @@ -1007,8 +1007,8 @@ "symbol": "%", "calories": 42, "description": "Raw, uncooked lentils.", - "price": 90, - "price_postapoc": 25, + "price": "90 cent", + "price_postapoc": "25 cent", "material": [ "veggy" ], "fun": -1, "cooks_like": "lentils_cooked", @@ -1029,8 +1029,8 @@ "symbol": "%", "calories": 18, "description": "A handful of immature fern fronds, still curled up like the head of a fiddle. Delicious when cooked, but consuming them raw can cause food poisoning.", - "price": 40, - "price_postapoc": 10, + "price": "40 cent", + "price_postapoc": "10 cent", "material": [ "veggy" ], "volume": "62 ml", "fun": -10, @@ -1050,8 +1050,8 @@ "symbol": "%", "calories": 18, "description": "Some young leaves from miscellaneous plants. They're tender enough to eat, but not very tasty on their own.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "veggy" ], "volume": "45 ml", "fun": -2, @@ -1063,7 +1063,7 @@ "name": { "str": "handful of chicory greens", "str_pl": "handfuls of chicory greens" }, "copy-from": "young_leaves", "description": "Some chicory greens. They are quite bitter but high in vitamins.", - "price_postapoc": 20, + "price_postapoc": "20 cent", "fun": -8, "vitamins": [ [ "vitC", 6 ], [ "iron", 1 ], [ "calcium", 2 ] ] }, @@ -1080,8 +1080,8 @@ "quench": 6, "calories": 25, "description": "Some young Japanese knotweed stems. They taste a bit like rhubarb and contain good amounts of vitamin A. Refreshing.", - "price": 40, - "price_postapoc": 10, + "price": "40 cent", + "price_postapoc": "10 cent", "material": [ "veggy" ], "volume": "62 ml", "longest_side": "20 cm", @@ -1099,7 +1099,7 @@ "quench": 2, "calories": 39, "description": "A green bell pepper. Eating it whole and raw would be kind of a hassle, considering all the seeds.", - "price": 20, + "price": "20 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "SMOKABLE", "RAW" ], @@ -1115,7 +1115,7 @@ "weight": "112 g", "spoils_in": "1 days 16 hours", "description": "A chopped up bell pepper with the seeds removed.", - "price": 10, + "price": "10 cent", "fun": 0 }, { @@ -1165,8 +1165,8 @@ "comestible_type": "FOOD", "weight": "194 g", "volume": "250 ml", - "price": 20, - "price_postapoc": 50, + "price": "20 cent", + "price_postapoc": "50 cent", "color": "black", "material": [ "veggy" ], "calories": 40, @@ -1186,8 +1186,8 @@ "comestible_type": "FOOD", "weight": "193 g", "volume": "249 ml", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "color": "black", "material": [ "veggy" ], "calories": 40, diff --git a/data/json/items/comestibles/sandwich.json b/data/json/items/comestibles/sandwich.json index 4c843629278c5..435417724d2eb 100644 --- a/data/json/items/comestibles/sandwich.json +++ b/data/json/items/comestibles/sandwich.json @@ -12,8 +12,8 @@ "quench": 1, "calories": 366, "description": "A delicious grilled cheese sandwich, because everything is better with melted cheese.", - "price": 550, - "price_postapoc": 200, + "price": "5 USD 50 cent", + "price_postapoc": "2 USD", "material": [ "milk", "wheat" ], "primary_material": "wheat", "volume": "250 ml", @@ -34,8 +34,8 @@ "quench": 1, "calories": 266, "description": "A delicious egg salad sandwich.", - "price": 550, - "price_postapoc": 200, + "price": "5 USD 50 cent", + "price_postapoc": "2 USD", "material": [ "egg", "wheat" ], "primary_material": "wheat", "volume": "250 ml", @@ -55,8 +55,8 @@ "quench": 1, "calories": 266, "description": "A delicious egg salad sandwich on wheat-free bread.", - "price": 550, - "price_postapoc": 200, + "price": "5 USD 50 cent", + "price_postapoc": "2 USD", "material": [ "egg", "veggy" ], "primary_material": "veggy", "volume": "250 ml", @@ -137,7 +137,7 @@ "quench": 6, "calories": 227, "description": "A refreshing cucumber sandwich. Not very filling, but quite tasty.", - "price": 400, + "price": "4 USD", "volume": "250 ml", "material": [ "wheat", "veggy" ], "flags": [ "EATEN_COLD" ], @@ -156,8 +156,8 @@ "symbol": "%", "calories": 366, "description": "A simple cheese sandwich.", - "price": 500, - "price_postapoc": 200, + "price": "5 USD", + "price_postapoc": "2 USD", "material": [ "milk", "wheat" ], "primary_material": "wheat", "volume": "250 ml", @@ -177,8 +177,8 @@ "quench": 1, "calories": 262, "description": "A delicious jam sandwich.", - "price": 200, - "price_postapoc": 200, + "price": "2 USD", + "price_postapoc": "2 USD", "material": [ "fruit", "wheat" ], "primary_material": "wheat", "volume": "250 ml", @@ -198,8 +198,8 @@ "quench": 1, "calories": 382, "description": "A delicious jam and cheese sandwich.", - "price": 200, - "price_postapoc": 200, + "price": "2 USD", + "price_postapoc": "2 USD", "material": [ "fruit", "wheat", "milk" ], "primary_material": "wheat", "volume": "250 ml", @@ -219,8 +219,8 @@ "quench": 1, "calories": 363, "description": "A delicious jam and butter sandwich.", - "price": 200, - "price_postapoc": 200, + "price": "2 USD", + "price_postapoc": "2 USD", "material": [ "milk", "fruit", "wheat" ], "primary_material": "wheat", "volume": "250 ml", @@ -239,8 +239,8 @@ "symbol": "%", "calories": 220, "description": "An 'open-faced sandwich' consisting of sliced white bread, a healthy crust-to-crust slathering of butter, and sprinkles. Supposedly a staple of birthday parties in Australia.", - "price": 85, - "price_postapoc": 300, + "price": "85 cent", + "price_postapoc": "3 USD", "material": [ "junk", "wheat" ], "primary_material": "wheat", "volume": "120 ml", @@ -259,7 +259,7 @@ "quench": 1, "calories": 328, "description": "A delicious honey sandwich.", - "price": 175, + "price": "1 USD 75 cent", "material": [ "honey", "wheat" ], "primary_material": "wheat", "volume": "250 ml", @@ -277,8 +277,8 @@ "container": "wrapper", "quench": 1, "description": "A simple sauce sandwich. Not very filling, but it beats eating just the bread.", - "price": 200, - "price_postapoc": 200, + "price": "2 USD", + "price_postapoc": "2 USD", "fun": 2 }, { @@ -294,8 +294,8 @@ "quench": 1, "calories": 202, "description": "Bread and vegetables, that's it.", - "price": 800, - "price_postapoc": 250, + "price": "8 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "veggy", "wheat" ], "volume": "250 ml", "flags": [ "EATEN_COLD" ], @@ -315,8 +315,8 @@ "quench": 1, "calories": 202, "description": "A vegetarian combination of cheese and vegetable on bread, simple yet satisfying.", - "price": 800, - "price_postapoc": 250, + "price": "8 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "veggy", "wheat", "milk" ], "volume": "250 ml", "flags": [ "EATEN_COLD" ], @@ -336,8 +336,8 @@ "quench": 1, "calories": 557, "description": "A gluten free vegetarian combination of cheese and vegetable on bread, simple yet satisfying.", - "price": 800, - "price_postapoc": 250, + "price": "8 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "veggy", "milk" ], "volume": "250 ml", "flags": [ "EATEN_COLD" ], @@ -389,8 +389,8 @@ "quench": -1, "calories": 358, "description": "Some peanut butter smothered between two pieces of bread. Not very filling, and will stick to the roof of your mouth like glue.", - "price": 250, - "price_postapoc": 300, + "price": "2 USD 50 cent", + "price_postapoc": "3 USD", "material": [ "wheat" ], "volume": "250 ml", "fun": 3, @@ -409,8 +409,8 @@ "quench": 2, "calories": 378, "description": "A delicious peanut butter and jelly sandwich. It reminds you of the times your mother would make you lunch.", - "price": 175, - "price_postapoc": 175, + "price": "1 USD 75 cent", + "price_postapoc": "1 USD 75 cent", "material": [ "fruit", "wheat" ], "primary_material": "wheat", "volume": "250 ml", @@ -430,8 +430,8 @@ "quench": 2, "calories": 755, "description": "Some damned fool put honey on this peanut butter sandwich, who in their right mind- oh wait, this is pretty good.", - "price": 175, - "price_postapoc": 175, + "price": "1 USD 75 cent", + "price_postapoc": "1 USD 75 cent", "material": [ "wheat", "honey" ], "primary_material": "wheat", "volume": "250 ml", @@ -451,8 +451,8 @@ "quench": 2, "calories": 365, "description": "Who knew you could mix maple syrup and peanut butter to create yet another tasty sandwich?", - "price": 175, - "price_postapoc": 175, + "price": "1 USD 75 cent", + "price_postapoc": "1 USD 75 cent", "material": [ "wheat" ], "volume": "250 ml", "fun": 6, @@ -470,8 +470,8 @@ "symbol": "%", "calories": 481, "description": "A delicious fish sandwich.", - "price": 800, - "price_postapoc": 250, + "price": "8 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "flesh", "wheat" ], "volume": "250 ml", "fun": 14, @@ -489,8 +489,8 @@ "symbol": "%", "calories": 694, "description": "A delicious fish bagel with spinach and eggs.", - "price": 800, - "price_postapoc": 350, + "price": "8 USD", + "price_postapoc": "3 USD 50 cent", "material": [ "flesh", "wheat" ], "volume": "250 ml", "fun": 14, @@ -503,7 +503,7 @@ "copy-from": "fish_sandwich", "color": "pink", "description": "A delicious authentic lobster roll.", - "price_postapoc": 500, + "price_postapoc": "5 USD", "fun": 30 }, { @@ -541,8 +541,8 @@ "quench": 1, "calories": 366, "description": "A delicious grilled cheese sandwich made with wheat-free bread, because everything is better with melted cheese.", - "price": 550, - "price_postapoc": 200, + "price": "5 USD 50 cent", + "price_postapoc": "2 USD", "material": [ "milk", "veggy" ], "primary_material": "veggy", "volume": "250 ml", @@ -624,7 +624,7 @@ "quench": 6, "calories": 504, "description": "A refreshing cucumber sandwich made with wheat-free bread. Not very filling, but quite tasty.", - "price": 400, + "price": "4 USD", "volume": "250 ml", "material": [ "veggy" ], "flags": [ "EATEN_COLD" ], @@ -643,8 +643,8 @@ "symbol": "%", "calories": 366, "description": "A simple cheese sandwich made with wheat-free bread.", - "price": 500, - "price_postapoc": 200, + "price": "5 USD", + "price_postapoc": "2 USD", "material": [ "milk", "veggy" ], "primary_material": "veggy", "volume": "250 ml", @@ -664,8 +664,8 @@ "quench": 1, "calories": 262, "description": "A delicious jam sandwich made with wheat-free bread.", - "price": 200, - "price_postapoc": 200, + "price": "2 USD", + "price_postapoc": "2 USD", "material": [ "fruit", "veggy" ], "primary_material": "veggy", "volume": "250 ml", @@ -685,8 +685,8 @@ "quench": 1, "calories": 382, "description": "A delicious jam and cheese sandwich made with wheat-free bread.", - "price": 200, - "price_postapoc": 200, + "price": "2 USD", + "price_postapoc": "2 USD", "material": [ "fruit", "veggy", "milk" ], "primary_material": "veggy", "volume": "250 ml", @@ -706,8 +706,8 @@ "quench": 1, "calories": 363, "description": "A delicious jam and butter sandwich made with wheat-free bread.", - "price": 200, - "price_postapoc": 200, + "price": "2 USD", + "price_postapoc": "2 USD", "material": [ "milk", "fruit", "veggy" ], "primary_material": "veggy", "volume": "250 ml", @@ -726,8 +726,8 @@ "symbol": "%", "calories": 220, "description": "An 'open-faced sandwich' consisting of sliced wheat-free bread, a healthy crust-to-crust slathering of butter, and sprinkles. A wheat-free alternative to a staple of birthday parties in Australia.", - "price": 85, - "price_postapoc": 300, + "price": "85 cent", + "price_postapoc": "3 USD", "material": [ "junk", "veggy" ], "primary_material": "veggy", "volume": "120 ml", @@ -746,7 +746,7 @@ "quench": 1, "calories": 328, "description": "A delicious honey sandwich made with wheat-free bread.", - "price": 175, + "price": "1 USD 75 cent", "material": [ "honey", "veggy" ], "primary_material": "veggy", "volume": "250 ml", @@ -764,8 +764,8 @@ "container": "wrapper", "quench": 1, "description": "A simple sauce sandwich made with wheat-free bread. Not very filling, but it beats eating just the bread.", - "price": 200, - "price_postapoc": 200 + "price": "2 USD", + "price_postapoc": "2 USD" }, { "type": "COMESTIBLE", @@ -780,8 +780,8 @@ "quench": 1, "calories": 202, "description": "Wheat-free bread and vegetables, that's it.", - "price": 800, - "price_postapoc": 250, + "price": "8 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "EATEN_COLD" ], @@ -833,8 +833,8 @@ "quench": -1, "calories": 358, "description": "Some peanut butter smothered between two pieces of wheat-free bread. Not very filling, and will stick to the roof of your mouth like glue.", - "price": 250, - "price_postapoc": 300, + "price": "2 USD 50 cent", + "price_postapoc": "3 USD", "material": [ "veggy" ], "volume": "250 ml", "fun": 3, @@ -853,8 +853,8 @@ "quench": 2, "calories": 378, "description": "A delicious peanut butter and jelly sandwich made with wheat-free bread. It reminds you of the times your mother would make you lunch.", - "price": 175, - "price_postapoc": 175, + "price": "1 USD 75 cent", + "price_postapoc": "1 USD 75 cent", "material": [ "fruit", "veggy" ], "primary_material": "veggy", "volume": "250 ml", @@ -874,8 +874,8 @@ "quench": 2, "calories": 755, "description": "Some damned fool put honey on this peanut butter wheat-free sandwich, who in their right mind- oh wait, this is pretty good.", - "price": 175, - "price_postapoc": 175, + "price": "1 USD 75 cent", + "price_postapoc": "1 USD 75 cent", "material": [ "veggy", "honey" ], "primary_material": "veggy", "volume": "250 ml", @@ -895,8 +895,8 @@ "quench": 2, "calories": 365, "description": "Who knew you could mix maple syrup and peanut butter to create yet another tasty sandwich? This one is made with wheat-free bread.", - "price": 175, - "price_postapoc": 175, + "price": "1 USD 75 cent", + "price_postapoc": "1 USD 75 cent", "material": [ "veggy" ], "volume": "250 ml", "fun": 6, @@ -914,8 +914,8 @@ "symbol": "%", "calories": 481, "description": "A delicious fish sandwich made with wheat-free bread.", - "price": 800, - "price_postapoc": 250, + "price": "8 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "flesh", "veggy" ], "volume": "250 ml", "fun": 14, diff --git a/data/json/items/comestibles/seed.json b/data/json/items/comestibles/seed.json index 28033d03a67ad..43b750909b994 100644 --- a/data/json/items/comestibles/seed.json +++ b/data/json/items/comestibles/seed.json @@ -179,7 +179,7 @@ "type": "COMESTIBLE", "id": "seed_lettuce", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "lettuce seeds" }, "description": "Some lettuce seeds.", "flags": [ "PLANTABLE_SEED", "NUTRIENT_OVERRIDE", "INEDIBLE" ], @@ -189,7 +189,7 @@ "type": "COMESTIBLE", "id": "seed_cabbage", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "cabbage seeds" }, "color": "light_gray", "description": "Some white cabbage seeds.", @@ -200,7 +200,7 @@ "type": "COMESTIBLE", "id": "seed_tomato", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "tomato seeds" }, "description": "Some tomato seeds.", "flags": [ "PLANTABLE_SEED", "NUTRIENT_OVERRIDE", "INEDIBLE" ], @@ -223,7 +223,7 @@ "type": "COMESTIBLE", "id": "seed_broccoli", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "broccoli seeds" }, "description": "Some broccoli seeds.", "flags": [ "PLANTABLE_SEED", "NUTRIENT_OVERRIDE", "INEDIBLE" ], @@ -233,7 +233,7 @@ "type": "COMESTIBLE", "id": "seed_zucchini", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "zucchini seeds" }, "description": "Some zucchini seeds.", "flags": [ "PLANTABLE_SEED", "NUTRIENT_OVERRIDE", "INEDIBLE" ], @@ -243,7 +243,7 @@ "type": "COMESTIBLE", "id": "seed_onion", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "onion seeds" }, "description": "Some onion seeds.", "flags": [ "PLANTABLE_SEED", "NUTRIENT_OVERRIDE", "INEDIBLE" ], @@ -253,7 +253,7 @@ "type": "COMESTIBLE", "id": "seed_garlic", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "garlic seeds" }, "description": "Some garlic seeds.", "flags": [ "PLANTABLE_SEED", "NUTRIENT_OVERRIDE", "INEDIBLE" ], @@ -351,7 +351,7 @@ "type": "COMESTIBLE", "id": "seed_wildcarrot", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "wild root seeds" }, "description": "Some seeds from a white flower.", "flags": [ "PLANTABLE_SEED", "NUTRIENT_OVERRIDE", "INEDIBLE" ], @@ -381,7 +381,7 @@ "type": "COMESTIBLE", "id": "seed_carrot", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "carrot seeds" }, "description": "Some carrot seeds.", "flags": [ "PLANTABLE_SEED", "NUTRIENT_OVERRIDE", "INEDIBLE" ], @@ -402,7 +402,7 @@ "type": "COMESTIBLE", "id": "seed_chili_pepper", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "chili pepper seeds" }, "color": "white", "description": "Some chili pepper seeds.", @@ -419,7 +419,7 @@ "type": "COMESTIBLE", "id": "seed_cucumber", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "cucumber seeds" }, "description": "Some cucumber seeds.", "flags": [ "PLANTABLE_SEED", "NUTRIENT_OVERRIDE", "INEDIBLE" ], @@ -433,9 +433,9 @@ "calories": 48, "volume": "94 ml", "weight": "53 g", - "price": 0, + "price": "0 cent", "spoils_in": "1 day", - "price_postapoc": 0, + "price_postapoc": "0 cent", "name": { "str_sp": "seed potatoes" }, "description": "Raw potato cut into pieces, separating each bud for planting.", "extend": { "flags": [ "INEDIBLE", "PLANTABLE_SEED", "NUTRIENT_OVERRIDE" ] }, @@ -513,7 +513,7 @@ "name": { "str_sp": "soybean seeds" }, "extend": { "flags": [ "NUTRIENT_OVERRIDE", "INEDIBLE" ] }, "description": "A pile of dry soybeans. These are intended for planting, but there's no reason they couldn't be made into food.", - "price": 90, + "price": "90 cent", "seed_data": { "plant_name": "soybean", "fruit": "raw_edamame", "seeds": false, "byproducts": [ "withered" ], "grow": "91 days" }, "milling": { "into": "null", "recipe": "" } }, @@ -569,7 +569,7 @@ "use_action": [ "SEED" ], "calories": 65, "description": "Some raw pumpkin seeds with the shells on. Could be fried and eaten.", - "price": 100, + "price": "1 USD", "flags": [ "PLANTABLE_SEED" ], "seed_data": { "plant_name": "pumpkin", "fruit": "pumpkin", "seeds": false, "byproducts": [ "withered" ], "grow": "91 days" }, "milling": { "into": "paste_seed", "recipe": "paste_seed_mill_8_1" } @@ -847,7 +847,7 @@ "name": { "str_sp": "datura seeds" }, "description": "Small, dark seeds from the spiny pods of a datura plant. Full of powerful psychoactive chemicals, these tiny seeds are a potent analgesic and deliriant, and can be deadly in cases of overdose.", "weight": "2 g", - "price": 0, + "price": "0 cent", "stim": 6, "healthy": -2, "fun": -1, @@ -859,7 +859,7 @@ "type": "COMESTIBLE", "id": "seed_celery", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "celery seeds" }, "description": "Some celery seeds.", "flags": [ "PLANTABLE_SEED", "NUTRIENT_OVERRIDE", "INEDIBLE" ], @@ -1030,7 +1030,7 @@ "type": "COMESTIBLE", "id": "seed_bell_pepper", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "bell pepper seeds" }, "description": "Some bell pepper seeds.", "flags": [ "PLANTABLE_SEED", "NUTRIENT_OVERRIDE", "INEDIBLE" ], @@ -1040,7 +1040,7 @@ "type": "COMESTIBLE", "id": "seed_bottle_gourd", "copy-from": "seed", - "price": 50, + "price": "50 cent", "name": { "str_sp": "bottle gourd seeds" }, "description": "Some bottle gourd seeds.", "flags": [ "PLANTABLE_SEED", "NUTRIENT_OVERRIDE", "INEDIBLE" ], @@ -1056,7 +1056,7 @@ "type": "COMESTIBLE", "id": "seed_eggplant", "copy-from": "seed", - "price": 70, + "price": "70 cent", "name": { "str_sp": "eggplant seeds" }, "description": "Some eggplant seeds.", "seed_data": { "plant_name": "eggplant", "fruit": "eggplant", "seeds": false, "byproducts": [ "withered" ], "grow": "60 days" } diff --git a/data/json/items/comestibles/soup.json b/data/json/items/comestibles/soup.json index 08ad526c7036c..e0bc5af7f653b 100644 --- a/data/json/items/comestibles/soup.json +++ b/data/json/items/comestibles/soup.json @@ -13,8 +13,8 @@ "quench": 30, "calories": 13, "description": "Vegetable stock. Tasty and fairly nutritious.", - "price": 350, - "price_postapoc": 25, + "price": "3 USD 50 cent", + "price_postapoc": "25 cent", "material": [ "veggy" ], "volume": "500 ml", "charges": 2, @@ -41,8 +41,8 @@ "quench": 30, "calories": 43, "description": "A tasty and nutritious broth made from bones, with added vinegar to extract more calcium.", - "price": 350, - "price_postapoc": 25, + "price": "3 USD 50 cent", + "price_postapoc": "25 cent", "material": [ "bone" ], "primary_material": "water", "volume": "500 ml", @@ -66,8 +66,8 @@ "quench": 8, "calories": 34, "description": "A nutritious and delicious hearty vegetable soup.", - "price": 400, - "price_postapoc": 25, + "price": "4 USD", + "price_postapoc": "25 cent", "material": [ "veggy" ], "volume": "500 ml", "charges": 2, @@ -90,8 +90,8 @@ "quench": 8, "calories": 165, "description": "A hearty stew made of the traditional 'three sisters' plants corn, beans, and pumpkins. Variations of this dish were a staple of many Native American cultures through the centuries up until current times. This Abenaki recipe has wild rice added to it.", - "price": 400, - "price_postapoc": 25, + "price": "4 USD", + "price_postapoc": "25 cent", "material": [ "veggy" ], "volume": "500 ml", "charges": 1, @@ -119,8 +119,8 @@ "quench": 8, "calories": 217, "description": "A nutritious and delicious hearty meat soup.", - "price": 400, - "price_postapoc": 100, + "price": "4 USD", + "price_postapoc": "1 USD", "material": [ "flesh" ], "volume": "500 ml", "charges": 2, @@ -143,8 +143,8 @@ "quench": 8, "calories": 289, "description": "A nutritious and delicious hearty fish soup.", - "price": 400, - "price_postapoc": 100, + "price": "4 USD", + "price_postapoc": "1 USD", "material": [ "flesh" ], "volume": "500 ml", "charges": 2, @@ -167,8 +167,8 @@ "quench": 13, "calories": 209, "description": "A spicy South Indian dish filled with vegetables.", - "price": 750, - "price_postapoc": 75, + "price": "7 USD 50 cent", + "price_postapoc": "75 cent", "material": [ "veggy" ], "charges": 2, "volume": "500 ml", @@ -192,8 +192,8 @@ "quench": 13, "calories": 381, "description": "A spicy South Asian dish filled with chunks of meat and vegetables.", - "price": 750, - "price_postapoc": 50, + "price": "7 USD 50 cent", + "price_postapoc": "50 cent", "material": [ { "type": "water", "portion": 50 }, { "type": "flesh", "portion": 25 }, { "type": "veggy", "portion": 25 } ], "volume": "250 ml", "phase": "liquid", @@ -217,8 +217,8 @@ "quench": 8, "calories": 274, "description": "A nutritious and delicious soup packed with meat and vegetables.", - "price": 350, - "price_postapoc": 100, + "price": "3 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "flesh", "veggy" ], "volume": "500 ml", "charges": 2, @@ -242,8 +242,8 @@ "quench": 8, "calories": 304, "description": "A nutritious and delicious soup packed with eggs and vegetables.", - "price": 350, - "price_postapoc": 100, + "price": "3 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "egg", "veggy" ], "volume": "500 ml", "charges": 2, @@ -266,8 +266,8 @@ "quench": 2, "calories": 504, "description": "An old recipe from the American Civil War, designed to make hardtack more palatable. The hardtack is crushed and combined with water to make it soggy, then fried up with melted chunks of fat until browned, and seasoned with salt and pepper. Surprisingly edible, considering its ingredients.", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "material": [ "flesh", "wheat" ], "volume": "500 ml", "charges": 4, @@ -289,8 +289,8 @@ "quench": 15, "calories": 65, "description": "Chicken chunks and noodles swimming in a salty broth. Rumored to help cure colds.", - "price": 580, - "price_postapoc": 100, + "price": "5 USD 80 cent", + "price_postapoc": "1 USD", "material": [ "flesh", "wheat" ], "primary_material": "flesh", "volume": "500 ml", @@ -314,8 +314,8 @@ "quench": 15, "calories": 64, "description": "A mushy, gray semi-liquid soup made from mushrooms.", - "price": 450, - "price_postapoc": 100, + "price": "4 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "mushroom" ], "volume": "500 ml", "phase": "liquid", @@ -338,8 +338,8 @@ "quench": 15, "calories": 318, "description": "A mushy, brown semi-liquid soup made from blood and flour.", - "price": 350, - "price_postapoc": 25, + "price": "3 USD 50 cent", + "price_postapoc": "25 cent", "material": [ "blood", "wheat" ], "primary_material": "blood", "volume": "500 ml", @@ -362,8 +362,8 @@ "quench": 15, "calories": 318, "description": "A mushy, brown semi-liquid soup made from blood and wheat-free flour.", - "price": 350, - "price_postapoc": 25, + "price": "3 USD 50 cent", + "price_postapoc": "25 cent", "material": [ "blood", "veggy" ], "primary_material": "blood", "volume": "500 ml", @@ -386,8 +386,8 @@ "quench": 15, "calories": 90, "description": "Thin red tomato soup. Not very filling, but it goes well with grilled cheese.", - "price": 400, - "price_postapoc": 50, + "price": "4 USD", + "price_postapoc": "50 cent", "sealed": true, "material": [ "tomato" ], "volume": "250 ml", @@ -411,8 +411,8 @@ "quench": 10, "calories": 358, "description": "A soup with chicken chunks and balls of dough. Not bad.", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "material": [ "flesh", "wheat" ], "primary_material": "flesh", "volume": "500 ml", @@ -436,8 +436,8 @@ "quench": 8, "calories": 387, "description": "A rich and tasty fish chowder from Scotland, made with preserved fish and creamy milk.", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "material": [ "flesh", "milk" ], "volume": "500 ml", "charges": 2, @@ -460,8 +460,8 @@ "quench": 8, "calories": 400, "description": "A rich and tasty lobster stew from New England, made with fresh lobster, milk, cream, and butter.", - "price": 600, - "price_postapoc": 150, + "price": "6 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "flesh", "milk" ], "volume": "500 ml", "charges": 2, @@ -484,8 +484,8 @@ "quench": 8, "calories": 50, "description": "Instant chicken noodle soup made from dehydrated noodles and chicken reconstituted with water. Not the most exciting meal but better than plain water.", - "price": 140, - "price_postapoc": 40, + "price": "1 USD 40 cent", + "price_postapoc": "40 cent", "material": [ "flesh", "wheat" ], "volume": "170 ml", "charges": 1, @@ -508,8 +508,8 @@ "quench": -3, "calories": 50, "description": "Instant chicken noodle soup powder made from dehydrated noodles and chicken. Mix with water to create a mildly improved meal.", - "price": 140, - "price_postapoc": 40, + "price": "1 USD 40 cent", + "price_postapoc": "40 cent", "material": [ "powder", "flesh", "wheat" ], "volume": "13 ml", "flags": [ "EDIBLE_FROZEN" ], @@ -530,8 +530,8 @@ "quench": 8, "calories": 50, "description": "Instant spring vegetable soup made from dehydrated noodles and vegetables reconstituted with water. Not the most exciting meal but better than plain water.", - "price": 140, - "price_postapoc": 40, + "price": "1 USD 40 cent", + "price_postapoc": "40 cent", "material": [ "veggy", "wheat" ], "volume": "170 ml", "charges": 1, @@ -554,8 +554,8 @@ "quench": -3, "calories": 50, "description": "Instant spring vegetable soup powder made from dehydrated noodles and vegetables. Mix with water to create a mildly improved meal.", - "price": 140, - "price_postapoc": 40, + "price": "1 USD 40 cent", + "price_postapoc": "40 cent", "material": [ "powder", "veggy", "wheat" ], "volume": "13 ml", "flags": [ "EDIBLE_FROZEN" ], diff --git a/data/json/items/comestibles/spice.json b/data/json/items/comestibles/spice.json index 7239171ca09ce..ba4eaa7bc0d8c 100644 --- a/data/json/items/comestibles/spice.json +++ b/data/json/items/comestibles/spice.json @@ -140,8 +140,8 @@ "color": "brown", "name": { "str_sp": "soy sauce" }, "description": "Salty fermented soybean sauce.", - "price": 190, - "price_postapoc": 25, + "price": "1 USD 90 cent", + "price_postapoc": "25 cent", "weight": "24 g", "volume": "250 ml", "calories": 17, @@ -168,8 +168,8 @@ "symbol": ",", "material": [ "veggy" ], "volume": "250 ml", - "price": 0, - "price_postapoc": 10 + "price": "0 cent", + "price_postapoc": "10 cent" }, { "id": "mustard_powder", diff --git a/data/json/items/comestibles/veggy_dishes.json b/data/json/items/comestibles/veggy_dishes.json index 6dc489b67fe8f..8be42b4415130 100644 --- a/data/json/items/comestibles/veggy_dishes.json +++ b/data/json/items/comestibles/veggy_dishes.json @@ -7,8 +7,8 @@ "color": "white", "spoils_in": "2 days 12 hours", "description": "A cooked stalk from a cattail plant. Its fibrous outer leaves have been stripped away, and now it is quite delicious.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "delete": { "flags": [ "RAW" ] }, "fun": 1 }, @@ -47,8 +47,8 @@ "symbol": "%", "calories": 620, "description": "Sticky, gooey carbohydrate paste extracted from plants. Spoils rather quickly if not prepared for storage.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "veggy" ], "volume": "250 ml", "milling": { "into": "flour", "recipe": "flour_mill_1_15" }, @@ -69,8 +69,8 @@ "quench": -1, "calories": 151, "description": "Exposed cloves of garlic that have been coated in oil and then roasted. Much better than eating them raw.", - "price": 300, - "price_postapoc": 50, + "price": "3 USD", + "price_postapoc": "50 cent", "material": [ "garlic" ], "volume": "150 ml", "flags": [ "EATEN_HOT" ], @@ -89,8 +89,8 @@ "symbol": "%", "calories": 21, "description": "A chili pepper that has been roasted on high heat, with the skin removed. This has taken out most of the spice, and it's much better than eating it raw.", - "price": 50, - "price_postapoc": 50, + "price": "50 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "83 ml", "flags": [ "FREEZERBURN" ], @@ -104,8 +104,8 @@ "copy-from": "raw_dandelion", "spoils_in": "2 days", "description": "Cooked leaves from wild dandelions. Tasty and nutritious.", - "price": 200, - "price_postapoc": 10, + "price": "2 USD", + "price_postapoc": "10 cent", "flags": [ "EATEN_HOT", "FREEZERBURN", "SMOKABLE" ], "fun": 1 }, @@ -119,8 +119,8 @@ "calories": 312, "spoils_in": "3 days", "description": "Wild dandelion flowers that have been pan fried. Very tasty and nutritious.", - "price": 250, - "price_postapoc": 75, + "price": "2 USD 50 cent", + "price_postapoc": "75 cent", "material": [ "veggy" ], "volume": "100 ml", "weight": "50 g", @@ -134,8 +134,8 @@ "copy-from": "raw_burdock", "spoils_in": "2 days", "description": "Cooked burdock leaves. Tasty and nutritious.", - "price": 200, - "price_postapoc": 50, + "price": "2 USD", + "price_postapoc": "50 cent", "flags": [ "EATEN_HOT", "FREEZERBURN", "SMOKABLE" ], "fun": 1 }, @@ -149,8 +149,8 @@ "symbol": "%", "calories": 362, "description": "Wild burdocks that have been battered and deep-fried. Very tasty and nutritious.", - "price": 250, - "price_postapoc": 50, + "price": "2 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "500 ml", "weight": "116 g", @@ -167,8 +167,8 @@ "symbol": "%", "calories": 338, "description": "Wild dandelions and burdocks that have been battered and deep-fried. Very tasty and nutritious.", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "500 ml", "weight": "116 g", @@ -182,8 +182,8 @@ "copy-from": "raw_bamboo", "spoils_in": "2 days", "description": "Peeled and cooked bamboo shoots. Tasty and nutritious.", - "price": 200, - "price_postapoc": 50, + "price": "2 USD", + "price_postapoc": "50 cent", "flags": [ "EATEN_HOT", "FREEZERBURN", "SMOKABLE" ], "fun": 1 }, @@ -197,8 +197,8 @@ "symbol": "%", "calories": 349, "description": "Raw bamboo shoots that have been peeled, battered and deep-fried. Very tasty and nutritious.", - "price": 250, - "price_postapoc": 50, + "price": "2 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "170 ml", "weight": "116 g", @@ -212,8 +212,8 @@ "copy-from": "veggy", "spoils_in": "2 days 2 hours", "description": "A freshly-cooked chunk of plant matter, tasty and nutritious.", - "price": 700, - "price_postapoc": 50, + "price": "7 USD", + "price_postapoc": "50 cent", "flags": [ "EATEN_HOT", "TRADER_AVOID" ] }, { @@ -223,8 +223,8 @@ "copy-from": "veggy", "spoils_in": "2 days 2 hours", "description": "Cooked wild edible plants. An interesting mix of flavors.", - "price": 700, - "price_postapoc": 50, + "price": "7 USD", + "price_postapoc": "50 cent", "flags": [ "EATEN_HOT" ] }, { @@ -252,8 +252,8 @@ "copy-from": "buckwheat", "spoils_in": "20 days", "description": "A serving of cooked buckwheat porridge. Healthy and nutritious but bland.", - "price": 120, - "price_postapoc": 50, + "price": "1 USD 20 cent", + "price_postapoc": "50 cent", "flags": [ "EATEN_HOT" ], "milling": { "into": "null", "recipe": "" } }, @@ -292,8 +292,8 @@ "calories": 370, "volume": "195 ml", "description": "An ear of corn cooked in foil.", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "flags": [ "EATEN_HOT" ] }, { @@ -311,8 +311,8 @@ "fun": 3, "volume": "250 ml", "description": "Corn roasted in a frying pan with herbs and spices.", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "flags": [ "EATEN_HOT" ] }, { @@ -330,7 +330,7 @@ "calories": 120, "volume": "250 ml", "description": "Popcorn kernels which have been cooked in an alkaline solution and then rinsed, making them better suited for eating or cooking.", - "price": 200, + "price": "2 USD", "flags": [ "EATEN_HOT" ] }, { @@ -367,8 +367,8 @@ "calories": 295, "vitamins": [ [ "vitC", 3 ], [ "calcium", 8 ], [ "iron", 32 ] ], "description": "Slow-cooked beans with vegetables. Tasty and very filling.", - "price": 700, - "price_postapoc": 100, + "price": "7 USD", + "price_postapoc": "1 USD", "material": [ "veggy", "bean" ], "volume": "500 ml", "flags": [ "EATEN_HOT" ], @@ -435,8 +435,8 @@ "quench": 0, "calories": 260, "description": "A hearty serving of cooked long-grain white rice.", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "flags": [ "EATEN_HOT", "FREEZERBURN", "NUTRIENT_OVERRIDE" ], "fun": 2, "vitamins": [ [ "iron", 11 ] ], @@ -455,8 +455,8 @@ "quench": 0, "calories": 202, "description": "A hearty serving of cooked wild rice.", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "flags": [ "EATEN_HOT", "FREEZERBURN", "NUTRIENT_OVERRIDE" ], "fun": 2, "vitamins": [ [ "iron", 10 ] ], @@ -475,8 +475,8 @@ "symbol": "%", "calories": 383, "description": "Delicious fried rice with vegetables. Tasty and very filling.", - "price": 700, - "price_postapoc": 150, + "price": "7 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "veggy" ], "volume": "500 ml", "flags": [ "EATEN_HOT", "FREEZERBURN" ], @@ -495,8 +495,8 @@ "symbol": "%", "calories": 566, "description": "A serving of beans and rice that has been cooked together. Delicious and healthy!", - "price": 500, - "price_postapoc": 150, + "price": "5 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "veggy", "bean" ], "volume": "500 ml", "flags": [ "EATEN_HOT", "FREEZERBURN" ], @@ -515,8 +515,8 @@ "quench": 1, "calories": 440, "description": "Coming from a word meaning \"broken corn kernels\" in the language of the Narragansett, it is a popular dish during hard times and Thanksgiving in New England. Incorporating maize and beans (or a similar legume), it is cheap and made from common ingredients.", - "price": 500, - "price_postapoc": 150, + "price": "5 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "veggy" ], "volume": "500 ml", "flags": [ "EATEN_HOT", "FREEZERBURN" ], @@ -535,8 +535,8 @@ "quench": 1, "calories": 520, "description": "Succotash, but made more modern and tasty by adding some flavorful ingredients.", - "price": 600, - "price_postapoc": 200, + "price": "6 USD", + "price_postapoc": "2 USD", "material": [ "veggy" ], "volume": "500 ml", "flags": [ "EATEN_HOT", "FREEZERBURN" ], @@ -554,8 +554,8 @@ "symbol": "%", "calories": 479, "description": "Delicious tofu fried rice with vegetables. Tasty and very filling.", - "price": 600, - "price_postapoc": 150, + "price": "6 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE" ], @@ -593,8 +593,8 @@ "symbol": "%", "calories": 600, "description": "Slow-cooked beans and rice with vegetables and seasonings. Tasty and very filling.", - "price": 750, - "price_postapoc": 200, + "price": "7 USD 50 cent", + "price_postapoc": "2 USD", "material": [ "veggy", "bean" ], "volume": "750 ml", "flags": [ "EATEN_HOT", "FREEZERBURN" ], @@ -614,8 +614,8 @@ "looks_like": "potato", "calories": 162, "description": "A delicious baked potato or other tuber. Got any sour cream?", - "price": 150, - "price_postapoc": 50, + "price": "1 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "EATEN_HOT" ], @@ -636,8 +636,8 @@ "looks_like": "potato", "calories": 162, "description": "A boiled potato or other tuber, the keystone of comfort food.", - "price": 75, - "price_postapoc": 25, + "price": "75 cent", + "price_postapoc": "25 cent", "material": [ "veggy" ], "volume": "250 ml", "vitamins": [ [ "vitC", 9 ], [ "calcium", 13 ], [ "iron", 8 ] ] @@ -655,8 +655,8 @@ "looks_like": "lotus_rhizome", "calories": 132, "description": "A boiled lotus rhizome, with a soft taste.", - "price": 75, - "price_postapoc": 25, + "price": "75 cent", + "price_postapoc": "25 cent", "material": [ "veggy" ], "volume": "400 ml", "vitamins": [ [ "vitC", 58 ], [ "calcium", 5 ], [ "iron", 10 ] ] @@ -672,8 +672,8 @@ "symbol": "%", "calories": 141, "description": "The much less sweet and more starchy relative of the banana, that has been cooked to make it better suited for eating.", - "price": 120, - "price_postapoc": 100, + "price": "1 USD 20 cent", + "price_postapoc": "1 USD", "material": [ "veggy" ], "volume": "500 ml", "fun": 1, @@ -690,8 +690,8 @@ "symbol": "%", "calories": 76, "description": "A simple, tasty roasted carrot.", - "price": 250, - "price_postapoc": 50, + "price": "2 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE" ], @@ -709,8 +709,8 @@ "symbol": "%", "calories": 86, "description": "Grilled glazed carrots, topped with some aromatic herbs. Simply divine.", - "price": 250, - "price_postapoc": 60, + "price": "2 USD 50 cent", + "price_postapoc": "60 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE" ], @@ -728,8 +728,8 @@ "quench": 3, "calories": 15, "description": "A simple dish made by cooking pumpkin pulp and then mashing.", - "price": 50, - "price_postapoc": 30, + "price": "50 cent", + "price_postapoc": "30 cent", "sealed": true, "material": [ "veggy" ], "volume": "250 ml", @@ -790,8 +790,8 @@ "symbol": "%", "calories": 244, "description": "Olive oil, basil, garlic, and pine nuts. Simple and delicious.", - "price": 230, - "price_postapoc": 300, + "price": "2 USD 30 cent", + "price_postapoc": "3 USD", "material": [ "veggy", "nut", "garlic" ], "volume": "250 ml", "charges": 4, @@ -857,8 +857,8 @@ "symbol": "%", "calories": 93, "description": "This mushy pile of vegetable matter was boiled and canned in an earlier life. Better eat it before it oozes through your fingers.", - "price": 250, - "price_postapoc": 150, + "price": "2 USD 50 cent", + "price_postapoc": "1 USD 50 cent", "sealed": true, "material": [ "veggy" ], "volume": "250 ml", @@ -922,8 +922,8 @@ "quench": -5, "calories": 115, "description": "Vegetable chunks pickled in a salt bath. Goes well with burgers, if you can find one.", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "material": [ "veggy" ], "volume": "250 ml", "vitamins": [ [ "vitC", 7 ], [ "calcium", 5 ], [ "iron", 9 ] ] @@ -956,8 +956,8 @@ "spoils_in": "30 days", "quench": 5, "description": "A pickled cucumber. Rather sour, but tastes good and lasts for a long time.", - "price": 250, - "price_postapoc": 50, + "price": "2 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "250 ml", "fun": 5 @@ -974,8 +974,8 @@ "quench": 5, "calories": 230, "description": "A delicious sautee of lovely diced onions and sauerkraut. The smell alone is enough to make your mouth water.", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "material": [ "veggy" ], "//": "assumes the sauerkraut and onions cook down to half their raw values. vitamins and calories are the two added together", "volume": "250 ml", @@ -1008,7 +1008,7 @@ "spoils_in": "30 days", "container": "jar_glass_sealed", "description": "A serving of crisply brined and canned vegetable matter. Tasty and nutritious.", - "price": 250, + "price": "2 USD 50 cent", "fun": 7 }, { @@ -1123,8 +1123,8 @@ "quench": -10, "calories": 132, "description": "A handful of dried corn kernels.", - "price": 60, - "price_postapoc": 50, + "price": "60 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "milling": { "into": "cornmeal", "recipe": "cornmeal_mill_1_3" }, "volume": "83 ml", @@ -1184,8 +1184,8 @@ "color": "light_green", "spoils_in": "1 day", "description": "Reconstituted vegetable flakes, which are much more enjoyable to eat now that they have been rehydrated.", - "price": 900, - "price_postapoc": 50, + "price": "9 USD", + "price_postapoc": "50 cent", "delete": { "flags": [ "RAW" ] }, "fun": 2 }, @@ -1237,8 +1237,8 @@ "color": "yellow", "spoils_in": "1 day", "description": "Reconstituted corn kernels, much more enjoyable to eat now that they have been rehydrated.", - "price": 900, - "price_postapoc": 50, + "price": "9 USD", + "price_postapoc": "50 cent", "smoking_result": "dry_corn", "volume": "83 ml", "delete": { "flags": [ "RAW" ] }, @@ -1258,8 +1258,8 @@ "quench": 15, "calories": 250, "description": "A salad made with all kind of vegetables.", - "price": 350, - "price_postapoc": 100, + "price": "3 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "veggy" ], "volume": "250 ml", "fun": 6, @@ -1277,8 +1277,8 @@ "quench": -2, "description": "A dried salad packed in a box with mayonnaise and ketchup. Add water to enjoy.", "primary_material": "dried_vegetable", - "price": 220, - "price_postapoc": 100, + "price": "2 USD 20 cent", + "price_postapoc": "1 USD", "volume": "125 ml", "flags": [ "EDIBLE_FROZEN" ], "fun": -2 @@ -1290,8 +1290,8 @@ "copy-from": "veggy_salad", "quench": 16, "description": "A dried salad with water added, not very tasty but still a decent substitution for real salad.", - "price": 250, - "price_postapoc": 50 + "price": "2 USD 50 cent", + "price_postapoc": "50 cent" }, { "type": "COMESTIBLE", @@ -1300,8 +1300,8 @@ "copy-from": "dahlia_root", "spoils_in": "2 days", "description": "Baking this dahlia root has broken down the starch, making it softer and sweeter.", - "price": 110, - "price_postapoc": 50, + "price": "1 USD 10 cent", + "price_postapoc": "50 cent", "flags": [ "EATEN_HOT" ], "fun": 2 }, @@ -1312,8 +1312,8 @@ "copy-from": "salsify_raw", "spoils_in": "2 days", "description": "Now that it's been properly cooked, this salsify tastes vaguely like oysters. Makes a great side dish.", - "price": 90, - "price_postapoc": 50, + "price": "90 cent", + "price_postapoc": "50 cent", "flags": [ "EATEN_HOT" ], "fun": 2, "//": "From Oregon Trail. Be prepared to lose it as soon as your wagon tips over." @@ -1368,8 +1368,8 @@ "quench": 1, "calories": 209, "description": "Delicious chopped vegetables wrapped in tasty sushi rice and rolled up in a healthy green vegetable.", - "price": 290, - "price_postapoc": 150, + "price": "2 USD 90 cent", + "price_postapoc": "1 USD 50 cent", "material": [ "veggy" ], "volume": "250 ml", "fun": 12, @@ -1384,8 +1384,8 @@ "looks_like": "dry_mushroom", "use_action": [ "POISON" ], "description": "Pieces of alien mushroom that have been dried to prevent them from rotting away. They will still poison you if you eat them.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "flags": [ "EDIBLE_FROZEN" ] }, { @@ -1401,8 +1401,8 @@ "quench": 2, "calories": 43, "description": "This crunchy, sour topping made from lettuce or cabbage is perfect for your hot dogs and hamburgers, or, if you're desperate, straight to your stomach.", - "price": 450, - "price_postapoc": 50, + "price": "4 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "250 ml", "vitamins": [ [ "vitC", 85 ], [ "calcium", 17 ] ], @@ -1439,8 +1439,8 @@ "symbol": "%", "calories": 18, "description": "Boiled fiddleheads. Not bad, but would be better sauteed in butter.", - "price": 80, - "price_postapoc": 25, + "price": "80 cent", + "price_postapoc": "25 cent", "material": [ "veggy" ], "volume": "120 ml", "fun": 1, @@ -1458,8 +1458,8 @@ "symbol": "%", "calories": 160, "description": "Fiddleheads sauteed in fat. Tender and delicious.", - "price": 400, - "price_postapoc": 50, + "price": "4 USD", + "price_postapoc": "50 cent", "material": [ "veggy" ], "volume": "240 ml", "fun": 5, @@ -1474,7 +1474,7 @@ "color": "brown", "spoils_in": "2 days", "description": "Most of this artichoke's inulin has been converted into fructose after cooking, and it now tastes pleasantly sweet.", - "price": 0, + "price": "0 cent", "healthy": 0, "calories": 150, "delete": { "flags": [ "RAW" ] }, @@ -1500,7 +1500,7 @@ "color": "green", "spoils_in": "2 days", "description": "A cored and cooked bell pepper. It is far more enjoyable now that the seeds are removed.", - "price": 0, + "price": "0 cent", "delete": { "flags": [ "RAW" ] }, "fun": 1, "vitamins": [ [ "vitC", 32 ], [ "calcium", 4 ] ] @@ -1560,8 +1560,8 @@ "symbol": "m", "calories": 155, "description": "A Greek eggplant dip. The eggplants are baked until almost falling apart and seasoned with a big help of garlic, then mixed with some oil and acid.", - "price": 75, - "price_postapoc": 125, + "price": "75 cent", + "price_postapoc": "1 USD 25 cent", "material": [ "veggy" ], "primary_material": "veggy", "volume": "250 ml", @@ -1580,8 +1580,8 @@ "symbol": "%", "calories": 334, "description": "Onions cooked up in oil and spices, often used as a topping or side in dishes.", - "price": 400, - "price_postapoc": 250, + "price": "4 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "veggy", "oil" ], "volume": "200 ml", "flags": [ "EATEN_HOT", "EDIBLE_FROZEN", "FREEZERBURN" ], diff --git a/data/json/items/comestibles/wheat.json b/data/json/items/comestibles/wheat.json index a6cb73277e3de..86212e0a839e9 100644 --- a/data/json/items/comestibles/wheat.json +++ b/data/json/items/comestibles/wheat.json @@ -11,8 +11,8 @@ "symbol": "%", "calories": 705, "description": "Whole wheat or barley kernels that have been boiled in water. Very bland on their own, but will do if you can't prepare them in a different way.", - "price": 20, - "price_postapoc": 100, + "price": "20 cent", + "price_postapoc": "1 USD", "material": [ "wheat" ], "volume": "250 ml", "flags": [ "EATEN_HOT" ], @@ -31,8 +31,8 @@ "symbol": "%", "calories": 222, "description": "A type of pasta usually used when preparing spaghetti. It could be eaten raw if you're desperate, but is much better cooked.", - "price": 120, - "price_postapoc": 100, + "price": "1 USD 20 cent", + "price_postapoc": "1 USD", "material": [ "wheat" ], "volume": "62 ml", "flags": [ "EDIBLE_FROZEN", "RAW" ], @@ -51,8 +51,8 @@ "symbol": "%", "calories": 222, "description": "A pasta sheet used in making lasagne. It could be eaten raw if you're desperate, but is much better cooked.", - "price": 120, - "price_postapoc": 100, + "price": "1 USD 20 cent", + "price_postapoc": "1 USD", "material": [ "wheat" ], "volume": "62 ml", "flags": [ "EDIBLE_FROZEN", "RAW" ], @@ -72,8 +72,8 @@ "quench": 12, "calories": 222, "description": "Fresh wet noodles. Fairly bland, but fills you up.", - "price": 20, - "price_postapoc": 50, + "price": "20 cent", + "price_postapoc": "50 cent", "material": [ "wheat" ], "volume": "250 ml", "flags": [ "EATEN_HOT", "TRADER_AVOID" ], @@ -91,8 +91,8 @@ "symbol": "%", "calories": 222, "description": "It could be eaten raw if you're desperate, but is much better cooked.", - "price": 150, - "price_postapoc": 100, + "price": "1 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "wheat" ], "flags": [ "EDIBLE_FROZEN", "RAW" ], "volume": "62 ml", @@ -112,8 +112,8 @@ "quench": 25, "calories": 397, "description": "When the cheese starts flowing, Kraft gets your noodle going.", - "price": 380, - "price_postapoc": 50, + "price": "3 USD 80 cent", + "price_postapoc": "50 cent", "material": [ "wheat", "milk" ], "volume": "250 ml", "flags": [ "EATEN_HOT", "TRADER_AVOID", "FREEZERBURN" ], @@ -198,8 +198,8 @@ "//": "mass and quench obtained by weighing some actual oatmeal.", "calories": 151, "description": "A filling and nutritious New England classic that has sustained pioneers and captains of industry alike.", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "wheat" ], "volume": "250 ml", "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE" ], @@ -241,8 +241,8 @@ "quench": 45, "//": "mass and quench copied from oatmeal", "description": "Boiled cornmeal, a simple type of porridge.", - "price": 120, - "price_postapoc": 50, + "price": "1 USD 20 cent", + "price_postapoc": "50 cent", "material": [ "wheat" ], "volume": "250 ml", "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE" ], @@ -262,8 +262,8 @@ "calories": 275, "quench": 45, "description": "Boiled cornmeal with cheese to add a little more flavor.", - "price": 120, - "price_postapoc": 50, + "price": "1 USD 20 cent", + "price_postapoc": "50 cent", "material": [ "wheat" ], "volume": "250 ml", "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE" ], @@ -300,8 +300,8 @@ "color": "brown", "calories": 113, "description": "Fluffy and delicious pancakes with real maple syrup, made sweeter and healthier with the addition of wholesome fruit.", - "price": 650, - "price_postapoc": 75, + "price": "6 USD 50 cent", + "price_postapoc": "75 cent", "fun": 4, "vitamins": [ [ "vitC", 30 ], [ "calcium", 4 ], [ "iron", 3 ] ] }, @@ -315,8 +315,8 @@ "color": "black", "calories": 243, "description": "Blodplättar is not your average pancake. It does not taste of blood at all and it tastes like a crispier black pudding.", - "price": 550, - "price_postapoc": 50, + "price": "5 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "wheat", "blood" ], "primary_material": "wheat" }, @@ -351,8 +351,8 @@ "symbol": "%", "calories": 458, "description": "Hey it's waffle time, it's waffle time. Won't you have some waffles of mine?", - "price": 550, - "price_postapoc": 200, + "price": "5 USD 50 cent", + "price_postapoc": "2 USD", "material": [ "wheat", "milk" ], "primary_material": "wheat", "volume": "250 ml", @@ -371,8 +371,8 @@ "symbol": "%", "calories": 446, "description": "Crunchy and delicious waffles with real maple syrup, made sweeter and healthier with the addition of wholesome fruit.", - "price": 600, - "price_postapoc": 250, + "price": "6 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "wheat", "fruit", "milk" ], "primary_material": "wheat", "volume": "375 ml", @@ -523,8 +523,8 @@ "healthy": -1, "calories": 356, "description": "So-called ramen noodles. Can be eaten raw.", - "price": 200, - "price_postapoc": 100, + "price": "2 USD", + "price_postapoc": "1 USD", "material": [ "wheat" ], "volume": "500 ml", "vitamins": [ [ "calcium", 1 ], [ "iron", 18 ] ], @@ -543,8 +543,8 @@ "quench": -1, "calories": 330, "description": "This traditional Scottish treat is a sweet and filling little boiled cake studded with dried fruit.", - "price": 195, - "price_postapoc": 125, + "price": "1 USD 95 cent", + "price_postapoc": "1 USD 25 cent", "material": [ "wheat", "fruit" ], "volume": "250 ml", "fun": 9, @@ -596,7 +596,7 @@ "type": "COMESTIBLE", "name": { "str": "space cake" }, "copy-from": "sponge_cake", - "price_postapoc": 500, + "price_postapoc": "5 USD", "description": "This cake's destiny is to take you on a gnarly trip.", "fun": 12, "use_action": [ "WEED_CAKE" ] @@ -607,7 +607,7 @@ "name": { "str": "brownie" }, "copy-from": "sponge_cake", "description": "A rich chocolate brownie, just like how grandma used to bake them.", - "price_postapoc": 400, + "price_postapoc": "4 USD", "weight": "45 g", "calories": 292, "fun": 7 @@ -618,7 +618,7 @@ "name": { "str": "'special' brownie" }, "copy-from": "brownie", "description": "This is definitely not how grandma used to bake them.", - "price_postapoc": 500, + "price_postapoc": "5 USD", "fun": 15, "use_action": [ "WEED_CAKE" ] } diff --git a/data/json/items/containers/containers.json b/data/json/items/containers/containers.json index b7bf2b877e211..b9e13517b473e 100644 --- a/data/json/items/containers/containers.json +++ b/data/json/items/containers/containers.json @@ -9,8 +9,8 @@ "ascii_picture": "2lcanteen", "weight": "155 g", "volume": "2625 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": ")", @@ -51,7 +51,7 @@ "volume": "165640 ml", "longest_side": "72 cm", "price": "71 USD", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "bad", "length": "long", "surface": "any", "balance": "clumsy" }, "material": [ "plastic" ], "symbol": "0", @@ -80,8 +80,8 @@ "ascii_picture": "30gal_drum", "weight": "7600 g", "volume": "105 L", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "steel" ], "symbol": "0", @@ -109,8 +109,8 @@ "ascii_picture": "55gal_drum", "weight": "20 kg", "volume": "210 L", - "price": 10000, - "price_postapoc": 250, + "price": "100 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "steel" ], "symbol": "0", @@ -138,8 +138,8 @@ "//": "durasack woven polypropylene bags", "weight": "750 g", "volume": "750 ml", - "price": 85, - "price_postapoc": 5, + "price": "85 cent", + "price_postapoc": "5 cent", "material": [ "plastic" ], "pocket_data": [ { "pocket_type": "CONTAINER", "max_contains_volume": "18 L", "max_contains_weight": "22 kg", "moves": 500 } ], "symbol": ")", @@ -156,8 +156,8 @@ "ascii_picture": "bag_canvas", "weight": "415 g", "volume": "1 L", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -5, "material": [ "canvas" ], "pocket_data": [ { "pocket_type": "CONTAINER", "max_contains_volume": "15 L", "max_contains_weight": "15 kg", "moves": 400 } ], @@ -175,8 +175,8 @@ "ascii_picture": "bag_canvas_small", "weight": "20 g", "volume": "14 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -5, "material": [ "canvas" ], "pocket_data": [ { "pocket_type": "CONTAINER", "max_contains_volume": "1 L", "max_contains_weight": "3 kg", "moves": 400 } ], @@ -194,8 +194,8 @@ "ascii_picture": "bag_plastic", "weight": "5 g", "volume": "10 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "pocket_data": [ { "pocket_type": "CONTAINER", "max_contains_volume": "6 L", "max_contains_weight": "10 kg", "moves": 400 } ], "material": [ "plastic" ], @@ -213,8 +213,8 @@ "ascii_picture": "bag_garbage", "weight": "40 g", "volume": "42 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "pocket_data": [ { "pocket_type": "CONTAINER", "max_contains_volume": "110 L", "max_contains_weight": "10 kg", "moves": 400 } ], "material": [ "plastic" ], @@ -231,8 +231,8 @@ "ascii_picture": "nylon_bag", "weight": "280 g", "volume": "2 L", - "price": 400, - "price_postapoc": 100, + "price": "4 USD", + "price_postapoc": "1 USD", "to_hit": -1, "pocket_data": [ { @@ -295,8 +295,8 @@ "ascii_picture": "bag_zipper", "weight": "2 g", "volume": "10 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "pocket_data": [ { @@ -321,7 +321,7 @@ "ascii_picture": "bag_zipper_gallon", "weight": "20 g", "volume": "75 ml", - "price_postapoc": 13, + "price_postapoc": "13 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -346,8 +346,8 @@ "weight": "1500 g", "volume": "1500 ml", "longest_side": "35 cm", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -5, "material": [ "plastic" ], "symbol": ")", @@ -375,7 +375,7 @@ "volume": "5500 ml", "//1": "This is ~85% of the package volume from the amazon listing, with the assumption that the player would be squishing it harder to condense the volume.", "price": "30 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "to_hit": { "grip": "none", "length": "hand", "surface": "any", "balance": "clumsy" }, "material": [ "plastic" ], "symbol": ")", @@ -403,8 +403,8 @@ "weight": "2400g", "volume": "2260 ml", "longest_side": "150 cm", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -5, "material": [ "leather" ], "symbol": ")", @@ -429,8 +429,8 @@ "looks_like": "bag_plastic", "weight": "10 g", "volume": "50 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": ")", @@ -459,7 +459,7 @@ "//1": "Calculated as a cylinder of 2.9in diameter and 10in height, to account for it getting thinner near the top.", "longest_side": "29 cm", "price": "2 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "to_hit": { "grip": "none", "length": "hand", "surface": "any", "balance": "clumsy" }, "material": [ "glass" ], "symbol": ")", @@ -503,8 +503,8 @@ "moves": 400 } ], - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ")", @@ -535,8 +535,8 @@ "moves": 400 } ], - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ")", @@ -565,8 +565,8 @@ "moves": 400 } ], - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ")", @@ -594,8 +594,8 @@ "moves": 400 } ], - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ")", @@ -633,8 +633,8 @@ "weight": "53 g", "volume": "2040 ml", "longest_side": "31 cm", - "price": 25, - "price_postapoc": 10, + "price": "25 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": ")", "color": "cyan", @@ -661,8 +661,8 @@ "ascii_picture": "bowl_clay", "weight": "60 g", "volume": "295 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "clay" ], "symbol": ")", @@ -688,8 +688,8 @@ "ascii_picture": "bowl_wood", "weight": "48 g", "volume": "300 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": ")", "color": "brown", @@ -715,8 +715,8 @@ "ascii_picture": "bowl_wood", "weight": "88 g", "volume": "550 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": ")", "color": "brown", @@ -742,8 +742,8 @@ "ascii_picture": "bowl_coconut", "weight": "55 g", "volume": "300 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": ")", "color": "brown", @@ -769,8 +769,8 @@ "ascii_picture": "bowl_skull", "weight": "112 g", "volume": "520 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "bone" ], "symbol": ")", "color": "white", @@ -796,8 +796,8 @@ "ascii_picture": "box_cigarette", "weight": "15 g", "volume": "95 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "symbol": ")", "color": "white", @@ -814,8 +814,8 @@ "ascii_picture": "case_cigar", "weight": "95 g", "volume": "323 ml", - "price": 10000, - "price_postapoc": 50, + "price": "100 USD", + "price_postapoc": "50 cent", "material": [ "wood", "leather" ], "symbol": "u", "color": "brown", @@ -848,8 +848,8 @@ "max_item_length": "11 cm" } ], - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown", @@ -875,8 +875,8 @@ } ], "//": "~7x20x15 or ~4x22x22", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown", @@ -901,8 +901,8 @@ "volume": "900 ml", "longest_side": "30 cm", "//": "~1x27x30 or ~1x26x44", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown" @@ -919,8 +919,8 @@ "volume": "51000 ml", "longest_side": "51 cm", "//": "(25x40x50)", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -953,8 +953,8 @@ "volume": "6000 ml", "longest_side": "80 cm", "//": "(1x80x75)", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown" @@ -971,8 +971,8 @@ "volume": "329000 ml", "longest_side": "91 cm", "//": "A box that children could hide in should be big enough to cram a (un)dead child or uncomfortable adult in (90x60x60)", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown", @@ -1008,8 +1008,8 @@ "volume": "18000 ml", "longest_side": "150 cm", "//": "(1x150x120)", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown" @@ -1026,8 +1026,8 @@ "volume": "334000 ml", "longest_side": "91 cm", "//": "A box that children could hide in should be big enough to cram a (un)dead child or uncomfortable adult in (90x60x60)", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown", @@ -1054,8 +1054,8 @@ "volume": "205000 ml", "longest_side": "201 cm", "//": "(200x50x20)", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -1088,8 +1088,8 @@ "volume": "22000 ml", "longest_side": "220 cm", "//": "(220x100x1)", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown" @@ -1126,8 +1126,8 @@ } ], "//": "~7x20x15 or ~4x22x22", - "price": 2000, - "price_postapoc": 5, + "price": "20 USD", + "price_postapoc": "5 cent", "material": [ "wood" ], "symbol": "[", "color": "brown" @@ -1144,8 +1144,8 @@ "volume": "58800 ml", "longest_side": "52 cm", "//": "(25x40x50)", - "price": 2000, - "price_postapoc": 20, + "price": "20 USD", + "price_postapoc": "20 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -1171,8 +1171,8 @@ "volume": "394400 ml", "longest_side": "92 cm", "//": "(60x60x90)", - "price": 5000, - "price_postapoc": 40, + "price": "50 USD", + "price_postapoc": "40 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -1198,8 +1198,8 @@ "volume": "255600 ml", "longest_side": "202 cm", "//": "(200x50x20)", - "price": 5000, - "price_postapoc": 40, + "price": "50 USD", + "price_postapoc": "40 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -1233,8 +1233,8 @@ } ], "//": "~7x20x15 or ~4x22x22", - "price": 3000, - "price_postapoc": 10, + "price": "30 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "symbol": ")", "color": "light_gray" @@ -1251,8 +1251,8 @@ "volume": "50750 ml", "longest_side": "51 cm", "//": "(25x40x50)", - "price": 8000, - "price_postapoc": 40, + "price": "80 USD", + "price_postapoc": "40 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -1278,8 +1278,8 @@ "volume": "330000 ml", "longest_side": "91 cm", "//": "(60x60x90)", - "price": 16000, - "price_postapoc": 80, + "price": "160 USD", + "price_postapoc": "80 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -1305,8 +1305,8 @@ "volume": "206000 ml", "longest_side": "201 cm", "//": "(200x50x20)", - "price": 16000, - "price_postapoc": 80, + "price": "160 USD", + "price_postapoc": "80 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -1330,8 +1330,8 @@ "weight": "725 g", "volume": "5500 ml", "longest_side": "25 cm", - "price": 300, - "price_postapoc": 10, + "price": "3 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "symbol": ")", "color": "light_gray", @@ -1357,8 +1357,8 @@ "weight": "815 g", "volume": "26300 ml", "longest_side": "37 cm", - "price": 450, - "price_postapoc": 10, + "price": "4 USD 50 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": ")", "color": "light_gray", @@ -1383,8 +1383,8 @@ "ascii_picture": "bucket_wood", "weight": "1250 g", "volume": "7500 ml", - "price": 300, - "price_postapoc": 10, + "price": "3 USD", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": ")", "color": "c_brown", @@ -1410,8 +1410,8 @@ "ascii_picture": "camelbak", "weight": "286 g", "volume": "3001 ml", - "price": 10000, - "price_postapoc": 250, + "price": "100 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "cotton", "plastic" ], "symbol": ")", @@ -1451,8 +1451,8 @@ "ascii_picture": "can_drink", "weight": "13 g", "volume": "262 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -3, "material": [ "aluminum" ], "symbol": ")", @@ -1484,8 +1484,8 @@ "weight": "28 g", "volume": "2003 ml", "longest_side": "32 cm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "plastic", "aluminum", "paper" ], "symbol": ")", @@ -1513,8 +1513,8 @@ "ascii_picture": "carton_milk", "weight": "28 g", "volume": "2003 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "paper" ], "symbol": ")", @@ -1542,8 +1542,8 @@ "weight": "28 g", "volume": "620 ml", "longest_side": "29 cm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "cardboard" ], "symbol": ")", @@ -1570,8 +1570,8 @@ "ascii_picture": "plastic_bag_vac", "weight": "2 g", "volume": "10 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "plastic" ], "symbol": "%", "color": "red", @@ -1599,8 +1599,8 @@ "weight": "40 g", "volume": "262 ml", "longest_side": "8 cm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "steel" ], "symbol": ")", "color": "blue", @@ -1655,8 +1655,8 @@ "weight": "155 g", "volume": "1575 ml", "longest_side": "20 cm", - "price": 800, - "price_postapoc": 50, + "price": "8 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ")", @@ -1696,8 +1696,8 @@ "weight": "530 g", "volume": "1250 ml", "longest_side": "32 cm", - "price": 1595, - "price_postapoc": 100, + "price": "15 USD 95 cent", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "I", "color": "green", @@ -1723,8 +1723,8 @@ "ascii_picture": "clay_canister", "weight": "268 g", "volume": "295 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "clay" ], "symbol": "*", @@ -1750,8 +1750,8 @@ "ascii_picture": "clay_hydria", "weight": "1955 g", "volume": "17700 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "clay" ], "symbol": ")", @@ -1778,8 +1778,8 @@ "ascii_picture": "clay_watercont", "weight": "4887 g", "volume": "44250 ml", - "price": 10000, - "price_postapoc": 10, + "price": "100 USD", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "clay" ], "symbol": ")", @@ -1804,8 +1804,8 @@ "ascii_picture": "cup_plastic", "weight": "6 g", "volume": "262 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ")", @@ -1832,8 +1832,8 @@ "ascii_picture": "cup_foil", "weight": "24 g", "volume": "5 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "aluminum" ], "symbol": ")", "color": "light_gray", @@ -1860,8 +1860,8 @@ "weight": "48 g", "volume": "360 ml", "longest_side": "132 mm", - "price": 400, - "price_postapoc": 10, + "price": "4 USD", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "glass", "rubber" ], "symbol": ")", @@ -1890,8 +1890,8 @@ "weight": "11 g", "volume": "20 ml", "longest_side": "100 mm", - "price": 300, - "price_postapoc": 10, + "price": "3 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ { "type": "glass", "portion": 90 }, { "type": "rubber", "portion": 10 } ], "symbol": ")", @@ -1920,8 +1920,8 @@ "weight": "150 g", "volume": "251 ml", "longest_side": "72 mm", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "glass" ], "symbol": ")", @@ -1950,8 +1950,8 @@ "weight": "150 g", "volume": "177 ml", "longest_side": "25 cm", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "glass" ], "symbol": "|", @@ -1981,8 +1981,8 @@ "ascii_picture": "test_tube_micro", "weight": "1 g", "volume": "2ml", - "price": 10, - "price_postapoc": 5, + "price": "10 cent", + "price_postapoc": "5 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": "v", @@ -2010,8 +2010,8 @@ "weight": "270 g", "volume": "650 ml", "longest_side": "13 cm", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "steel" ], "symbol": ")", @@ -2053,7 +2053,7 @@ "volume": "3530 ml", "longest_side": "20 cm", "price": "20 USD", - "price_postapoc": 60, + "price_postapoc": "60 cent", "to_hit": { "grip": "bad", "length": "hand", "surface": "any", "balance": "clumsy" }, "material": [ "glass" ], "symbol": ")", @@ -2085,7 +2085,7 @@ "volume": "690 ml", "longest_side": "127 mm", "price": "5 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "material": [ "glass" ], "symbol": ")", "color": "light_cyan", @@ -2115,8 +2115,8 @@ "weight": "1587 g", "volume": "10500 ml", "longest_side": "33 cm", - "price": 1250, - "price_postapoc": 50, + "price": "12 USD 50 cent", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": ")", @@ -2144,8 +2144,8 @@ "weight": "4300 g", "volume": "26750 ml", "longest_side": "47 cm", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ")", @@ -2174,8 +2174,8 @@ "ascii_picture": "jug_clay", "weight": "400 g", "volume": "1180 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "clay" ], "symbol": ")", "color": "brown", @@ -2204,7 +2204,7 @@ "//1": "Calculated as a cylinder of 6in diameter and 9.5in height, to account for it getting thinner near the top.", "longest_side": "28 cm", "price": "10 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "to_hit": { "grip": "none", "length": "hand", "surface": "any", "balance": "clumsy" }, "material": [ "plastic" ], "symbol": ")", @@ -2235,7 +2235,7 @@ "volume": "4290 ml", "price": "12 USD", "//1": "Price calculated from https://www.uline.com/Product/Detail/S-22157/Hazardous-Materials-Packaging/Metal-F-Style-Can-with-Cap-1-Gallon", - "price_postapoc": 400, + "price_postapoc": "4 USD", "to_hit": { "grip": "bad", "length": "short", "surface": "any", "balance": "neutral" }, "material": [ "steel" ], "longest_side": "24 cm", @@ -2264,8 +2264,8 @@ "ascii_picture": "keg", "weight": "5040 g", "volume": "50050 ml", - "price": 10000, - "price_postapoc": 250, + "price": "100 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "aluminum" ], "symbol": ")", @@ -2294,8 +2294,8 @@ "ascii_picture": "keg", "weight": "12600 g", "volume": "52500 ml", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "steel" ], "symbol": ")", @@ -2323,8 +2323,8 @@ "ascii_picture": "large_stomach_sealed", "weight": "783 g", "volume": "500 ml", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "gutskin" ], "symbol": ")", @@ -2350,8 +2350,8 @@ "ascii_picture": "metal_tank", "weight": "5668 g", "volume": "60050 ml", - "price": 10000, - "price_postapoc": 250, + "price": "100 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -4, "material": [ "steel" ], "symbol": "}", @@ -2381,8 +2381,8 @@ "volume": "2430 ml", "longest_side": "23 cm", "//": "230 x 116 mm cylinder, 2.5mm thickness with some additional weight for attachments", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "to_hit": -4, "material": [ "steel" ], "symbol": "}", @@ -2410,8 +2410,8 @@ "ascii_picture": "canteen_wood", "weight": "232 g", "volume": "1750 ml", - "price": 800, - "price_postapoc": 10, + "price": "8 USD", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "wood" ], "symbol": ")", @@ -2448,8 +2448,8 @@ "ascii_picture": "stomach_sealed", "weight": "453 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "gutskin" ], "symbol": ")", @@ -2476,8 +2476,8 @@ "weight": "50 g", "volume": "150 ml", "longest_side": "16 cm", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": ";", "color": "light_gray", @@ -3099,8 +3099,8 @@ "ascii_picture": "waterproof_camera_case", "weight": "50 g", "volume": "275 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": ";", "color": "white", @@ -3126,8 +3126,8 @@ "ascii_picture": "waterskin", "weight": "453 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "leather" ], "symbol": ")", @@ -3165,8 +3165,8 @@ "ascii_picture": "waterskin2", "weight": "783 g", "volume": "500 ml", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "leather" ], "symbol": ")", @@ -3203,8 +3203,8 @@ "ascii_picture": "waterskin3", "weight": "990 g", "volume": "750 ml", - "price": 6000, - "price_postapoc": 100, + "price": "60 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "leather" ], "symbol": ")", @@ -3241,8 +3241,8 @@ "ascii_picture": "wooden_barrel", "weight": "42408 g", "volume": "110 L", - "price": 12000, - "price_postapoc": 250, + "price": "120 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "wood", "steel" ], "symbol": ")", @@ -3269,8 +3269,8 @@ "ascii_picture": "wrapper", "weight": "3 g", "volume": "5 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "paper" ], "symbol": ",", @@ -3288,8 +3288,8 @@ "//": "50 cm length, 30 cm width, 0.02 mm thickness - 3ml, but without wrapper roll 4 times as much", "weight": "8 g", "volume": "12 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "aluminum" ], "symbol": ",", "color": "light_gray", @@ -3308,8 +3308,8 @@ "weight": "52 g", "volume": "96 ml", "longest_side": "30 cm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "cardboard" ], "symbol": "o", "color": "dark_gray", @@ -3347,8 +3347,8 @@ "ascii_picture": "styrofoam_cup", "weight": "50 g", "volume": "501 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "plastic" ], "symbol": ")", "color": "white", @@ -3372,8 +3372,8 @@ "ascii_picture": "plastic_bucket", "weight": "1360 g", "volume": "4500 ml", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": ")", "color": "white", @@ -3398,8 +3398,8 @@ "ascii_picture": "condom", "weight": "5 g", "volume": "15 ml", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "to_hit": -5, "material": [ "plastic" ], "symbol": ")", @@ -3541,8 +3541,8 @@ "ascii_picture": "can_food_big", "weight": "350 g", "volume": "3003 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "steel" ], "symbol": ")", "color": "blue", @@ -3570,8 +3570,8 @@ "ascii_picture": "survival_kit_box", "weight": "800 g", "volume": "2300 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "aluminum" ], "symbol": "!", "color": "light_cyan", @@ -3596,8 +3596,8 @@ "ascii_picture": "large_survival_kit_box", "weight": "850 g", "volume": "8900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "pocket_data": [ { "pocket_type": "CONTAINER", "rigid": true, "max_contains_volume": "8500 ml", "max_contains_weight": "20000 g" } ], "material": [ "cardboard" ], "symbol": ")", @@ -3613,8 +3613,8 @@ "ascii_picture": "box_tea", "weight": "10 g", "volume": "105 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "cardboard" ], "symbol": ")", "color": "green", @@ -3629,8 +3629,8 @@ "ascii_picture": "stand_flyer", "weight": "326 g", "volume": "5962 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "plastic" ], "symbol": "H", "color": "white", @@ -3668,8 +3668,8 @@ "ascii_picture": "1st_aid_box", "weight": "200 g", "volume": "2900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "plastic" ], "flags": [ "COLLAPSE_CONTENTS" ], @@ -3697,8 +3697,8 @@ "//": "Was introduced without anchoring to a real example, but is similar to this: https://www.amazon.com/Livans-Tactical-Rip-Away-Military-Emergency/dp/B07Y7BRB83", "weight": "329 g", "volume": "1250 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "cotton", "neoprene" ], "flags": [ "COLLAPSE_CONTENTS", "PALS_MEDIUM" ], @@ -3726,8 +3726,8 @@ "ascii_picture": "rc_car_box", "weight": "400 g", "volume": "3200 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "cardboard" ], "pocket_data": [ @@ -3751,8 +3751,8 @@ "ascii_picture": "stirling_kit_box", "weight": "400 g", "volume": "3200 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "cardboard" ], "pocket_data": [ @@ -3776,8 +3776,8 @@ "ascii_picture": "maker_kit_box", "weight": "400 g", "volume": "3200 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "cardboard" ], "pocket_data": [ @@ -3801,8 +3801,8 @@ "ascii_picture": "robot_kit_box", "weight": "400 g", "volume": "3200 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "cardboard" ], "pocket_data": [ @@ -3827,8 +3827,8 @@ "ascii_picture": "mre_bag_small", "weight": "70 g", "volume": "100 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "pocket_data": [ { @@ -3855,8 +3855,8 @@ "ascii_picture": "mre_bag", "weight": "180 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "pocket_data": [ { @@ -3883,8 +3883,8 @@ "ascii_picture": "mre_package", "weight": "320 g", "volume": "450 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "pocket_data": [ { @@ -3912,8 +3912,8 @@ "ascii_picture": "mre_bag_dessert", "weight": "35 g", "volume": "50 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "pocket_data": [ { @@ -3940,8 +3940,8 @@ "ascii_picture": "mre_bag_spread", "weight": "10 g", "volume": "12 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "pocket_data": [ { @@ -3968,8 +3968,8 @@ "ascii_picture": "mre_bag_spread", "weight": "10 g", "volume": "12 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "pocket_data": [ { @@ -3997,8 +3997,8 @@ "ascii_picture": "ipok", "weight": "50 g", "volume": "50 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "pocket_data": [ { @@ -4026,8 +4026,8 @@ "weight": "45 kg", "volume": "222 L", "longest_side": "91 cm", - "price": 10000, - "price_postapoc": 1500, + "price": "100 USD", + "price_postapoc": "15 USD", "material": [ "glass" ], "symbol": ")", "color": "light_cyan", @@ -4054,8 +4054,8 @@ "weight": "45 kg", "volume": "222 L", "longest_side": "91 cm", - "price": 5000, - "price_postapoc": 750, + "price": "50 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "glass" ], "symbol": ")", "color": "light_cyan", @@ -4091,8 +4091,8 @@ "weight": "22 kg", "volume": "133 L", "longest_side": "91 cm", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "material": [ "glass" ], "symbol": ")", "color": "light_cyan", @@ -4120,8 +4120,8 @@ "weight": "22 kg", "volume": "133 L", "longest_side": "91 cm", - "price": 1500, - "price_postapoc": 350, + "price": "15 USD", + "price_postapoc": "3 USD 50 cent", "material": [ "glass" ], "symbol": ")", "color": "light_cyan", @@ -4158,8 +4158,8 @@ "weight": "80 kg", "volume": "400 L", "longest_side": "183 cm", - "price": 50000, - "price_postapoc": 2500, + "price": "500 USD", + "price_postapoc": "25 USD", "material": [ "glass" ], "symbol": ")", "color": "light_cyan", @@ -4187,8 +4187,8 @@ "weight": "80 kg", "volume": "400 L", "longest_side": "183 cm", - "price": 20000, - "price_postapoc": 1000, + "price": "200 USD", + "price_postapoc": "10 USD", "material": [ "glass" ], "symbol": ")", "color": "light_cyan", @@ -4227,8 +4227,8 @@ "weight": "591 g", "volume": "5030 ml", "longest_side": "30 cm", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -4258,8 +4258,8 @@ "weight": "6720 g", "volume": "23250 ml", "longest_side": "50 cm", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -4289,8 +4289,8 @@ "weight": "22727 g", "volume": "80 L", "longest_side": "117 cm", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -4320,8 +4320,8 @@ "weight": "96 kg", "volume": "390 L", "longest_side": "122 cm", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -4421,8 +4421,8 @@ "weight": "100 g", "volume": "116 ml", "longest_side": "58 mm", - "price": 300, - "price_postapoc": 5, + "price": "3 USD", + "price_postapoc": "5 cent", "material": [ "glass" ], "symbol": "v", "color": "cyan", @@ -4449,8 +4449,8 @@ "ascii_picture": "30gal_drum_aluminum", "weight": "2565 g", "volume": "130 L", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "aluminum" ], "symbol": "0", @@ -4478,8 +4478,8 @@ "ascii_picture": "55gal_drum_aluminum", "weight": "10 kg", "volume": "230 L", - "price": 10000, - "price_postapoc": 250, + "price": "100 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "aluminum" ], "symbol": "0", @@ -4506,8 +4506,8 @@ "ascii_picture": "squeeze_tube", "weight": "8150 mg", "volume": "221 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": "t", @@ -4535,8 +4535,8 @@ "ascii_picture": "squeeze_tube_small", "weight": "3500 mg", "volume": "95 ml", - "price": 50, - "price_postapoc": 5, + "price": "50 cent", + "price_postapoc": "5 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": "t", @@ -4566,8 +4566,8 @@ "ascii_picture": "bottle_gourd", "weight": "300 g", "volume": "2500 ml", - "price": 300, - "price_postapoc": 60, + "price": "3 USD", + "price_postapoc": "60 cent", "to_hit": 1, "material": [ "wood" ], "symbol": "6", @@ -4606,8 +4606,8 @@ "weight": "400 g", "volume": "4325 ml", "longest_side": "21 cm", - "price": 10, - "price_postapoc": 3, + "price": "10 cent", + "price_postapoc": "3 cent", "material": [ "steel" ], "symbol": "o", "color": "light_gray", @@ -4633,8 +4633,8 @@ "weight": "50 g", "volume": "4325 ml", "longest_side": "21 cm", - "price": 10, - "price_postapoc": 3, + "price": "10 cent", + "price_postapoc": "3 cent", "material": [ "plastic" ], "symbol": "o", "color": "green", @@ -4660,8 +4660,8 @@ "weight": "282 g", "volume": "2050 ml", "longest_side": "21 cm", - "price": 1400, - "price_postapoc": 100, + "price": "14 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "l", "color": "green", @@ -4687,8 +4687,8 @@ "ascii_picture": "pencil_case", "weight": "200 g", "volume": "1730 ml", - "price": 900, - "price_postapoc": 100, + "price": "9 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "symbol": "p", "color": "dark_gray", @@ -4714,8 +4714,8 @@ "ascii_picture": "cardboard_roll", "weight": "1 g", "volume": "6 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "cardboard" ], "symbol": "o", "color": "dark_gray", @@ -4741,8 +4741,8 @@ "weight": "181 g", "volume": "724 ml", "longest_side": "10 cm", - "price": 1500, - "price_postapoc": 50, + "price": "15 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "wood" ], "looks_like": "clay_canister", @@ -4770,8 +4770,8 @@ "weight": "40 g", "volume": "200 ml", "longest_side": "15 cm", - "price": 200, - "price_postapoc": 10, + "price": "2 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": ",", "color": "white", @@ -4837,8 +4837,8 @@ "weight": "120 g", "volume": "500 ml", "longest_side": "22 cm", - "price": 500, - "price_postapoc": 25, + "price": "5 USD", + "price_postapoc": "25 cent", "pocket_data": [ { "pocket_type": "CONTAINER", diff --git a/data/json/items/containers/conversions.json b/data/json/items/containers/conversions.json index 8791ceefd2877..179c6ca7f586c 100644 --- a/data/json/items/containers/conversions.json +++ b/data/json/items/containers/conversions.json @@ -9,8 +9,8 @@ "weight": "600 g", "volume": "11360 ml", "longest_side": "71 cm", - "price": 15, - "price_postapoc": 15, + "price": "15 cent", + "price_postapoc": "15 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown", @@ -35,8 +35,8 @@ "weight": "500 g", "volume": "8960 ml", "longest_side": "56 cm", - "price": 15, - "price_postapoc": 15, + "price": "15 cent", + "price_postapoc": "15 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown", @@ -61,8 +61,8 @@ "weight": "400 g", "volume": "6880 ml", "longest_side": "43 cm", - "price": 15, - "price_postapoc": 15, + "price": "15 cent", + "price_postapoc": "15 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown", @@ -87,8 +87,8 @@ "weight": "350 g", "volume": "5920 ml", "longest_side": "37 cm", - "price": 15, - "price_postapoc": 15, + "price": "15 cent", + "price_postapoc": "15 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown", @@ -113,8 +113,8 @@ "weight": "280 g", "volume": "4320 ml", "longest_side": "27 cm", - "price": 15, - "price_postapoc": 15, + "price": "15 cent", + "price_postapoc": "15 cent", "material": [ "cardboard" ], "symbol": ")", "color": "brown", diff --git a/data/json/items/containers/generic.json b/data/json/items/containers/generic.json index 63e815ffc7a24..0c1f166fcd2d2 100644 --- a/data/json/items/containers/generic.json +++ b/data/json/items/containers/generic.json @@ -56,7 +56,7 @@ "volume": "400 L", "longest_side": "114 cm", "price": "150 USD", - "price_postapoc": 7500, + "price_postapoc": "75 USD", "//2": "Based on above link.", "pocket_data": [ { @@ -82,8 +82,8 @@ "looks_like": "bag_iv", "weight": "5 g", "volume": "35 ml", - "price": 50, - "price_postapoc": 1, + "price": "50 cent", + "price_postapoc": "1 cent", "material": [ "plastic" ], "symbol": ")", "color": "light_gray", @@ -171,8 +171,8 @@ "description": "A very small paper box.", "weight": "20 g", "volume": "210 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "symbol": ")", "color": "white", diff --git a/data/json/items/containers/lab.json b/data/json/items/containers/lab.json index 64e121edae713..bf2b8cf3f9c2c 100644 --- a/data/json/items/containers/lab.json +++ b/data/json/items/containers/lab.json @@ -10,8 +10,8 @@ "longest_side": "22 cm", "//": "30 x 20 x 18,5 cm external, 27 x 17 x 16,5 cm cm internal", "//2": "https://www.auer-packaging.com/gb/en/Euro-containers-with-hinge-lid/ED-3217-HG.html", - "price": 1275, - "price_postapoc": 5, + "price": "12 USD 75 cent", + "price_postapoc": "5 cent", "material": [ "plastic" ], "symbol": "#", "color": "dark_gray", diff --git a/data/json/items/containers/military.json b/data/json/items/containers/military.json index 2eb830be9ce25..150bda2380437 100644 --- a/data/json/items/containers/military.json +++ b/data/json/items/containers/military.json @@ -13,8 +13,8 @@ "//": "", "//2": "External: 29.85 x 9.53 x 17.78 cm, Internal: 25.4 x 8.9 x 16.5 cm", "flags": [ "COLLAPSE_CONTENTS" ], - "price": 1930, - "price_postapoc": 10, + "price": "19 USD 30 cent", + "price_postapoc": "10 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -108,7 +108,7 @@ "longest_side": "299 mm", "//": "", "//2": "External: 29.85 x 15.24 x 19.05 cm, Internal: 27.94 x 13.97 x 17.78 cm ", - "price": 1999, + "price": "19 USD 99 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -195,7 +195,7 @@ "longest_side": "318 mm", "//": "", "//2": "External: 31.75 x 18.42 x 21.59 cm, Internal: 29.85 x 17.15 x 20.96 cm ", - "price": 1999, + "price": "19 USD 99 cent", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -253,7 +253,7 @@ "longest_side": "470 mm", "//": "", "//2": "External: 46.99 x 15.56 x 25.40 cm, Internal: 43.82 x 13.97 x 24.13 cm", - "price": 2500, + "price": "25 USD", "pocket_data": [ { "pocket_type": "CONTAINER", @@ -714,8 +714,8 @@ "description": "A beige collapsible drum with a water valve and D-Rings. Text on its top clearly says \"POTABLE WATER ONLY\".", "weight": "16 kg", "volume": "23 L", - "price": 39500, - "price_postapoc": 250, + "price": "395 USD", + "price_postapoc": "2 USD 50 cent", "//": "todo: replace with some better rubber material", "material": [ { "type": "rubber", "portion": 9 }, { "type": "steel", "portion": 1 } ], "symbol": "0", @@ -740,8 +740,8 @@ "description": "A black collapsible drum with a valve and D-Rings. Yellow text on its top clearly says \"FLAMMABLE\". Empty and collapsed, it could be moved elsewhere.", "weight": "125 kg", "volume": "180 L", - "price": 39500, - "price_postapoc": 250, + "price": "395 USD", + "price_postapoc": "2 USD 50 cent", "//": "todo: replace with some better rubber material", "use_action": { "type": "deploy_furn", "furn_type": "f_432gal_drum_rubber" }, "material": [ { "type": "rubber", "portion": 9 }, { "type": "steel", "portion": 1 } ], diff --git a/data/json/items/corpses/corpses.json b/data/json/items/corpses/corpses.json index 71f380cd95bb0..e022da962cd6b 100644 --- a/data/json/items/corpses/corpses.json +++ b/data/json/items/corpses/corpses.json @@ -13,7 +13,7 @@ ], "description": "A dead body.", "//": "most of the properties depend on the monster type and are created at runtime!", - "price": 0, + "price": "0 cent", "volume": "0 ml", "flags": [ "TRADER_AVOID", "CORPSE", "TARDIS" ], "category": "corpses", @@ -40,7 +40,7 @@ "description": "A badly mangled human body. A giant puncture wound is visible on its upper chest, and something has drained most of the moisture from the carcass, leaving it desiccated and making it impossible to determine the body's age.", "category": "corpses", "material": [ "hflesh" ], - "price": 0, + "price": "0 cent", "volume": "27 L", "weight": "32 kg", "flags": [ "TRADER_AVOID" ] @@ -304,7 +304,7 @@ "looks_like": "corpse_generic_human", "category": "corpses", "material": [ "hflesh" ], - "price": 0, + "price": "0 cent", "volume": "30 L", "weight": "32 kg", "flags": [ "TRADER_AVOID", "TARDIS" ], diff --git a/data/json/items/corpses/dead_exodii.json b/data/json/items/corpses/dead_exodii.json index 532c92c5ab704..1dcaaa688a5e8 100644 --- a/data/json/items/corpses/dead_exodii.json +++ b/data/json/items/corpses/dead_exodii.json @@ -7,7 +7,7 @@ "name": { "str": "broken Exodii worker" }, "category": "other", "description": "A broken Exodii worker. It's possible it could be gutted for parts.", - "price": 1000, + "price": "10 USD", "material": [ "steel" ], "volume": "119 L", "weight": "221 kg", @@ -23,7 +23,7 @@ "name": { "str": "broken Exodii quadruped" }, "category": "other", "description": "A broken Exodii walker. Still looks intimidating despite being permanently inoperative, possibly due to the sheer size and mass. Could be gutted for parts.", - "price": 1000, + "price": "10 USD", "material": [ "steel" ], "volume": "410 L", "weight": "498 kg", @@ -39,7 +39,7 @@ "name": { "str": "broken Exodii turret" }, "category": "other", "description": "A broken Exodii turret. Still looks intimidating despite being permanently inoperative, possibly due to the sheer size and mass. Could be gutted for parts.", - "price": 1000, + "price": "10 USD", "material": [ "steel" ], "weight": "206 kg", "volume": "105 L", @@ -55,7 +55,7 @@ "name": { "str": "broken Exodii balloon-drone" }, "category": "other", "description": "A broken balloon drone. The balloon has been shredded, but most of the chassis is still intact. Could be gutted for parts.", - "price": 1000, + "price": "10 USD", "material": [ "steel" ], "volume": "70 L", "weight": "150 kg", diff --git a/data/json/items/corpses/dead_yrax.json b/data/json/items/corpses/dead_yrax.json index 19f2adf84e22b..881148526b896 100644 --- a/data/json/items/corpses/dead_yrax.json +++ b/data/json/items/corpses/dead_yrax.json @@ -7,7 +7,7 @@ "name": { "str_sp": "trifacet remains" }, "category": "other", "description": "A split-open facet reveals an interior full of closely-fit geometric primitives among chipped strips of milk-white quartz. The composition of parts lends you no clues as to how this machine ever functioned.", - "price": 1000, + "price": "10 USD", "material": [ "steel", "ceramic" ], "volume": "119 L", "weight": "221 kg", diff --git a/data/json/items/corpses/inactive_bots.json b/data/json/items/corpses/inactive_bots.json index 598fc7faf18d5..8c025ad4e3904 100644 --- a/data/json/items/corpses/inactive_bots.json +++ b/data/json/items/corpses/inactive_bots.json @@ -6,8 +6,8 @@ "description": "An inactive EMP hack. Manhacks are fist-sized robots that fly through the air. This one contains an EMP grenade and attacks by flying at its target and detonating. Use this item to reprogram and release the EMP hack. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "2000 g", "volume": "750 ml", - "price": 64500, - "price_postapoc": 3000, + "price": "645 USD", + "price_postapoc": "30 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -32,8 +32,8 @@ "description": "An inactive C-4 hack. Manhacks are fist-sized robots that fly through the air. This one contains a C-4 demolition charge and attacks by flying at its target and detonating. Use this item to reprogram and activate the C-4 hack. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "3750 g", "volume": "250 ml", - "price": 67500, - "price_postapoc": 3000, + "price": "675 USD", + "price_postapoc": "30 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -58,8 +58,8 @@ "description": "An inactive flashbang hack. Manhacks are fist-sized robots that fly through the air. This one contains a flashbang and attacks by flying at its target and detonating. Use this item to reprogram and activate the flashbang hack. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "1750 g", "volume": "750 ml", - "price": 59500, - "price_postapoc": 500, + "price": "595 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -84,8 +84,8 @@ "description": "An inactive tear gas hack. Manhacks are fist-sized robots that fly through the air. This one contains a tear gas canister and attacks by flying at its target and releasing the gas. Use this item to reprogram and activate the tear gas hack. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "3000 g", "volume": "750 ml", - "price": 60500, - "price_postapoc": 500, + "price": "605 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -110,8 +110,8 @@ "description": "An inactive grenade hack. Manhacks are fist-sized robots that fly through the air. This one contains a grenade and attacks by flying at its target and detonating. Use this item to reprogram and activate the grenade hack. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "2000 g", "volume": "250 ml", - "price": 60000, - "price_postapoc": 1000, + "price": "600 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -136,8 +136,8 @@ "description": "An inactive turret. Using this item involves loading the unit with the factory-loaded .50 BMG rounds in your inventory (if you wish to divide your ammunition, set aside whatever .50 BMG rounds you do NOT want to give the turret), turning it on, and placing it on the ground, where it will attach itself. If programmed successfully, the turret will then identify you as a friendly, and attack all enemies with its M2HB.", "weight": "172 kg", "volume": "30 L", - "price": 500500, - "price_postapoc": 8000, + "price": "5 kUSD 5 USD", + "price_postapoc": "80 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", @@ -159,8 +159,8 @@ "description": "An inactive manhack, a fist-sized robot that flies through the air. This one is covered with whirring blades and attacks by throwing itself against its target. Use this item to reprogram and activate the manhack. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "1500 g", "volume": "750 ml", - "price": 60000, - "price_postapoc": 500, + "price": "600 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -185,9 +185,9 @@ "description": "An inactive turret. Using this item involves loading the unit with the factory-loaded 5.56x45mm rounds in your inventory (if you wish to divide your ammunition, set aside whatever 5.56x45mm rounds you do NOT want to give the turret), turning it on, and placing it on the ground, where it will attach itself. If programmed successfully, the turret will then identify you as a friendly, and attack all enemies with its M249.", "weight": "172 kg", "volume": "30 L", - "price": 500000, + "price": "5 kUSD", "to_hit": -3, - "price_postapoc": 5000, + "price_postapoc": "50 USD", "material": [ "steel", "plastic" ], "symbol": ";", "color": "green", @@ -208,8 +208,8 @@ "description": "An inactive turret. Using this item involves loading the unit with the factory-loaded 7.62x51mm rounds in your inventory (if you wish to divide your ammunition, set aside whatever 7.62x51mm rounds you do NOT want to give the turret), turning it on, and placing it on the ground, where it will attach itself. If programmed successfully, the turret will then identify you as a friendly, and attack all enemies with its M240.", "weight": "172 kg", "volume": "30 L", - "price": 500000, - "price_postapoc": 6000, + "price": "5 kUSD", + "price_postapoc": "60 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", @@ -231,8 +231,8 @@ "description": "An inactive riot control turret. Using this item involves loading the unit with the 40x46mm M1006 sponge rounds in your inventory (if you wish to divide your ammunition, set aside whatever beanbag rounds you do NOT want to give the turret), turning it on, and placing it on the ground, where it will attach itself. If programmed successfully, the turret will then identify you as a friendly, and attack all enemies with its riot control gun.", "weight": "125000 g", "volume": "60 L", - "price": 200500, - "price_postapoc": 2000, + "price": "2 kUSD 5 USD", + "price_postapoc": "20 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", @@ -254,8 +254,8 @@ "description": "An inactive turret. Using this item involves loading the unit with the factory-loaded 9x19mm rounds in your inventory (if you wish to divide your ammunition, set aside whatever 9x19mm you do NOT want to give the turret), turning it on, and placing it on the ground. If reprogrammed and rewired successfully, the turret will then identify you as a friendly, and attack all enemies with its SMG.", "weight": "40750 g", "volume": "30 L", - "price": 400000, - "price_postapoc": 3000, + "price": "4 kUSD", + "price_postapoc": "30 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", @@ -277,8 +277,8 @@ "description": "An inactive TALON UGV equipped with an M16A4. Using this item involves loading the unit with the factory-loaded 5.56x45mm rounds in your inventory (if you wish to divide your ammunition, set aside whatever 5.56x45mm you do NOT want to give the robot), turning it on, and placing it on the ground. If reprogrammed and rewired successfully, the security bot will then identify you as a friendly, roam around or follow you, and attack all enemies with its rifle.", "weight": "40750 g", "volume": "30 L", - "price": 750000, - "price_postapoc": 4000, + "price": "7 kUSD 500 USD", + "price_postapoc": "40 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -302,8 +302,8 @@ "description": "An inactive TALON UGV equipped with an M202A1. Using this item involves loading the unit with the M235 rockets in your inventory (if you wish to divide your ammunition, set aside whatever M235 rockets you do NOT want to give the robot), turning it on, and placing it on the ground. If reprogrammed and rewired successfully, the security bot will then identify you as a friendly, roam around or follow you, and attack all enemies with its M202A1.", "weight": "40750 g", "volume": "30 L", - "price": 750000, - "price_postapoc": 3000, + "price": "7 kUSD 500 USD", + "price_postapoc": "30 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -327,8 +327,8 @@ "description": "An inactive nurse bot. Using this item involves placing it on the ground and reactivating its mechanical body. If reprogrammed and rewired successfully, the nurse bot will then identify you as a friendly, roam around or follow you, and assist you in surgeries.", "volume": "62500 ml", "weight": "81500 g", - "price": 750000, - "price_postapoc": 2000, + "price": "7 kUSD 500 USD", + "price_postapoc": "20 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -352,8 +352,8 @@ "description": "An inactive grocery bot. Using this item involves placing it on the ground and reactivating its mechanical body. If reprogrammed and rewired successfully, the grocery bot will then identify you as a friendly, roam around or follow you.", "volume": "62500 ml", "weight": "81500 g", - "price": 750000, - "price_postapoc": 250, + "price": "7 kUSD 500 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -377,8 +377,8 @@ "description": "An inactive grocery bot. Using this item involves placing it on the ground and reactivating its mechanical body. If reprogrammed and rewired successfully, the grocery bot will then identify you as a friendly, roam around or follow you.", "volume": "62500 ml", "weight": "81500 g", - "price": 750000, - "price_postapoc": 100, + "price": "7 kUSD 500 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -403,8 +403,8 @@ "weight": "81500 g", "volume": "62500 ml", "//": "It is a disgusting mass of rotting flesh and jagged metal pieces, no one will buy it.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -3, "material": [ "steel", "flesh" ], "symbol": ";", @@ -430,8 +430,8 @@ "weight": "81500 g", "volume": "62500 ml", "//": "It is an affront to humanity, no one will buy it.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -3, "material": [ "steel", "flesh" ], "symbol": ";", @@ -456,8 +456,8 @@ "description": "An inactive cleaner bot. Using this item involves placing it on the ground and turning it on. If reprogrammed and rewired successfully, the cleaner bot will respond to future commands.", "weight": "81500 g", "volume": "62500 ml", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -483,8 +483,8 @@ "description": "An inactive demining robot. Using this item involves placing it on the ground and turning it on.", "weight": "81500 g", "volume": "62500 ml", - "price": 25000, - "price_postapoc": 1000, + "price": "250 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -511,7 +511,7 @@ "//": "Volume and weight based on Boston Dynamics Spot.", "weight": "32700 g", "volume": "105 L", - "price": 80000, + "price": "800 USD", "price_postapoc": "100 USD", "to_hit": -3, "material": [ "steel", "plastic" ], @@ -539,7 +539,7 @@ "//": "Volume and weight based on Boston Dynamics Spot.", "volume": "125 L", "weight": "36000 g", - "price": 80000, + "price": "800 USD", "price_postapoc": "250 USD", "to_hit": -3, "material": [ "steel", "plastic" ], @@ -566,8 +566,8 @@ "description": "An inactive experimental robot plundered from a science lab. It resembles a human-sized spider and was designed to deploy manhacks. Using this item involves placing it on the ground and turning it on. If reprogrammed and rewired successfully, the robot will race towards enemies and deploy a variety of experimental devices.", "weight": "100000 g", "volume": "65000 ml", - "price": 80000, - "price_postapoc": 1500, + "price": "800 USD", + "price_postapoc": "15 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -592,8 +592,8 @@ "description": "An inactive military-grade automated searchlight. Using this item involves placing it on the ground and turning it on. If reprogrammed and rewired successfully, the searchlight will then identify you as an ally, survey the area, and illuminate approaching hostiles. Seems to have an unhealthy fascination with you.", "weight": "120000 g", "volume": "92500 ml", - "price": 500000, - "price_postapoc": 1000, + "price": "5 kUSD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -618,8 +618,8 @@ "description": "An inactive Northrop Dispatch, guard model, serving as a mobile assembler and deployer of kamikaze manhacks for defense. Activate it to place it onto the ground; due to a one-way switch triggered during deactivation, however, it will be nonaggressive, and serves only as a distraction.", "volume": "95 L", "weight": "250 kg", - "price": 10000000, - "price_postapoc": 10000, + "price": "100 kUSD", + "price_postapoc": "100 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -643,8 +643,8 @@ "description": "An inactive Northrop Dispatch, military model, serving as a mobile assembler and deployer of lethal manhacks for combat situations. Activate it to place it onto the ground; due to a one-way switch triggered during deactivation, however, it will be nonaggressive, and serves only as a distraction.", "volume": "95 L", "weight": "300 kg", - "price": 100000000, - "price_postapoc": 25000, + "price": "1000 kUSD", + "price_postapoc": "250 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -668,8 +668,8 @@ "description": "An inactive automated loudspeaker. Using this item involves placing it on the ground and turning it on. If reprogrammed and rewired successfully, the loudspeaker will continuously shout pre-recorded messages.", "weight": "100 kg", "volume": "50500 ml", - "price": 500000, - "price_postapoc": 10000, + "price": "5 kUSD", + "price_postapoc": "100 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -693,8 +693,8 @@ "description": "An inactive taser hack. Manhacks are fist-sized robots that fly through the air. This one has a taser and attacks by flying at its target and delivering an electric shock. Use this item to reprogram and release the taser hack. Electronics and computer skills determine if the targeting matrix is reprogrammed successfully.", "weight": "1600 g", "volume": "750 ml", - "price": 64500, - "price_postapoc": 3000, + "price": "645 USD", + "price_postapoc": "30 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -719,8 +719,8 @@ "description": "A featureless quartz pyramid that, although obviously artificial, shows no real indication of ever having been an advanced robot. Perhaps you could try reactivating it?", "weight": "30 kg", "volume": "50 L", - "price": 64500, - "price_postapoc": 3000, + "price": "645 USD", + "price_postapoc": "30 USD", "to_hit": -3, "material": [ "steel", "ceramic" ], "symbol": ",", @@ -736,8 +736,8 @@ "description": "An inactive security drone. They are fist-sized robots that fly through the air. They have a scanner, lens and speaker. Use this item to reprogram and activate the security drone. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "5400 g", "volume": "750 ml", - "price": 60000, - "price_postapoc": 800, + "price": "600 USD", + "price_postapoc": "8 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -762,8 +762,8 @@ "description": "An inactive security drone. They are fist-sized robots that fly through the air. They have a scanner, lens and speaker. Use this item to reprogram and activate the security drone. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "5400 g", "volume": "750 ml", - "price": 60000, - "price_postapoc": 800, + "price": "600 USD", + "price_postapoc": "8 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -788,8 +788,8 @@ "description": "An inactive security drone. They are fist-sized robots that fly through the air. They have a scanner, lens and speaker. Use this item to reprogram and activate the security drone. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "5400 g", "volume": "750 ml", - "price": 60000, - "price_postapoc": 800, + "price": "600 USD", + "price_postapoc": "8 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -814,8 +814,8 @@ "description": "An inactive security drone. They are fist-sized robots that fly through the air. They have a scanner, lens and speaker. Use this item to reprogram and activate the security drone. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "5400 g", "volume": "750 ml", - "price": 60000, - "price_postapoc": 800, + "price": "600 USD", + "price_postapoc": "8 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -840,8 +840,8 @@ "description": "An inactive security drone. They are fist-sized robots that fly through the air. They have a scanner, lens and speaker. Use this item to reprogram and activate the security drone. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "5400 g", "volume": "750 ml", - "price": 60000, - "price_postapoc": 800, + "price": "600 USD", + "price_postapoc": "8 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -866,8 +866,8 @@ "description": "An inactive security drone. They are fist-sized robots that fly through the air. They have a scanner, lens and speaker. Use this item to reprogram and activate the security drone. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "5400 g", "volume": "750 ml", - "price": 60000, - "price_postapoc": 800, + "price": "600 USD", + "price_postapoc": "8 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -893,8 +893,8 @@ "description": "An inactive camspy. Using this item involves turning it on and launching it. If reprogrammed and rewired successfully, the camspy will then keep watch for intruders.", "weight": "40750 g", "volume": "30 L", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", diff --git a/data/json/items/electronics.json b/data/json/items/electronics.json index 08796dba53d99..40653209b554f 100644 --- a/data/json/items/electronics.json +++ b/data/json/items/electronics.json @@ -9,8 +9,8 @@ "weight": "100 g", "volume": "80 ml", "longest_side": "82 mm", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "looks_like": "box_small", "material": [ "plastic", "copper" ], "symbol": "#", @@ -24,8 +24,8 @@ "description": "An electrical component designed to produce microwaves, for use in a microwave oven.", "weight": "954 g", "volume": "4 L", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "looks_like": "motor_small", "material": [ "steel" ], "symbol": ":", @@ -39,8 +39,8 @@ "description": "A large device consisting mainly of a tube of copper wire surrounding a large copper tube filled with high explosives. When detonated properly, the explosives allow the device to produce large amounts of electrical energy in a very short time.", "weight": "3589 g", "volume": "10455 ml", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "explode_in_fire": true, "explosion": { "power": 600, "shrapnel": { "casing_mass": 3214, "fragment_mass": 0.25 } }, "//": "uncraftable due to complexity of the physics involved", @@ -58,7 +58,7 @@ "color": "yellow", "weight": "12 kg", "volume": "1000 ml", - "price": 2000, + "price": "20 USD", "material": [ "steel", "gold" ], "category": "spare_parts" } diff --git a/data/json/items/fluff.json b/data/json/items/fluff.json index e8d4669049ba9..b09e820b73907 100644 --- a/data/json/items/fluff.json +++ b/data/json/items/fluff.json @@ -8,8 +8,8 @@ "weight": "40 g", "volume": "150 ml", "longest_side": "12 cm", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "o", "color": "white", @@ -23,8 +23,8 @@ "description": "A deck of 52 playing cards.", "weight": "50 g", "volume": "100 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "cardboard" ], "symbol": ",", "color": "red", @@ -61,8 +61,8 @@ "description": "A photo of a smiling family on a camping trip. One of the parents looks like a cleaner, happier version of a zombie you've seen.", "weight": "1 g", "volume": "5 ml", - "price": 800, - "price_postapoc": 0, + "price": "8 USD", + "price_postapoc": "0 cent", "flags": [ "BANK_NOTE_SHAPED", "PAPER_SHAPED" ], "material": [ "paper" ], "symbol": "*", @@ -89,8 +89,8 @@ }, "symbol": "O", "description": "A pair of red and silver pom poms with plastic handles. Using them will make you start a cheerleading routine.", - "price": 600, - "price_postapoc": 20, + "price": "6 USD", + "price_postapoc": "20 cent", "material": [ "plastic" ], "volume": "250 ml", "longest_side": "10 cm", @@ -105,8 +105,8 @@ "description": "A poorly-taken polaroid photo of a young man wearing bell-bottoms and a fedora. It's pretty blurry.", "weight": "1 g", "volume": "5 ml", - "price": 100, - "price_postapoc": 0, + "price": "1 USD", + "price_postapoc": "0 cent", "material": [ "plastic" ], "symbol": "*", "color": "light_gray" @@ -119,8 +119,8 @@ "description": "A jigsaw puzzle cardboard box containing 1000 cardboard pieces that when connected together properly forms a image of something, somewhere.", "weight": "410 g", "volume": "2200 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "cardboard" ], "symbol": "?", "color": "brown", @@ -406,7 +406,7 @@ "volume": "2400 ml", "longest_side": "30 cm", "price": "16 USD", - "price_postapoc": 500, + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -424,7 +424,7 @@ "volume": "1200 ml", "longest_side": "15 cm", "price": "16 USD", - "price_postapoc": 500, + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -439,8 +439,8 @@ "description": "A wooden box containing a set of round tokens used to play checkers.", "weight": "788 g", "volume": "1500 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -455,8 +455,8 @@ "description": "A modest wooden box containing a square base, two small triangles, two large triangles, a parallelogram, and a rhombus, all painted in different colors to play the traditional Chinese puzzle of tangram. At the box, there are several figures that you can make with the pieces.", "weight": "788 g", "volume": "1500 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -471,8 +471,8 @@ "description": "A wooden box containing a wooden board with a star-shaped pattern, ten holes in each of its six arms, and a set of round pegs used to play Chinese checkers. In the box, there's a comprehensible explanation of how to play the game.", "weight": "2072 g", "volume": "4720 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -487,8 +487,8 @@ "description": "A somewhat large wooden box containing a rectangular wooden board with a series of small pits, as well as a number of game pieces that look like different colored beads. The board features two rows of pits, with each player controlling the row of pits closest to them. The game pieces are distributed evenly among the pits at the beginning of the game, and players take turns picking up and redistributing the pieces according to the rules. In the box, there's a comprehensible step-by-step guide on how to play.", "weight": "1313 g", "volume": "4668 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -503,8 +503,8 @@ "description": "A cardboard box containing a plastic grid with seven columns and six rows, and 42 colored discs, alongside a small booklet explaining how to play Four in a Row.", "weight": "680 g", "volume": "600 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "cardboard" ], "symbol": "?", "color": "brown", @@ -519,8 +519,8 @@ "description": "A cardboard box containing a grid, and various tiles akin to a classic deck of cards, alongside a booklet explaining how to play Rummy-o.", "weight": "907 g", "volume": "1000 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "cardboard" ], "symbol": "?", "color": "brown", @@ -535,8 +535,8 @@ "description": "A cardboard box containing a grid, and various round black and white pieces, alongside a booklet explaining how to play Reversi.", "weight": "900 g", "volume": "1300 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "cardboard" ], "symbol": "?", "color": "brown", @@ -551,8 +551,8 @@ "description": "A board game cardboard box containing a proper board, and various letter tiles, meant to play Scrabble Letters alone or with friends.", "weight": "907 g", "volume": "1000 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "cardboard" ], "symbol": "?", "color": "brown", @@ -567,8 +567,8 @@ "description": "A small and compact wooden box containing a set of round tokens used to play checkers. Perfect for casual play and travel.", "weight": "394 g", "volume": "750 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -584,7 +584,7 @@ "weight": "100 g", "volume": "500 ml", "price": "16 USD", - "price_postapoc": 500, + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -599,8 +599,8 @@ "description": "A set of cards meant to play the game \"Sorcery.\" Each card has a fun picture of a different monster.", "weight": "210 g", "volume": "250 ml", - "price": 2300, - "price_postapoc": 500, + "price": "23 USD", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "color": "blue", @@ -615,8 +615,8 @@ "description": "A game where one player draws an image, and the others attempt to guess what it is.", "weight": "350 g", "volume": "500 ml", - "price": 1500, - "price_postapoc": 500, + "price": "15 USD", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "?", "color": "yellow", @@ -631,8 +631,8 @@ "description": "A game where players traverse around the board, buying property and swindling their friends.", "weight": "300 g", "volume": "500 ml", - "price": 99, - "price_postapoc": 500, + "price": "99 cent", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "?", "color": "red", @@ -647,8 +647,8 @@ "description": "A roleplaying game set in the post-apocalypse, so you can pretend to survive the apocalypse while surviving the apocalypse.", "weight": "680 g", "volume": "1250 ml", - "price": 12950, - "price_postapoc": 500, + "price": "129 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "?", "color": "red", @@ -663,8 +663,8 @@ "description": "A roleplaying game set in the a fantasy medieval world with goblins and orcs. You can be a mage, a warrior, or a barbarian and go on epic adventures.", "weight": "680 g", "volume": "1250 ml", - "price": 12950, - "price_postapoc": 500, + "price": "129 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "?", "color": "red", @@ -679,8 +679,8 @@ "description": "A roleplaying game set in the Stone Age. There, you can choose different places in the world to start, select many different classes, and different species of hominids to survive the primitive world.", "weight": "680 g", "volume": "1250 ml", - "price": 12950, - "price_postapoc": 500, + "price": "129 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "?", "color": "red", @@ -695,8 +695,8 @@ "description": "A strategy game featuring a set of tiny figurines of fantasy creatures.", "weight": "680 g", "volume": "1250 ml", - "price": 10880, - "price_postapoc": 500, + "price": "108 USD 80 cent", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "?", "color": "yellow", @@ -711,8 +711,8 @@ "description": "A strategy game featuring a set of tiny figurines of space aliens and grotesque space marines.", "weight": "680 g", "volume": "1250 ml", - "price": 10880, - "price_postapoc": 500, + "price": "108 USD 80 cent", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "?", "color": "yellow", @@ -727,8 +727,8 @@ "description": "A strategy game where players build settlements and trade for supplies.", "weight": "804 g", "volume": "1250 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -743,8 +743,8 @@ "description": "A fun strategy board game where players (or just a player, since you can play this alone as a solitaire board game) attempt to improve their farms by plowing fields, sowing crops, raising livestock, and expanding their families. The game is set in the European farming community during the 17th century.", "weight": "904 g", "volume": "1350 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -759,8 +759,8 @@ "description": "A interesting strategy board game where players (or just a player, since you can play this alone as a solitaire board game) take roles of farmers in Ancient China, attempting to sell their crops at the market. The game revolves around managing resources, fulfilling orders, and expanding the farm to become the most successful farmer.", "weight": "904 g", "volume": "1350 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -775,8 +775,8 @@ "description": "A fun solo deck-building board game where a player takes on the role of Robinson Crusoe's mentor, trying to help him survive and escape from a deserted island. This game is played in rounds, with the player using their deck-building skills to improve Robinson's abilities and combat various challenges that arise during his time on the island.", "weight": "708 g", "volume": "1250 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -791,8 +791,8 @@ "description": "A thematic adventure board game designed for solo play. It is based on Jules Verne's classic novel '20,000 Leagues Under the Sea' and allows players to step into the role of Captain Nemo as they navigate the oceans, encounter various challenges, and make critical decisions that impact their journey.", "weight": "904 g", "volume": "1250 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -807,8 +807,8 @@ "description": "A highly strategic board game that combines elements of role-playing games with deck-building and traditional board game mechanics. Players (or a solo player) take on the roles of powerful Knights Mages who explore the land, conquer cities, and engage in epic battles against various enemies. The game features an intricate levelling system where players can enhance their characters' abilities and acquire new skills as they progress through the game.", "weight": "1120 g", "volume": "1850 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -823,8 +823,8 @@ "description": "A intriguing and critically acclaimed cooperative board game where players (or just the player, as it can be played alone as a solitaire board game) take on different roles with unique abilities as members of a disease control team. Their objective is to prevent global outbreaks and find cures for four deadly diseases before they escalate out of control.", "weight": "830 g", "volume": "1300 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -839,8 +839,8 @@ "description": "A strategy board game set in an alternate history, steampunk-themed world, where players assume the roles of workers, engineers, and factory owners in a fictional 1920's Eastern European country. This game focuses on area control, engine building, and resource management, as players aim to achieve victory through various paths, such as military conquest, building up their factories, or completing secret objectives. The best part? You can play it alone too.", "weight": "964 g", "volume": "1350 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -855,8 +855,8 @@ "description": "A cooperative board game designed for 1-4 players, where each player takes on the role of a powerful deity defending an island from colonizing invaders. Before the Cataclysm, inside the board gaming community, it was known for its deep strategic gameplay, thematic richness, and intricate mechanics.", "weight": "804 g", "volume": "1250 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -871,8 +871,8 @@ "description": "This board game is set in the 4300s, where corporations are working together to terraform the planet Mercury, the smallest and innermost planet in our solar system. Each player (or just the player) will have unique abilities and resources at their disposal, and they will need to strategize and cooperate with one another to achieve their goals.", "weight": "1104 g", "volume": "1500 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -934,8 +934,8 @@ "description": "A fun strategy board game that simulates the experience of running a vineyard in Tuscany, Italy. Players take on the roles of vineyard owners who must plant vines, harvest grapes, produce wine, and fulfill orders to earn victory points. The game is played over several seasons, with players making strategic decisions about which actions to take each season to maximize their vineyard's productivity and efficiency.", "weight": "904 g", "volume": "1350 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -950,8 +950,8 @@ "description": "In this great strategy board game, players (or the player) assume the role of a Viking chieftain, aiming to expand their territory, amass wealth, and gain favor with the Norse gods. Players take turns performing actions, such as exploring new territories, constructing buildings, raiding settlements, and trading goods.", "weight": "1004 g", "volume": "1250 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -966,8 +966,8 @@ "description": "A great strategy board game set in the 18th century in the East Frisia region of Germany, where players (or the player) take on the roles of farmers who are developing their farms and expanding their resources.", "weight": "904 g", "volume": "1250 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -982,8 +982,8 @@ "description": "A great cooperation-focused fantasy board game set in a dark and evolving fantasy world where players take on the roles of mercenaries seeking fortune and glory in the city of Emporium and its surrounding areas. This game is characterized by its legacy-style gameplay, which means that decisions made during one play session can have lasting effects on future sessions. Players must work together to explore dungeons, battle monsters, complete quests, and make choices that shape the narrative and outcome of their campaign.", "weight": "904 g", "volume": "1250 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -998,8 +998,8 @@ "description": "A strategy board game where players (or the player) aim to amass wealth and construct buildings to expand their harbors while carefully managing their resources in the fictitious French region of Le Pourt. This game involves strategic decision-making as players must balance their investments in buildings, ships, and resources to maximize their profits.", "weight": "904 g", "volume": "1250 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -1014,8 +1014,8 @@ "description": "A cooperative horror board game set in the Lovecraftian Universe. It offers an immersive gameplay experience where players work together to solve mysteries and confront otherworldly horrors. This game is scenario-based, with each scenario presenting a unique narrative and set of challenges for the players to overcome. Players must explore the game board, gather clues, solve puzzles, and engage in combat encounters while uncovering the secrets hidden within the mansion or other eerie locations.", "weight": "804 g", "volume": "1250 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -1030,8 +1030,8 @@ "description": "A strategic board game that simulates the rise and fall of nations. A great civilization-building game designed for 1-4 players. Each player takes on the role of leading an ancient civilization, making strategic decisions to develop their nation over the course of several ages. This game involves managing resources, constructing buildings, and competing with other players to achieve dominance in various aspects such as military strength, culture, and economy.", "weight": "904 g", "volume": "1260 ml", - "price": 7050, - "price_postapoc": 500, + "price": "70 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "light_blue", @@ -1046,8 +1046,8 @@ "description": "A wooden box containing all the pieces needed to play a game of senet, along with a rule booklet. A board game from ancient Egypt, Senet plays like modern chess with a 3x10 grid and a smaller amount of pieces.", "weight": "800 g", "volume": "2630 ml", - "price": 4300, - "price_postapoc": 500, + "price": "43 USD", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -1062,8 +1062,8 @@ "description": "A very beautiful, and really huge plastic box, containing all the pieces needed to play a game of mahjong, along with a poorly-translated but comprehensible rule booklet. Mahjong is a tile-based game where you need to match pieces into winning hands to earn points.", "weight": "4000 g", "volume": "4345 ml", - "price": 3600, - "price_postapoc": 500, + "price": "36 USD", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "?", "color": "brown", @@ -1078,8 +1078,8 @@ "description": "A polished wooden box containing all the pieces needed to play a game of chaturanga chess, along with a rule booklet. Chaturanga is an ancient Indian strategy game, the ancestor of many other chess variations - European, Chinese, Japanese, and other regional variants of chess owe it their origin.", "weight": "2593 g", "volume": "5719 ml", - "price": 4500, - "price_postapoc": 500, + "price": "45 USD", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -1094,8 +1094,8 @@ "description": "A very nice dark wooden box containing all the pieces needed to play a game of backgammon, along with a handwritten set of rules. The objective of the game is to be the first to remove all fifteen of your own pieces from the board.", "weight": "1560 g", "volume": "3073 ml", - "price": 2850, - "price_postapoc": 500, + "price": "28 USD 50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "black", @@ -1110,8 +1110,8 @@ "description": "A small wooden box containing all the pieces needed to play a game of latrunculi, along with a rule booklet. Latrunculi was played throughout the Roman Empire, and requires a lot of tactics and strategy.", "weight": "350 g", "volume": "1977 ml", - "price": 2680, - "price_postapoc": 500, + "price": "26 USD 80 cent", + "price_postapoc": "5 USD", "material": [ "paper", "paper", "plastic" ], "symbol": "?", "color": "brown", @@ -1126,8 +1126,8 @@ "weight": "780 g", "description": "A wooden box containing all the pieces needed to play a game of go, along with a bilingual English/Mandarin rule booklet. Go is a two-player game where each player tries to grab more territory than their opponent.", "volume": "1299 ml", - "price": 4670, - "price_postapoc": 500, + "price": "46 USD 70 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -1142,8 +1142,8 @@ "description": "A wooden box containing all the pieces needed to play a game of shogi, along with a bilingual English/Japanese rule booklet. Also known as Japanese chess, shogi was one of the most popular board games in Japan before the Cataclysm. The main objective is to tsumi (checkmate) the opponent's osho (king).", "weight": "2571 g", "volume": "3033 ml", - "price": 5900, - "price_postapoc": 500, + "price": "59 USD", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -1158,8 +1158,8 @@ "description": "A wooden box containing all the pieces needed to play a game of hnefatafl, along with a rule booklet that features heavy use of Norse runes. Also called 'Viking Chess', it was a popular game in medieval Scandinavia. The player controlling the attackers (located on the sides of the board), wins by capturing the defender's king, while the defender wins by getting the king to one of the four corners of the board.", "weight": "900 g", "volume": "5420 ml", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -1174,8 +1174,8 @@ "description": "A wooden box containing all the pieces needed to play a game of alquerque, along with a rule booklet. Alquerque is of Middle Eastern origin, and is an ancestor to checkers and Fanorona.", "weight": "880 g", "volume": "2774 ml", - "price": 2500, - "price_postapoc": 500, + "price": "25 USD", + "price_postapoc": "5 USD", "material": [ "cardboard" ], "symbol": "?", "color": "brown", @@ -1190,8 +1190,8 @@ "description": "A wooden box containing all the pieces needed to play a game of dominoes. The pieces of this one are perfectly handmade in light wood.", "weight": "120 g", "volume": "241 ml", - "price": 50, - "price_postapoc": 500, + "price": "50 cent", + "price_postapoc": "5 USD", "material": [ "wood" ], "symbol": "?", "color": "brown", @@ -1206,8 +1206,8 @@ "description": "A cardboard tube containing 60 pieces in various colors for playing a casual pick-up sticks game alone or with friends. The rules and different values of each color are printed on the tube.", "weight": "82 g", "volume": "798 ml", - "price": 50, - "price_postapoc": 500, + "price": "50 cent", + "price_postapoc": "5 USD", "material": [ "wood", "cardboard" ], "symbol": "?", "color": "brown", @@ -1222,8 +1222,8 @@ "description": "A board game for two or more players, regarded before the Cataclysm as as a worldwide classic. The objective of the game is to navigate one's game piece to the goal on the board, helped by climbing ladders but hindered by sliding down snakes.", "weight": "300 g", "volume": "1800 ml", - "price": 25, - "price_postapoc": 500, + "price": "25 cent", + "price_postapoc": "5 USD", "material": [ "cardboard" ], "symbol": "?", "color": "green", @@ -1238,8 +1238,8 @@ "description": "A strategy board game for two to four players, in which the players race their four tokens from start to finish according to the rolls of a single die.", "weight": "420 g", "volume": "2981 ml", - "price": 25, - "price_postapoc": 500, + "price": "25 cent", + "price_postapoc": "5 USD", "material": [ "cardboard" ], "symbol": "?", "color": "white", @@ -1254,8 +1254,8 @@ "description": "A game of chance featuring a silly-looking pirate inside a spring-loaded barrel. Players take turns inserting plastic swords into slots in the barrel, hoping to avoid the trigger slot that causes the pirate to be launched out of the barrel.", "weight": "1500 g", "volume": "8519 ml", - "price": 25, - "price_postapoc": 500, + "price": "25 cent", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "?", "color": "brown", @@ -1270,8 +1270,8 @@ "description": "A board wargame that can be played alone or with friends. When playing alone, the opponent's actions are chosen via tables, charts, and a 'paragraph book'.", "weight": "1020 g", "volume": "3363 ml", - "price": 25, - "price_postapoc": 500, + "price": "25 cent", + "price_postapoc": "5 USD", "material": [ "cardboard" ], "symbol": "?", "color": "green", @@ -1286,8 +1286,8 @@ "description": "A tactical solitaire board game. The player is put in the role of a patrol leader in different modern battlefield scenarios, performing missions, capturing or killing enemies, protecting their teammates, and advancing on the map.", "weight": "1090 g", "volume": "5112 ml", - "price": 25, - "price_postapoc": 500, + "price": "25 cent", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "color": "brown", @@ -1302,8 +1302,8 @@ "description": "A tactical solitaire board game. The player controls a platoon of tanks in six different scenarios with various victory conditions. The player travels across the map, entering combat when an 'event marker' comes into their line of sight.", "weight": "840 g", "volume": "3660 ml", - "price": 25, - "price_postapoc": 500, + "price": "25 cent", + "price_postapoc": "5 USD", "material": [ "cardboard" ], "symbol": "?", "color": "brown", @@ -1318,8 +1318,8 @@ "description": "A game where players try to guess where the opponent placed their ships on the board.", "weight": "450 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "?", "color": "blue", @@ -1334,8 +1334,8 @@ "description": "A game where players try to figure out who murdered the butler.", "weight": "370 g", "volume": "500 ml", - "price": 2480, - "price_postapoc": 500, + "price": "24 USD 80 cent", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "color": "blue", @@ -1350,8 +1350,8 @@ "description": "An old, nondescript North American Cylinder key. Lord knows what lock it goes to; best not to bother with it.", "weight": "8 g", "volume": "2 ml", - "price": 750, - "price_postapoc": 1, + "price": "7 USD 50 cent", + "price_postapoc": "1 cent", "material": [ "brass" ], "symbol": "p", "color": "dark_gray" @@ -1365,8 +1365,8 @@ "weight": "52 g", "volume": "13 ml", "longest_side": "9 cm", - "price": 2200, - "price_postapoc": 5, + "price": "22 USD", + "price_postapoc": "5 cent", "material": [ "steel" ], "symbol": "-", "color": "yellow", @@ -1380,8 +1380,8 @@ "description": "A small tube meant to cut a hole in the end of a cigar.", "weight": "25 g", "volume": "20 ml", - "price": 1200, - "price_postapoc": 0, + "price": "12 USD", + "price_postapoc": "0 cent", "material": [ "steel" ], "symbol": "o", "color": "light_gray", @@ -1394,8 +1394,8 @@ "description": "A sturdy steel briefcase, containing what appears to be an old-fashioned drum seismograph. The stenciled acronyms of its outer case imply it was used by XEDRA as some sort of recording device.\n\nThin parallel lines cover both ends of the drum, but as they approach the middle their vibrations intensify, until the ink fuses into a thick red stain.", "weight": "5000 g", "volume": "15750 ml", - "price": 24000, - "price_postapoc": 50, + "price": "240 USD", + "price_postapoc": "50 cent", "to_hit": -4, "material": [ "steel" ], "symbol": "?", @@ -1427,8 +1427,8 @@ "weight": "2 g", "volume": "50 ml", "longest_side": "17 cm", - "price": 10, - "price_postapoc": 2, + "price": "10 cent", + "price_postapoc": "2 cent", "count": 10, "material": [ "wood" ], "symbol": "i", @@ -1442,8 +1442,8 @@ "description": "A short writ featuring the signed agreement of establishing a trade route.", "weight": "1 g", "volume": "5 ml", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -1460,8 +1460,8 @@ "weight": "9 g", "volume": "10 ml", "longest_side": "16 cm", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "I", "color": "cyan" @@ -1473,8 +1473,8 @@ "description": "A small eraser used to clear up unwanted pencil handwriting.", "weight": "4 g", "volume": "10 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "o", "color": "white" @@ -1486,8 +1486,8 @@ "description": "A small sharpener used to keep pencils in working order.", "weight": "7 g", "volume": "10 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "o", "color": "light_gray" @@ -1499,8 +1499,8 @@ "description": "A non-slip mat with a welcoming message. Once used to keep a house clean and inviting.", "weight": "2200 g", "volume": "3 L", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "_", "color": "brown" @@ -1542,8 +1542,8 @@ "name": { "str": "post-it note" }, "snippet_category": "LIXA_lab_notes", "description": "A cyan post-it note.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID" ], "copy-from": "lab_postit_bio" @@ -1558,8 +1558,8 @@ "weight": "600 g", "volume": "400 ml", "looks_like": "philosophy_book", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "symbol": "i", "color": "dark_gray", "flags": [ "NO_SALVAGE" ] @@ -1574,8 +1574,8 @@ "weight": "150 g", "volume": "100 ml", "looks_like": "apple", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "symbol": "i", "color": "dark_gray", "flags": [ "NO_SALVAGE" ] @@ -1589,8 +1589,8 @@ "material": [ "glass" ], "weight": "350 g", "volume": "500 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "symbol": "i", "color": "dark_gray", "flags": [ "NO_SALVAGE" ] @@ -1617,8 +1617,8 @@ "copy-from": "paper", "name": { "str_sp": "sketch" }, "description": "A piece of graphite-based artwork someone has drawn on a spare sheet of paper.", - "price": 0, - "price_postapoc": 500, + "price": "0 cent", + "price_postapoc": "5 USD", "variants": [ { "id": "sketch_goofy_doodles", @@ -1658,8 +1658,8 @@ "copy-from": "sheet_canvas", "name": { "str_sp": "painting" }, "description": "A painting that someone has made.", - "price": 10000, - "price_postapoc": 20000, + "price": "100 USD", + "price_postapoc": "200 USD", "variants": [ { "id": "painting_character", @@ -1700,8 +1700,8 @@ "weight": "7884 g", "volume": "20813 ml", "longest_side": "30 cm", - "price": 100000, - "price_postapoc": 30000, + "price": "1 kUSD", + "price_postapoc": "300 USD", "to_hit": -2, "variants": [ { @@ -1751,8 +1751,8 @@ "weight": "150 g", "volume": "94 ml", "longest_side": "30 cm", - "price": 80000, - "price_postapoc": 15000, + "price": "800 USD", + "price_postapoc": "150 USD", "to_hit": -2, "variants": [ { diff --git a/data/json/items/fuel.json b/data/json/items/fuel.json index 21ab6535d9b6b..43c6a2c62cfcc 100644 --- a/data/json/items/fuel.json +++ b/data/json/items/fuel.json @@ -6,8 +6,8 @@ "description": "Extremely pure alcohol suitable for use as a component in chemical reactions. You could also water it down and drink it, or use it as fuel in an alcohol-burning stove.", "weight": "1 g", "volume": "200ml", - "price": 200, - "price_postapoc": 500, + "price": "2 USD", + "price_postapoc": "5 USD", "count": 250, "stack_size": 200, "category": "chems", @@ -24,8 +24,8 @@ "copy-from": "chem_ethanol", "type": "AMMO", "description": "A high-strength ethanol solution mixed with methanol to make it toxic to drink, so as to avoid pre-apocalyptic regulations on ethanol. Intended for use in alcohol-burning stoves and as a solvent.", - "price": 10, - "price_postapoc": 300 + "price": "10 cent", + "price_postapoc": "3 USD" }, { "id": "denat_alcohol", @@ -33,8 +33,8 @@ "copy-from": "chem_ethanol", "type": "AMMO", "description": "A high-strength ethanol solution mixed with denatonium benzoate to make it impossibly bitter to drink, so as to avoid pre-apocalyptic regulations on ethanol. Intended for use in alcohol-burning stoves and as a solvent.", - "price": 10, - "price_postapoc": 300 + "price": "10 cent", + "price_postapoc": "3 USD" }, { "id": "chem_methanol", @@ -42,8 +42,8 @@ "copy-from": "chem_ethanol", "type": "AMMO", "description": "High-purity methanol suitable for use in chemical reactions. Could also be used as fuel in an alcohol-burning stove. Very toxic.", - "price": 5, - "price_postapoc": 100 + "price": "5 cent", + "price_postapoc": "1 USD" }, { "id": "chem_methanol_fuelcell", @@ -64,8 +64,8 @@ "category": "fuel", "weight": "850 mg", "volume": "200ml", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "count": 250, "stack_size": 200, "phase": "liquid", @@ -86,8 +86,8 @@ "category": "fuel", "weight": "840 mg", "volume": "200ml", - "price": 50, - "price_postapoc": 100, + "price": "50 cent", + "price_postapoc": "1 USD", "looks_like": "diesel", "count": 250, "stack_size": 200, @@ -109,8 +109,8 @@ "category": "fuel", "weight": "690 mg", "volume": "200ml", - "price": 50, - "price_postapoc": 80, + "price": "50 cent", + "price_postapoc": "80 cent", "count": 250, "stack_size": 200, "phase": "liquid", @@ -132,8 +132,8 @@ "material": [ "biodiesel" ], "type": "AMMO", "description": "Vegetable oil- or animal fat-based diesel fuel consisting of long-chain alkyl (methyl, ethyl, or propyl) esters.", - "price": 30, - "price_postapoc": 60 + "price": "30 cent", + "price_postapoc": "60 cent" }, { "id": "gasoline", @@ -143,8 +143,8 @@ "category": "fuel", "weight": "750 mg", "volume": "200ml", - "price": 40, - "price_postapoc": 125, + "price": "40 cent", + "price_postapoc": "1 USD 25 cent", "count": 250, "stack_size": 200, "phase": "liquid", @@ -165,8 +165,8 @@ "category": "fuel", "weight": "810 mg", "volume": "200ml", - "price": 20, - "price_postapoc": 200, + "price": "20 cent", + "price_postapoc": "2 USD", "count": 250, "stack_size": 200, "phase": "liquid", @@ -188,8 +188,8 @@ "category": "fuel", "weight": "950 mg", "volume": "200ml", - "price": 20, - "price_postapoc": 200, + "price": "20 cent", + "price_postapoc": "2 USD", "count": 250, "stack_size": 200, "phase": "liquid", @@ -211,8 +211,8 @@ "category": "fuel", "weight": "900 mg", "volume": "200ml", - "price": 8000, - "price_postapoc": 1000, + "price": "80 USD", + "price_postapoc": "10 USD", "count": 250, "stack_size": 200, "phase": "liquid", @@ -231,8 +231,8 @@ "name": { "str_sp": "gelled gasoline" }, "copy-from": "gasoline", "description": "A flammable gel composed of gasoline and dissolved shavings of polystyrene, roughly similar in properties to napalm B. It's meant to be used as flamethrower fuel.", - "price": 400, - "price_postapoc": 500, + "price": "4 USD", + "price_postapoc": "5 USD", "ammo_type": "flammable", "damage": { "damage_type": "heat", "amount": 10, "armor_penetration": 10 }, "range": 3 @@ -243,8 +243,8 @@ "name": { "str_sp": "flamethrower fuel" }, "copy-from": "gasoline", "description": "A mixture of gasoline and diesel oil in equal parts. Its combustion properties make it unfit for applications where you would use any of them separately, but it can be used to feed a flamethrower.", - "price": 400, - "price_postapoc": 500, + "price": "4 USD", + "price_postapoc": "5 USD", "ammo_type": "flammable", "range": 0 }, @@ -256,8 +256,8 @@ "weight": "493 mg", "//": "Density of propane gas at 25C is 1.808 kg/m3, liquid propane at 25C is 0.493 g/cm3, propane tanks are pressurized enough to turn it liquid.", "volume": "200ml", - "price": 200, - "price_postapoc": 500, + "price": "2 USD", + "price_postapoc": "5 USD", "count": 250, "stack_size": 200, "category": "chems", @@ -275,8 +275,8 @@ "name": { "str_sp": "biogas" }, "copy-from": "propane", "description": "Biogas gathered from anaerobic digester system, can be used in biogas cooker.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "container": "small_biogas_tank", "material": [ "hydrocarbons" ], "ammo_type": "biogas" @@ -288,8 +288,8 @@ "description": "Oil of turpentine, distilled from pine resin or crude oil.", "weight": "1 g", "volume": "200ml", - "price": 200, - "price_postapoc": 500, + "price": "2 USD", + "price_postapoc": "5 USD", "count": 200, "stack_size": 200, "category": "chems", @@ -310,8 +310,8 @@ "description": "A blend of turpentine and ethanol, historically used as the successor to whale oil for lamps before kerosene.", "weight": "1 g", "volume": "200ml", - "price": 200, - "price_postapoc": 500, + "price": "2 USD", + "price_postapoc": "5 USD", "count": 200, "stack_size": 200, "category": "chems", @@ -333,8 +333,8 @@ "category": "fuel", "weight": "810 mg", "volume": "200ml", - "price": 20, - "price_postapoc": 200, + "price": "20 cent", + "price_postapoc": "2 USD", "count": 250, "stack_size": 200, "phase": "liquid", diff --git a/data/json/items/furniture/decorative.json b/data/json/items/furniture/decorative.json index 6fa7eae5851f9..f87c285b648a4 100644 --- a/data/json/items/furniture/decorative.json +++ b/data/json/items/furniture/decorative.json @@ -25,8 +25,8 @@ "weight": "300 kg", "material": [ "wood" ], "volume": "1000 L", - "price": 500000, - "price_postapoc": 1500, + "price": "5 kUSD", + "price_postapoc": "15 USD", "symbol": "P", "color": "i_black" } diff --git a/data/json/items/furniture/seating.json b/data/json/items/furniture/seating.json index 1cb1461d55baf..fa8ae595dda30 100644 --- a/data/json/items/furniture/seating.json +++ b/data/json/items/furniture/seating.json @@ -7,8 +7,8 @@ "symbol": "#", "color": "brown", "flags": [ "NO_SALVAGE", "FRAGILE_MELEE" ], - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "longest_side": "95 cm", "volume": "30 L", "weight": "12 kg", @@ -23,8 +23,8 @@ "symbol": "H", "color": "green", "flags": [ "NO_SALVAGE" ], - "price": 25000, - "price_postapoc": 1500, + "price": "250 USD", + "price_postapoc": "15 USD", "longest_side": "110 cm", "volume": "570 L", "weight": "27 kg", @@ -39,8 +39,8 @@ "symbol": "#", "color": "brown", "flags": [ "NO_SALVAGE", "FRAGILE_MELEE" ], - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "longest_side": "45 cm", "volume": "17 L", "weight": "3 kg", @@ -55,8 +55,8 @@ "symbol": "#", "color": "brown", "flags": [ "NO_SALVAGE" ], - "price": 0, - "price_postapoc": 1, + "price": "0 cent", + "price_postapoc": "1 cent", "longest_side": "50 cm", "volume": "20 L", "weight": "11 kg", @@ -70,8 +70,8 @@ "description": "A bar stool with a leather seat on a steel support. Not practical for sleeping at all but it does feel nicer than sitting on the ground.", "symbol": "p", "color": "light_gray", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "longest_side": "80 cm", "volume": "30 L", "weight": "7500 g", @@ -86,8 +86,8 @@ "symbol": "#", "color": "brown", "flags": [ "FRAGILE_MELEE" ], - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "longest_side": "80 cm", "volume": "30 L", "weight": "5 kg", diff --git a/data/json/items/furniture/storage.json b/data/json/items/furniture/storage.json index c4f776e4cb303..dfe264e7cf7bd 100644 --- a/data/json/items/furniture/storage.json +++ b/data/json/items/furniture/storage.json @@ -13,7 +13,7 @@ "volume": "69 L", "longest_side": "69 cm", "price": "200 USD", - "price_postapoc": 75, + "price_postapoc": "75 cent", "pocket_data": [ { "pocket_type": "CONTAINER", diff --git a/data/json/items/generic.json b/data/json/items/generic.json index 1fed1f3cf782d..698bd748185ee 100644 --- a/data/json/items/generic.json +++ b/data/json/items/generic.json @@ -8,7 +8,7 @@ "name": { "str_sp": "animal" }, "description": "seeing this is a bug", "stackable": true, - "price": 0, + "price": "0 cent", "volume": "1 L", "material": [ "animal" ], "flags": [ "PSEUDO", "PERPETUAL" ] @@ -21,7 +21,7 @@ "color": "red", "name": { "str_sp": "nearby fire" }, "description": "seeing this is a bug", - "price": 0, + "price": "0 cent", "volume": "1 ml", "flags": [ "PSEUDO" ] }, @@ -34,8 +34,8 @@ "color": "white", "symbol": "%", "description": "A fluffy white seed. While it looks like the common cotton, it is too weak and short to be turned into clothing.", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "wood" ], "volume": "250 ml" }, @@ -48,7 +48,7 @@ "name": { "str_sp": "muscle" }, "description": "seeing this is a bug", "stackable": true, - "price": 0, + "price": "0 cent", "volume": "1 L", "material": [ "muscle" ], "flags": [ "PSEUDO", "PERPETUAL" ] @@ -62,7 +62,7 @@ "name": { "str_sp": "wind" }, "description": "seeing this is a bug", "stackable": true, - "price": 0, + "price": "0 cent", "volume": "1 L", "material": [ "wind" ], "flags": [ "PSEUDO", "PERPETUAL" ] @@ -76,7 +76,7 @@ "name": { "str_sp": "sun light" }, "description": "seeing this is a bug", "stackable": true, - "price": 0, + "price": "0 cent", "volume": "1 L", "material": [ "sunlight" ], "flags": [ "PSEUDO", "PERPETUAL" ] @@ -90,7 +90,7 @@ "name": { "str": "metabolism" }, "description": "seeing this is a bug", "stackable": true, - "price": 0, + "price": "0 cent", "volume": "1 L", "material": [ "metabolism" ], "flags": [ "PSEUDO", "PERPETUAL" ] @@ -103,7 +103,7 @@ "color": "red", "name": { "str_sp": "a smoking device and a source of flame" }, "description": "seeing this is a bug", - "price": 0, + "price": "0 cent", "volume": "0 ml", "flags": [ "PSEUDO" ] }, @@ -114,7 +114,7 @@ "color": "red", "name": { "str_sp": "none" }, "description": "seeing this is a bug", - "price": 0, + "price": "0 cent", "volume": "0 ml", "flags": [ "PSEUDO" ], "//": "Fist is internally represented as 'wielding a none as a weapon'" @@ -239,8 +239,8 @@ "color": "pink", "name": { "str": "Foodplace loyalty card" }, "description": "A bright pink loyalty card, all the points are stamped. This would definitely prove your fidelity to Foodplace, if that still meant anything…", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID", "CREDIT_CARD_SHAPED", "TINDER" ], "weight": "3 g", @@ -293,8 +293,8 @@ "color": "white", "name": { "str_sp": "superglue" }, "description": "A tube of strong glue. Used in many crafting recipes.", - "price": 1800, - "price_postapoc": 100, + "price": "18 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "weight": "8 g", "volume": "10 ml", @@ -310,8 +310,8 @@ "name": { "str_sp": "rubber cement" }, "looks_like": "superglue", "description": "A tin of adhesive typically used to glue rubber together. It forms a less rigid bond than typical superglue, making it ideal for projects requiring flexibility. Typically smelly and toxic.", - "price": 1800, - "price_postapoc": 80, + "price": "18 USD", + "price_postapoc": "80 cent", "material": [ "plastic" ], "weight": "52 g", "volume": "250 ml", @@ -326,8 +326,8 @@ "color": "brown", "name": { "str": "bone glue" }, "description": "Glue made from boiling animal bones. The adhesive isn't strong enough for heavy-duty usages, but it can be used as a varnish or holding together small items.", - "price": 1800, - "price_postapoc": 50, + "price": "18 USD", + "price_postapoc": "50 cent", "material": [ "bone" ], "weight": "45 g", "volume": "150 ml", @@ -357,9 +357,9 @@ "techniques": [ "WRAP" ], "volume": "1 L", "to_hit": -2, - "price": 8000, + "price": "80 USD", "qualities": [ [ "ROPE", 2 ] ], - "price_postapoc": 50, + "price_postapoc": "50 cent", "melee_damage": { "bash": 26 } }, { @@ -371,8 +371,8 @@ "name": { "str": "chunk of chitin", "str_pl": "chunks of chitin" }, "snippet_category": "chitin_desc", "description": "A piece of an insect's exoskeleton. It is light and very durable.", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "material": [ "chitin" ], "flags": [ "NO_SALVAGE" ], "milling": { "into": "meal_chitin_piece", "recipe": "meal_chitin_piece_mill_1_4" }, @@ -390,7 +390,7 @@ "name": { "str": "strand of endochitin", "str_pl": "strands of endochitin" }, "snippet_category": "endochitin_desc", "description": "A piece of an insect's endoskeleton.", - "price": 0, + "price": "0 cent", "material": [ "chitin" ], "flags": [ "NO_SALVAGE" ], "milling": { "into": "meal_chitin_piece", "recipe": "meal_chitin_piece_mill_1_4" }, @@ -406,7 +406,7 @@ "color": "light_gray", "name": { "str": "cluster of gas sacs", "str_pl": "clusters of gas sacs" }, "description": "A cluster of membranous bubbles, each about the size of a grape, retrieved from inside a mutant insect. They float like tiny helium balloons - perhaps they are full of a lighter-than-air gas.", - "price": 0, + "price": "0 cent", "material": [ "flesh" ], "spoils_in": "8 hours", "flags": [ "NO_SALVAGE" ], @@ -423,7 +423,7 @@ "color": "light_gray", "name": { "str": "ballast organs", "str_pl": "clusters of ballast organs" }, "description": "A cluster of hydrostatic organs, each about the size of a baseball, retrieved from inside a kraken mutant. Some of them seem to be lighter than air, and some seem to weigh as much as air.", - "price": 0, + "price": "0 cent", "material": [ "flesh" ], "flags": [ "NO_SALVAGE" ], "weight": "50 g", @@ -448,8 +448,8 @@ "description": "A hundred cotton patches, bundled tightly together for storage. Disassemble to unpack.", "weight": "500 g", "volume": "500 ml", - "price": 20000, - "price_postapoc": 200, + "price": "200 USD", + "price_postapoc": "2 USD", "material": [ "cotton" ], "symbol": ",", "color": "white" @@ -462,8 +462,8 @@ "description": "Twenty-five cotton sheets, bundled tightly together for storage. Disassemble to unpack.", "weight": "950 g", "volume": "1000 ml", - "price": 20000, - "price_postapoc": 200, + "price": "200 USD", + "price_postapoc": "2 USD", "material": [ "cotton" ], "symbol": ",", "color": "white" @@ -476,8 +476,8 @@ "description": "Fifty leather patches, bundled tightly together for storage. Disassemble to unpack.", "weight": "1250 g", "volume": "1150 ml", - "price": 200000, - "price_postapoc": 2500, + "price": "2 kUSD", + "price_postapoc": "25 USD", "material": [ "leather" ], "symbol": ",", "color": "brown" @@ -490,8 +490,8 @@ "description": "A hundred felt patches, bundled tightly together for storage. Disassemble to unpack.", "weight": "300 g", "volume": "1 L", - "price": 200000, - "price_postapoc": 1000, + "price": "2 kUSD", + "price_postapoc": "10 USD", "material": [ "wool" ], "symbol": ",", "color": "white" @@ -506,8 +506,8 @@ "weight": "287500 mg", "//2": "Volume is 50 x 5ml per patch", "volume": "250 ml", - "price": 0, - "price_postapoc": 500, + "price": "0 cent", + "price_postapoc": "5 USD", "material": [ "nylon" ], "symbol": ",", "color": "white" @@ -522,8 +522,8 @@ "volume": "41300 ml", "weight": "24400 g", "longest_side": "122 cm", - "price": 10000, - "price_postapoc": 100, + "price": "100 USD", + "price_postapoc": "1 USD", "material": [ "wood" ], "symbol": "H", "color": "brown" @@ -538,8 +538,8 @@ "volume": "1600 ml", "weight": "12500 g", "longest_side": "80 cm", - "price": 75000, - "price_postapoc": 250, + "price": "750 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "H", "color": "light_gray" @@ -555,7 +555,7 @@ "weight": "6432 g", "longest_side": "60 cm", "price": "380 USD", - "price_postapoc": 100, + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "H", "color": "dark_gray" @@ -570,8 +570,8 @@ "volume": "3700 ml", "weight": "3400 g", "longest_side": "60 cm", - "price": 100, - "price_postapoc": 100, + "price": "1 USD", + "price_postapoc": "1 USD", "material": [ "copper" ], "symbol": "H", "color": "light_red" @@ -586,8 +586,8 @@ "volume": "30 L", "weight": "15 kg", "longest_side": "130 cm", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "material": [ "wood" ], "symbol": "H", "color": "brown" @@ -602,8 +602,8 @@ "volume": "30 L", "weight": "15 kg", "longest_side": "260 cm", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "material": [ "wood" ], "symbol": "H", "color": "brown" @@ -618,8 +618,8 @@ "volume": "7 L", "weight": "3 kg", "longest_side": "140 cm", - "price": 20000, - "price_postapoc": 1250, + "price": "200 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "wood" ], "symbol": "H", "color": "brown" @@ -632,8 +632,8 @@ "color": "light_gray", "name": { "str": "t-substrate sample" }, "description": "An acrylic cube cast around a small black crystal. It's tepid to the touch.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "stone" ], "weight": "100 g", "volume": "250 ml", @@ -647,8 +647,8 @@ "color": "magenta", "name": { "str": "biollante bud" }, "description": "An unopened biollante flower, brilliant purple in color. It may still have its sap-producing organ intact.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "veggy" ], "weight": "60 g", "volume": "250 ml", @@ -687,8 +687,8 @@ "color": "dark_gray", "name": { "str": "petrified eye" }, "description": "A fist-sized eyeball with a cross-shaped pupil. It seems to be made of stone, but doesn't look like it was carved.", - "price": 200000, - "price_postapoc": 1000, + "price": "2 kUSD", + "price_postapoc": "10 USD", "material": [ "stone" ], "weight": "700 g", "volume": "250 ml", @@ -704,8 +704,8 @@ "name": { "str": "spiral stone" }, "category": "artifacts", "description": "A rock the size of your fist. It is covered with intricate spirals; it is impossible to tell whether they are carved, naturally formed, or some kind of fossil.", - "price": 20000, - "price_postapoc": 1000, + "price": "200 USD", + "price_postapoc": "10 USD", "material": [ "stone" ], "weight": "493 g", "volume": "250 ml", @@ -721,7 +721,7 @@ "name": { "str": "USB drive" }, "description": "A USB thumb drive. Useful for holding software.", "price": "12 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "material": [ "plastic", "aluminum" ], "weight": "4536 mg", "volume": "4 ml", @@ -746,8 +746,8 @@ "color": "white", "name": { "str": "secured USB drive" }, "description": "A USB thumb drive. Useful for holding software. This one seems like it could get run over by a truck and be fine.", - "price": 10000, - "price_postapoc": 10, + "price": "100 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "55 g", "volume": "45 ml", @@ -759,8 +759,8 @@ "copy-from": "usb_drive_nano", "name": { "str_sp": "laboratory shipping records" }, "description": "Some type of advanced data storage device, filled with logistical data on subterranean train routes and schedules.", - "price": 10000, - "price_postapoc": 0 + "price": "100 USD", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -768,8 +768,8 @@ "copy-from": "usb_drive_nano", "name": { "str_sp": "LIXA research archive backup" }, "description": "A secured USB thumb drive, containing a copy of the LIXA facility's research archives.", - "price": 10000, - "price_postapoc": 0 + "price": "100 USD", + "price_postapoc": "0 cent" }, { "id": "robofac_hardcase", @@ -779,7 +779,7 @@ "weight": "1202 g", "volume": "7958 ml", "longest_side": "30 cm", - "price": 0, + "price": "0 cent", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "uneven" }, "material": [ "steel", "thermo_resin" ], "symbol": "?", @@ -795,8 +795,8 @@ "color": "white", "name": { "str_sp": "FEMA data" }, "description": "Evacuation plans, disaster risk projections, personnel lists, and last-minute communications from just before the end, all scrubbed from FEMA servers and stored in an external HDD.", - "price": 10000, - "price_postapoc": 50, + "price": "100 USD", + "price_postapoc": "50 cent", "material": [ "plastic" ], "weight": "30 g", "volume": "250 ml", @@ -808,8 +808,8 @@ "//": "Quest item, should not spawn naturally.", "name": { "str_sp": "accounting records" }, "description": "A stack of various forms and papers with credits and debits listed all over them, detailing transactions and purchases. Reading over them, all of the balances are mismatched, and a significant amount of money is missing.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "1 g", "volume": "1 ml", "to_hit": -3, @@ -823,8 +823,8 @@ "//": "Quest item, should not spawn naturally.", "name": { "str_sp": "accounting records" }, "description": "A stack of various forms and papers with credits and debits listed all over them, detailing transactions and purchases. Reading over them, everything is in good order, whoever did these is skilled at their job.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "1 g", "volume": "1 ml", "to_hit": -3, @@ -841,7 +841,7 @@ "description": "A brass candlestick with a gold finish.", "category": "other", "price": "5 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "material": [ "brass" ], "weight": "180 g", "volume": "100 ml", @@ -872,7 +872,7 @@ "volume": "330 ml", "longest_side": "12 cm", "price": "19 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "symbol": "/", "color": "yellow", "//": "Based on: https://www.amazon.com/Goblets-Chalices-Glasses-Hand-Made-Decoration/dp/B09FDW2RX2/ref=sr_1_4?crid=1N9BI6VTIV08Z&keywords=gold%2Bchalice&qid=1680851190&sprefix=gold%2Bchalic%2Caps%2C305&sr=8-4&th=1" @@ -885,8 +885,8 @@ "name": { "str": "blade" }, "description": "A large, relatively sharp blade. Could be used to make bladed weaponry, or attached to a car.", "category": "spare_parts", - "price": 28000, - "price_postapoc": 50, + "price": "280 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "weight": "553 g", "volume": "750 ml", @@ -904,8 +904,8 @@ "name": { "str": "scythe blade" }, "description": "A large, curved blade. Could be used to assemble a scythe, or make an improvised polearm.", "category": "spare_parts", - "price": 28000, - "price_postapoc": 50, + "price": "280 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "weight": "1000 g", "volume": "1500 ml", @@ -921,8 +921,8 @@ "name": { "str": "circular sawblade" }, "description": "An 8\" circular sawblade. You could make a saw with it, or throw it. Wielding it without sturdy gloves is a bad idea.", "category": "spare_parts", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "weight": "349 g", "volume": "250 ml", @@ -939,8 +939,8 @@ "name": { "str": "tree spile" }, "description": "A hollow metal cylinder which is inserted in a tree crust in order to slowly harvest its sap. Can be used on a maple tree between late winter and early spring to harvest maple sap.", "category": "tools", - "price": 5, - "price_postapoc": 10, + "price": "5 cent", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "11 g", "volume": "50 ml", @@ -964,8 +964,8 @@ "color": "white", "symbol": "o", "description": "Strange lights perpetually glimmer within the sharpened internals of this glass globule.", - "price": 44, - "price_postapoc": 50, + "price": "44 cent", + "price_postapoc": "50 cent", "material": [ "glass" ], "flags": [ "LIGHT_8" ], "volume": "50 ml" @@ -978,8 +978,8 @@ "description": "Time and the elements have reduced them to a mound of filthy ribbons.", "weight": "1175 g", "volume": "3 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -994,8 +994,8 @@ "name": { "str": "wire" }, "description": "A length of thin, relatively stiff steel wire. Like the sort you find in chain link fences.", "category": "spare_parts", - "price": 20000, - "price_postapoc": 10, + "price": "200 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "151 g", "volume": "100 ml", @@ -1009,8 +1009,8 @@ "name": { "str": "piano wire" }, "description": "A length of thin, relatively stretchy coiled steel wire. Used to produce musical notes in instruments.", "category": "spare_parts", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "1 g", "volume": "3 ml", @@ -1024,8 +1024,8 @@ "name": { "str": "mild steel wire" }, "description": "A length of thin, relatively stiff steel wire. Like the sort you find in chain link fences.", "category": "spare_parts", - "price": 20000, - "price_postapoc": 100, + "price": "200 USD", + "price_postapoc": "1 USD", "material": [ "lc_steel" ], "weight": "151 g", "volume": "100 ml", @@ -1066,8 +1066,8 @@ "color": "light_gray", "name": { "str": "barbed wire" }, "description": "A length of stiff wire, covered in sharp barbs.", - "price": 20000, - "price_postapoc": 200, + "price": "200 USD", + "price_postapoc": "2 USD", "material": [ "steel" ], "weight": "302 g", "volume": "500 ml", @@ -1085,8 +1085,8 @@ "//": "Reference tables for calculating steel mesh weight (current one assumes 100 mesh twill weave): http://www.wirecloth.com/mesh-cloth-specification-tables/", "weight": "19 g", "volume": "6 ml", - "price": 700, - "price_postapoc": 100, + "price": "7 USD", + "price_postapoc": "1 USD", "material": [ "steel" ] }, { @@ -1097,8 +1097,8 @@ "name": { "str": "rebar" }, "description": "A rod of rebar, makes a nice melee weapon, and could be handy in constructing tougher walls and such.", "category": "spare_parts", - "price": 7500, - "price_postapoc": 25, + "price": "75 USD", + "price_postapoc": "25 cent", "material": [ "steel" ], "weight": "1245 g", "volume": "159 ml", @@ -1115,8 +1115,8 @@ "name": { "str": "small railroad track" }, "description": "A length of track, made from some planks and rails.", "category": "spare_parts", - "price": 7500, - "price_postapoc": 10, + "price": "75 USD", + "price_postapoc": "10 cent", "material": [ "wood", "steel" ], "weight": "40 kg", "volume": "30000 ml" @@ -1129,8 +1129,8 @@ "name": { "str_sp": "dry concrete mix" }, "description": "Some mixed cement, sand and aggregates, precombined and ready to be used in a construction project.", "category": "spare_parts", - "price": 10000, - "price_postapoc": 5, + "price": "100 USD", + "price_postapoc": "5 cent", "material": [ { "type": "cement", "portion": 3 }, { "type": "sand", "portion": 2 }, { "type": "stone", "portion": 1 } ], "weight": "450 g", "volume": "300 ml", @@ -1197,8 +1197,8 @@ "name": { "str": "spring" }, "category": "spare_parts", "description": "A large, heavy-duty spring. Expands with significant force when compressed.", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "iron" ], "weight": "3000 g", "volume": "750 ml" @@ -1211,8 +1211,8 @@ "name": { "str": "lawnmower" }, "description": "A motorized pushmower that seems to be broken. You could take it apart if you had a wrench.", "category": "other", - "price": 10000, - "price_postapoc": 50, + "price": "100 USD", + "price_postapoc": "50 cent", "material": [ "steel", "iron" ], "weight": "28680 g", "volume": "6250 ml", @@ -1227,8 +1227,8 @@ "color": "green", "name": { "str": "damaged tent" }, "description": "A small tent, just big enough to fit one person comfortably. This tent is broken and cannot be deployed.", - "price": 6500, - "price_postapoc": 100, + "price": "65 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "aluminum" ], "weight": "1133 g", "volume": "2500 ml", @@ -1244,8 +1244,8 @@ "color": "green", "name": { "str": "large damaged tent" }, "description": "A family-sized tent, very bulky but with plenty of space. This tent is broken and cannot be deployed.", - "price": 10000, - "price_postapoc": 150, + "price": "100 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "plastic", "aluminum" ], "weight": "2266 g", "volume": "10 L", @@ -1261,8 +1261,8 @@ "name": { "str": "heating element" }, "category": "spare_parts", "description": "A heating element, like the ones used in hotplates or kettles. Consists of nichrome wire surrounded by electrical insulator and placed inside a steel casing.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "226 g", "volume": "250 ml" @@ -1275,8 +1275,8 @@ "name": { "str": "crude heating element" }, "category": "spare_parts", "description": "A primitive heating element made from thin coiled steel wire. It will degrade much quicker with use than normal heating elements, but it'll do for some applications.", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "weight": "226 g", "volume": "250 ml" @@ -1289,8 +1289,8 @@ "name": { "str": "bimetal thermostat" }, "category": "spare_parts", "description": "A simple thermostat controlled by thermal expansion of a bimetal strip.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "iron" ], "weight": "226 g", "volume": "250 ml" @@ -1302,8 +1302,8 @@ "color": "white", "name": { "str": "household water heater" }, "description": "A large metal tank with a water faucet attached to it, primarily used to store and heat water.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "steel" ], "//": "weight and volume assumed to be from model XE36S06ST45U0 water heater ", "weight": "54431 g", @@ -1319,8 +1319,8 @@ "color": "white", "name": { "str": "family–sized household water heater" }, "description": "A large metal tank with a water faucet attached to it, primarily used to store and heat water. Large enough for a whole family.", - "price": 0, - "price_postapoc": 20, + "price": "0 cent", + "price_postapoc": "20 cent", "material": [ "steel" ], "//": "weight and volume assumed to be from model XG55T06EC50UO water heater ", "weight": "80000 g", @@ -1336,8 +1336,8 @@ "color": "dark_gray", "name": { "str": "television" }, "description": "A large LCD television, full of delicious electronics.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "15000 g", "volume": "20 L", @@ -1352,8 +1352,8 @@ "color": "white", "name": { "str": "household washing machine" }, "description": "An appliance used to wash laundry, not of much use without power and water. Can be placed as an appliance.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "66 kg", "volume": "500 L", @@ -1377,8 +1377,8 @@ "color": "white", "name": { "str": "household dishwasher" }, "description": "An appliance used to clean dishes, not of much use without power and water. Can be placed as an appliance.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "41 kg", "volume": "300 L", @@ -1403,8 +1403,8 @@ "name": { "str": "pilot light" }, "category": "spare_parts", "description": "A pilot light from a gas-burning device, this particular one is a simple piezoelectric igniter.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "5 g", "volume": "5 ml" @@ -1417,8 +1417,8 @@ "name": { "str": "delayed fuze" }, "category": "spare_parts", "description": "A complex mechanical fuze. It seems it can be used to detonate stable explosives after a short time by triggering it.", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "weight": "5 g", "volume": "5 ml" @@ -1431,8 +1431,8 @@ "name": { "str": "impact fuze" }, "category": "spare_parts", "description": "A complex mechanical fuze. It seems it can be used to detonate stable explosives upon a solid impact.", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "weight": "5 g", "volume": "1 ml" @@ -1444,8 +1444,8 @@ "color": "light_gray", "name": { "str": "toaster" }, "description": "A small two-slice toaster, not much use as anything but spare parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "725 g", "volume": "750 ml" @@ -1461,7 +1461,7 @@ "volume": "2418 ml", "material": [ "steel", "plastic" ], "longest_side": "48 cm", - "price": 250000, + "price": "2 kUSD 500 USD", "category": "other", "to_hit": -2, "description": "A special forces Russian rifle chambered in 5.45 that someone has taken a plasma cutter to, cutting it in three places to comply with import restrictions. This thing would have been hard to source, and thankfully its unique complex recoil balance system remains intact, unlike the receiver and barrel. The telltale rainbow patterns of torch cuts mar the otherwise beautiful receiver. A well-equipped gunsmith with time and materials could probably build a new one out of this…", @@ -1475,8 +1475,8 @@ "name": { "str": "broken camspy", "str_pl": "broken camspies" }, "category": "other", "description": "A broken camspy. It probably won't spy on anything ever again. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "31520 g", "volume": "15 L", @@ -1492,8 +1492,8 @@ "name": { "str": "broken skitterbot" }, "category": "other", "description": "A broken skitterbot. Much less threatening now that it lies limp on solid ground. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "32700 g", "volume": "105 L", @@ -1509,8 +1509,8 @@ "name": { "str": "broken exterminatron" }, "category": "other", "description": "A broken Hub 01 exterminatron. Much less threatening now that it lies limp on solid ground. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "32700 g", "volume": "105 L", @@ -1526,8 +1526,8 @@ "name": { "str": "broken lab defense bot" }, "category": "other", "description": "A broken lab defense bot, with its casing broken and fluid drained. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "100000 g", "volume": "65000 ml", @@ -1543,8 +1543,8 @@ "name": { "str": "broken nurse bot" }, "category": "other", "description": "A broken nurse bot. Its smooth face stares vacantly into empty space. Could be gutted for parts.", - "price": 30000, - "price_postapoc": 10, + "price": "300 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "140000 g", "volume": "62500 ml", @@ -1560,8 +1560,8 @@ "name": { "str": "broken grocery bot" }, "category": "other", "description": "A broken grocery bot. Its smiling face stares vacantly into empty space. Could be gutted for parts.", - "price": 30000, - "price_postapoc": 10, + "price": "300 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "140000 g", "volume": "62500 ml", @@ -1577,8 +1577,8 @@ "name": { "str": "broken grocery bot" }, "category": "other", "description": "The body of a busted grocery bot. Its tarnished face is still smiling. Could be gutted for parts.", - "price": 30000, - "price_postapoc": 10, + "price": "300 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "140000 g", "volume": "62500 ml", @@ -1600,8 +1600,8 @@ "name": { "str": "broken prototype robot" }, "category": "other", "description": "A broken prototype robot--well, more broken than before. Could be gutted for parts.", - "price": 30000, - "price_postapoc": 10, + "price": "300 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "140000 g", "volume": "62500 ml", @@ -1617,8 +1617,8 @@ "name": { "str": "broken miner bot" }, "category": "other", "description": "A broken miner bot. Much less threatening now that it's no longer capable of drilling anything. Could be gutted for parts.", - "price": 20000, - "price_postapoc": 10, + "price": "200 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "170200 g", "volume": "62500 ml", @@ -1633,8 +1633,8 @@ "description": "A broken mech exoskeleton suit, it looks beyond repair.", "weight": "700388 g", "volume": "125 L", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "superalloy" ], "symbol": ";", @@ -1649,8 +1649,8 @@ "description": "A broken mech exoskeleton suit, it looks beyond repair.", "weight": "1280388 g", "volume": "250 L", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "superalloy" ], "symbol": ";", @@ -1665,8 +1665,8 @@ "description": "A broken mech exoskeleton suit, it looks beyond repair.", "weight": "1480388 g", "volume": "250 L", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "superalloy" ], "symbol": ";", @@ -1682,8 +1682,8 @@ "name": { "str": "broken riot dispatch", "str_pl": "broken riot dispatches" }, "category": "other", "description": "A broken riot dispatch, with its mesh midsection filled with fried manhacks and its motor limp and still. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "100000 g", "volume": "85000 ml", @@ -1700,8 +1700,8 @@ "color": "white", "symbol": "`", "description": "A piece of paper. Can be used to start fires.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TINDER", "PAPER_SHAPED" ], "volume": "6 ml", @@ -1722,8 +1722,8 @@ "volume": "640 ml", "material": [ "plastic" ], "to_hit": -1, - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "flags": [ "NO_UNLOAD", "NO_RELOAD" ], "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": false, "ammo_restriction": { "paper": 90 } } ], "melee_damage": { "bash": 1 } @@ -1736,8 +1736,8 @@ "name": { "str": "broken military dispatch", "str_pl": "broken military dispatches" }, "category": "other", "description": "A broken military dispatch. Though the scratched manhacks visible in its belly are disarmed, their destructive potential still inspires a spark of fear in you, even now. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "100000 g", "volume": "85000 ml", @@ -1753,8 +1753,8 @@ "name": { "str": "broken manhack" }, "category": "other", "description": "A broken manhack. Much less threatening now that it lies limp on solid ground. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "1500 g", "volume": "750 ml", @@ -1770,8 +1770,8 @@ "name": { "str": "broken grenade hack" }, "category": "other", "description": "A broken grenade hack. Much less threatening now that it lies quiet on solid ground. Could be gutted for parts.", - "price": 9000, - "price_postapoc": 10, + "price": "90 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "2000 g", "volume": "750 ml", @@ -1787,8 +1787,8 @@ "name": { "str": "broken tear gas hack" }, "category": "other", "description": "A broken tear gas hack. Much less threatening now that it lies quiet on solid ground. Could be gutted for parts.", - "price": 9000, - "price_postapoc": 10, + "price": "90 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "2600 g", "volume": "750 ml", @@ -1804,8 +1804,8 @@ "name": { "str": "broken EMP hack" }, "category": "other", "description": "A broken EMP hack. Much less threatening now that it lies quiet on solid ground. Could be gutted for parts.", - "price": 9000, - "price_postapoc": 10, + "price": "90 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "2000 g", "volume": "750 ml", @@ -1821,8 +1821,8 @@ "name": { "str": "broken flashbang hack" }, "category": "other", "description": "A broken flashbang hack. Much less threatening now that it lies quiet on solid ground. Could be gutted for parts.", - "price": 9000, - "price_postapoc": 10, + "price": "90 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "1750 g", "volume": "750 ml", @@ -1838,8 +1838,8 @@ "name": { "str": "broken C-4 hack" }, "category": "other", "description": "A broken C-4 hack. Much less threatening now that it lies quiet on solid ground. Could be gutted for parts.", - "price": 9000, - "price_postapoc": 10, + "price": "90 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "3100 g", "volume": "750 ml", @@ -1855,8 +1855,8 @@ "name": { "str": "broken loudspeaker" }, "category": "other", "description": "A broken loudspeaker. It's so unusually quiet now…. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "weight": "52 kg", "volume": "50500 ml", @@ -1871,8 +1871,8 @@ "name": { "str": "processor board" }, "category": "spare_parts", "description": "A central processor unit, useful in advanced electronics crafting.", - "price": 12000, - "price_postapoc": 10, + "price": "120 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "weight": "56 g", "volume": "250 ml", @@ -1886,8 +1886,8 @@ "name": { "str": "RAM" }, "category": "spare_parts", "description": "A stick of memory. Useful in advanced electronics crafting.", - "price": 9000, - "price_postapoc": 10, + "price": "90 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "weight": "18 g", "//": "A stick of DDR4 SRAM is 133.35 x 31.25 x 4.2mm, or 17.5ml. We round up a touch.", @@ -1902,8 +1902,8 @@ "name": { "str": "power converter" }, "category": "spare_parts", "description": "A power supply unit. Useful in lots of electronics recipes.", - "price": 17000, - "price_postapoc": 25, + "price": "170 USD", + "price_postapoc": "25 cent", "material": [ "aluminum", "plastic" ], "weight": "113 g", "volume": "1 L", @@ -1918,8 +1918,8 @@ "name": { "str": "amplifier circuit" }, "category": "spare_parts", "description": "A circuit designed to amplify the strength of a signal. Useful in lots of electronics recipes.", - "price": 20000, - "price_postapoc": 10, + "price": "200 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "weight": "114 g", "volume": "250 ml", @@ -1933,8 +1933,8 @@ "name": { "str": "transponder circuit" }, "category": "spare_parts", "description": "A circuit designed to repeat a signal. Useful for crafting communications equipment.", - "price": 14000, - "price_postapoc": 10, + "price": "140 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "480 g", "volume": "250 ml", @@ -1948,8 +1948,8 @@ "name": { "str": "signal receiver" }, "category": "spare_parts", "description": "A module designed to receive many forms of signals. Useful for crafting communications equipment.", - "price": 13500, - "price_postapoc": 10, + "price": "135 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "114 g", "volume": "250 ml", @@ -1963,8 +1963,8 @@ "name": { "str": "large LCD screen" }, "category": "spare_parts", "description": "A large backlit screen, used for displaying images. Useful in some electronics recipes.", - "price": 10000, - "price_postapoc": 10, + "price": "100 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "weight": "13000 g", "volume": "15000 ml", @@ -1978,8 +1978,8 @@ "name": { "str": "small LCD screen" }, "category": "spare_parts", "description": "A small backlit screen, used for displaying images. Useful in some electronics recipes.", - "price": 24000, - "price_postapoc": 10, + "price": "240 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "weight": "500 g", "volume": "250 ml", @@ -1993,8 +1993,8 @@ "name": { "str": "high-quality lens", "str_pl": "high-quality lenses" }, "category": "spare_parts", "description": "A high-quality glass lens, useful for focusing or diffusing light. Might be useful for starting a fire.", - "price": 120000, - "price_postapoc": 100, + "price": "1 kUSD 200 USD", + "price_postapoc": "1 USD", "material": [ "glass" ], "weight": "1 g", "volume": "2 ml", @@ -2010,8 +2010,8 @@ "name": { "str": "small high-quality lens", "str_pl": "small high-quality lenses" }, "category": "spare_parts", "description": "A small, high-quality glass lens, useful for focusing or diffusing light. Might be useful for crafting.", - "price": 6000, - "price_postapoc": 50, + "price": "60 USD", + "price_postapoc": "50 cent", "material": [ "glass" ], "weight": "1 g", "volume": "1 ml" @@ -2024,8 +2024,8 @@ "name": { "str": "pair of tinted glass lenses", "str_pl": "pairs of tinted glass lenses" }, "category": "spare_parts", "description": "A pair of small, darkened glass lenses, like the ones used in sunglasses.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "glass" ], "weight": "30 g", "volume": "2 ml", @@ -2039,8 +2039,8 @@ "name": { "str": "burnt out bionic" }, "category": "spare_parts", "description": "Once a valuable bionic implant, it has not held up well under repeated use. It has been destroyed by excessive electric current and is now useless.", - "price": 13500, - "price_postapoc": 10, + "price": "135 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "317 g", "volume": "2500 ml", @@ -2055,8 +2055,8 @@ "name": { "str": "nanofabricator template" }, "category": "spare_parts", "description": "A state-of-the-art optical storage system. This small slate of transparent glass holds, inscribed as a miniature pattern, the instructions required to create an item through a nanofabricator.", - "price": 150000, - "price_postapoc": 1000, + "price": "1 kUSD 500 USD", + "price_postapoc": "10 USD", "material": [ "steel", "plastic" ], "nanofab_template_group": "nanofab_recipes", "template_requirements": "nanofabricator", @@ -2090,8 +2090,8 @@ "color": "yellow", "name": { "str": "nanofabricator template (silicon photonics)", "str_pl": "nanofabricator templates (silicon photonics)" }, "description": "A state-of-the-art optical storage system, containing the instruction set required for the fabrication of complex silicon photonic circuitry. The data within was once clearly worth millions, but now, you are not sure if it's anything more than a fancy, high-tech paperweight.", - "price": 200000000, - "price_postapoc": 3000, + "price": "2000 kUSD", + "price_postapoc": "30 USD", "//": "actually worth millions", "flags": [ "TRADER_AVOID" ] }, @@ -2102,8 +2102,8 @@ "color": "yellow", "name": { "str": "nanofabricator template (UHMWPE)", "str_pl": "nanofabricator templates (UHMWPE)" }, "description": "A state-of-the-art optical storage system, containing the instruction set required for the fabrication of advanced armor materials. This seems to just be routines for working with the materials, not actual armor schematics.", - "price": 100000000, - "price_postapoc": 3000, + "price": "1000 kUSD", + "price_postapoc": "30 USD", "//": "given to HUB 01 for even better armor", "flags": [ "TRADER_AVOID" ] }, @@ -2115,8 +2115,8 @@ "name": { "str": "antenna" }, "category": "spare_parts", "description": "A simple thin copper shaft. Useful in lots of electronics recipes.", - "price": 8000, - "price_postapoc": 10, + "price": "80 USD", + "price_postapoc": "10 cent", "material": [ "copper" ], "weight": "68 g", "volume": "250 ml", @@ -2130,8 +2130,8 @@ "name": { "str": "micro electric motor" }, "category": "spare_parts", "description": "A very small electric motor like those used in RC cars or electric hair trimmers.", - "price": 1000, - "price_postapoc": 25, + "price": "10 USD", + "price_postapoc": "25 cent", "material": [ "steel", "plastic" ], "weight": "125 g", "volume": "25 ml" @@ -2144,8 +2144,8 @@ "name": { "str": "circuit board" }, "category": "spare_parts", "description": "A printed card that supports and electrically connects electronic components on a non-conductive substrate.", - "price": 5000, - "price_postapoc": 10, + "price": "50 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "weight": "26 g", "volume": "15 ml" @@ -2158,8 +2158,8 @@ "name": { "str": "electronic scrap" }, "category": "spare_parts", "description": "A random collection of resistors, capacitors, and diodes which have been stripped from printed circuits.", - "price": 3000, - "price_postapoc": 10, + "price": "30 USD", + "price_postapoc": "10 cent", "material": [ "aluminum" ], "weight": "14 g", "volume": "5 ml" @@ -2172,8 +2172,8 @@ "name": { "str": "radio repeater mod" }, "category": "spare_parts", "description": "A system designed to convert a radio station into an autonomous repeater.", - "price": 25000, - "price_postapoc": 50, + "price": "250 USD", + "price_postapoc": "50 cent", "material": [ "aluminum", "plastic" ], "weight": "2100 g", "volume": "2 L", @@ -2187,8 +2187,8 @@ "name": { "str": "desk fan" }, "description": "A small fan, used to propel air around a room.", "color": "light_gray", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "flags": [ "WATER_BREAK" ], "ammo": [ "battery" ], @@ -2206,8 +2206,8 @@ "color": "yellow", "name": { "str": "ceramic armor plate" }, "description": "A ceramic armor plate, specifically engineered for use as armor. Not suitable for human use.", - "price": 8000, - "price_postapoc": 100, + "price": "80 USD", + "price_postapoc": "1 USD", "material": [ "ceramic" ], "weight": "362 g", "volume": "500 ml", @@ -2220,8 +2220,8 @@ "color": "light_cyan", "name": { "str": "fishbowl" }, "description": "A filled fishbowl, the tag says 'to Ed' and the fish's name, 'Hoss'. The fish appears to have tiny antlers.", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "glass" ], "weight": "8 kg", "volume": "8500 ml", @@ -2234,8 +2234,8 @@ "description": "A tool designed to clean the interior surface of pipes, bottles, and similar objects. This one is thin enough to be used for cleaning firearm barrels from dirt and fouling.", "weight": "50 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "steel", "cotton" ], "symbol": ";", "color": "light_gray" @@ -2247,8 +2247,8 @@ "color": "light_gray", "name": { "str": "clock" }, "description": "A small mechanical clock, it's stopped at 10:10.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "plastic", "steel" ], "weight": "725 g", "volume": "250 ml", @@ -2263,8 +2263,8 @@ "color": "light_gray", "name": { "str_sp": "clockworks" }, "description": "A small assortment of gears and other clockwork gubbins.", - "price": 200, - "price_postapoc": 10, + "price": "2 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "50 g", "volume": "50 ml" @@ -2279,8 +2279,8 @@ "volume": "1 ml", "symbol": ",", "color": "white", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "ascii_picture": "memory_card", "flags": [ "MC_MOBILE" ], @@ -2338,8 +2338,8 @@ "color": "light_cyan", "name": { "str": "hand mirror" }, "description": "A small hand mirror.", - "price": 15000, - "price_postapoc": 10, + "price": "150 USD", + "price_postapoc": "10 cent", "material": [ "glass" ], "weight": "300 g", "volume": "750 ml", @@ -2355,8 +2355,8 @@ "name": { "str": "manhole cover" }, "description": "A heavy iron disc that typically covers a ladder into the sewers. Lifting it from the manhole is impossible without a crowbar.", "category": "other", - "price": 20000, - "price_postapoc": 10, + "price": "200 USD", + "price_postapoc": "10 cent", "material": [ "iron" ], "flags": [ "DURABLE_MELEE", "TRADER_AVOID" ], "weight": "115 kg", @@ -2403,7 +2403,7 @@ "container": "bottle_glass", "flags": [ "TRADER_AVOID", "SOFT" ], "symbol": "%", - "price": 0, + "price": "0 cent", "volume": "250 ml", "category": "food", "use_action": { @@ -2426,7 +2426,7 @@ "container": "bag_plastic", "symbol": "%", "description": "Some rice covered in koji mold, mixed in with yeast. Useful for making sake, but not really tasty on its own. Smells vaguely of chestnuts.", - "price": 0, + "price": "0 cent", "volume": "250 ml" }, { @@ -2440,7 +2440,7 @@ "color": "white", "flags": [ "TRADER_AVOID" ], "symbol": ",", - "price": 0, + "price": "0 cent", "volume": "250 ml", "use_action": { "target": "young_koji_done", @@ -2461,7 +2461,7 @@ "weight": "200 g", "color": "white", "symbol": ",", - "price_postapoc": 50, + "price_postapoc": "50 cent", "volume": "250 ml" }, { @@ -2474,7 +2474,7 @@ "color": "white", "flags": [ "TRADER_AVOID" ], "symbol": "%", - "price": 0, + "price": "0 cent", "volume": "500 ml", "use_action": { "target": "soy_wheat_dough_done", @@ -2494,7 +2494,7 @@ "color": "white", "symbol": "%", "description": "A block of dried dough made from cooked and mashed soybeans and wheat flour, covered with koji mold. Usable for making soy sauce.", - "price": 0, + "price": "0 cent", "volume": "500 ml" }, { @@ -2509,8 +2509,8 @@ "symbol": ",", "material": [ "veggy" ], "volume": "5 ml", - "price": 200, - "price_postapoc": 50 + "price": "2 USD", + "price_postapoc": "50 cent" }, { "type": "GENERIC", @@ -2523,8 +2523,8 @@ "symbol": ",", "material": [ "veggy" ], "volume": "1500 ml", - "price": 0, - "price_postapoc": 10 + "price": "0 cent", + "price_postapoc": "10 cent" }, { "type": "GENERIC", @@ -2536,8 +2536,8 @@ "symbol": ",", "material": [ "veggy" ], "volume": "20 ml", - "price": 0, - "price_postapoc": 0 + "price": "0 cent", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -2549,8 +2549,8 @@ "symbol": ",", "material": [ "veggy" ], "volume": "250 ml", - "price": 0, - "price_postapoc": 0 + "price": "0 cent", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -2562,8 +2562,8 @@ "symbol": ",", "material": [ "veggy" ], "volume": "250 ml", - "price": 0, - "price_postapoc": 0 + "price": "0 cent", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -2577,8 +2577,8 @@ "material": [ { "type": "veggy", "portion": 4 }, { "type": "glass", "portion": 1 } ], "//1": "A medium sized bouquet is roughly 13\" x 5.5\" x 5.5\", or roughly 6.4 L. When withered, I'm estimating a 30% shrinkage in volume, or 4.5 L.", "volume": "4500 ml", - "price": 0, - "price_postapoc": 0 + "price": "0 cent", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -2592,8 +2592,8 @@ "material": [ "plastic" ], "//": "dog tags are roughly 50mm x 28mm x 0.4mm, or 0.56 ml, but that's so small I needed to round up to 1 ml", "volume": "1 ml", - "price": 0, - "price_postapoc": 0 + "price": "0 cent", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -2603,8 +2603,8 @@ "name": { "str": "lump of clay", "str_pl": "lumps of clay" }, "category": "spare_parts", "description": "A fresh piece of clay. Useful for some crafting recipes.", - "price": 531, - "price_postapoc": 10, + "price": "5 USD 31 cent", + "price_postapoc": "10 cent", "material": [ "freshclay" ], "weight": "530 g", "volume": "250 ml", @@ -2618,8 +2618,8 @@ "name": { "str": "brick" }, "category": "spare_parts", "description": "A fire-hardened building block used in masonry construction.", - "price": 2500, - "price_postapoc": 10, + "price": "25 USD", + "price_postapoc": "10 cent", "material": [ "clay", "stone" ], "weight": "969 g", "volume": "500 ml", @@ -2636,8 +2636,8 @@ "description": "Some mortar, ready to be used in building projects.", "category": "spare_parts", "container": "bag_canvas", - "price": 5000, - "price_postapoc": 25, + "price": "50 USD", + "price_postapoc": "25 cent", "material": [ "powder_nonflam" ], "weight": "2340 g", "volume": "1 L", @@ -2652,8 +2652,8 @@ "description": "Some lime mortar, made from quicklime and aggregate and ready for building.", "category": "spare_parts", "container": "bag_canvas", - "price": 2000, - "price_postapoc": 15, + "price": "20 USD", + "price_postapoc": "15 cent", "material": [ "powder_nonflam" ], "weight": "2340 g", "volume": "1 L", @@ -2667,8 +2667,8 @@ "color": "brown", "name": { "str": "soft adobe brick" }, "description": "A compacted mass of soil and natural fibers, still too wet to build with. Load it onto a pallet and leave it to dry.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "soil" ], "weight": "1750 g", "volume": "750 ml", @@ -2698,8 +2698,8 @@ "weight": "1500 g", "volume": "2250 ml", "to_hit": -2, - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "qualities": [ [ "HAMMER", 1 ] ], "melee_damage": { "bash": 10 } }, @@ -2712,8 +2712,8 @@ "description": "A thick, pasty mud, low in sand content to reduce crumbling once dry. Used to glue larger, heavier pieces of mud and clay together.", "category": "spare_parts", "container": "bag_canvas", - "price": 200, - "price_postapoc": 10, + "price": "2 USD", + "price_postapoc": "10 cent", "material": [ "soil" ], "weight": "2340 g", "volume": "1 L", @@ -2726,8 +2726,8 @@ "color": "brown", "name": { "str_sp": "tanbark" }, "description": "A sheet of tannin-rich bark from a tree, useful for tanning leather", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "wood" ], "weight": "323 g", "volume": "250 ml", @@ -2741,8 +2741,8 @@ "color": "brown", "name": { "str": "birchbark" }, "description": "A sheet of tough, water-resistant bark taken from a birch tree.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "wood" ], "weight": "323 g", "volume": "250 ml", @@ -2756,8 +2756,8 @@ "color": "brown", "name": { "str_sp": "willowbark" }, "description": "A sheet of bark taken from a willow tree. Used in the production of aspirin.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "wood" ], "weight": "323 g", "volume": "250 ml", @@ -2771,8 +2771,8 @@ "color": "brown", "name": { "str_sp": "sassafras root" }, "description": "A root taken from a sassafras tree. Used in the production of certain sweet beverages.", - "price": 0, - "price_postapoc": 5, + "price": "0 cent", + "price_postapoc": "5 cent", "material": [ "wood" ], "weight": "85 g", "volume": "109 ml", @@ -2787,8 +2787,8 @@ "flags": [ "GEMSTONE" ], "name": { "str": "diamond" }, "description": "A sparkling diamond.", - "price": 1000000, - "price_postapoc": 50, + "price": "10 kUSD", + "price_postapoc": "50 cent", "material": [ "diamond" ], "weight": "200 mg", "volume": "6 ml", @@ -2802,8 +2802,8 @@ "flags": [ "GEMSTONE" ], "name": { "str": "garnet" }, "description": "A sparkling garnet.", - "price": 800000, - "price_postapoc": 30, + "price": "8 kUSD", + "price_postapoc": "30 cent", "material": [ "gemstone" ], "weight": "200 mg", "volume": "6 ml", @@ -2958,8 +2958,8 @@ "color": "light_gray", "name": { "str": "straw doll" }, "description": "An old straw doll, made to look like a woman in a dress.", - "price": 100, - "price_postapoc": 0, + "price": "1 USD", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TINDER" ], "weight": "80 g", @@ -2972,8 +2972,8 @@ "color": "blue", "name": { "str": "pillow" }, "description": "A pillow to rest your head on when sleeping.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "weight": "514 g", "container": "pillowcase", @@ -2988,8 +2988,8 @@ "color": "blue", "name": { "str": "makeshift pillow" }, "description": "A pillowcase with straw and other dead plants as filling. It's better than nothing…", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "paper" ], "weight": "514 g", "container": "pillowcase", @@ -3004,8 +3004,8 @@ "color": "white", "name": { "str": "body pillow" }, "description": "A big, body-sized pillow with a print of an anime character on the front and their scantily-clad version on the back.", - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "weight": "774 g", "volume": "1750 ml", @@ -3099,8 +3099,8 @@ "color": "blue", "name": { "str": "down-filled pillow" }, "description": "A fluffy pillow to rest your head on when sleeping.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "weight": "514 g", "container": "pillowcase", @@ -3117,8 +3117,8 @@ "description": "A medical device that bears the approval of the FDA (Food and Drug Administration). If used properly, this pouch can keep things sterile indefinitely.", "weight": "2 g", "volume": "1 ml", - "price": 5, - "price_postapoc": 100, + "price": "5 cent", + "price_postapoc": "1 USD", "use_action": [ "PACK_CBM" ], "to_hit": -1, "material": [ "plastic", "paper" ], @@ -3274,8 +3274,8 @@ "color": "light_green", "name": { "str": "cannabis plant" }, "description": "A psychoactive plant indigenous to Central Asia and the Indian subcontinent traditionally cultivated for its fiber, oil, for medicinal purposes, and for use as a recreational drug. It requires further processing to be useful.", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "material": [ "veggy" ], "weight": "420 g", "volume": "1 L" @@ -3288,8 +3288,8 @@ "name": { "str_sp": "raw tobacco" }, "description": "Various parts of a tobacco plant, full of nicotine. They need to be dried to become smokable.", "looks_like": "wild_herbs", - "price": 300, - "price_postapoc": 50, + "price": "3 USD", + "price_postapoc": "50 cent", "material": [ "veggy" ], "weight": "100 g", "volume": "250 ml" @@ -3301,8 +3301,8 @@ "color": "cyan", "name": { "str": "abstract plastic card" }, "description": "A generic plastic card item template with numbers based off a credit card.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "plastic" ], "weight": "5 g", "volume": "5 ml", @@ -3321,7 +3321,7 @@ "name": { "str": "cash card" }, "ascii_picture": "cashcard", "description": "A yellow plastic card used to electronically store money. It holds up to 2 million dollars.", - "price": 1000, + "price": "10 USD", "extend": { "flags": [ "NO_UNLOAD", "NO_RELOAD", "TRADER_AVOID" ] }, "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "money": 200000000 } } ], "rand_charges": [ @@ -3374,7 +3374,7 @@ "name": { "str": "prototype I/O recorder" }, "description": "A small, transparent card that was attached to the prototype robot's CPU. It might contain the data the intercom spoke of.", "category": "other", - "price": 500, + "price": "5 USD", "extend": { "flags": [ "MISSION_ITEM" ] } }, { @@ -3394,7 +3394,7 @@ "color": "yellow", "name": { "str": "silver gas discount card" }, "description": "This card gives you a little discount on the purchase of gasoline.", - "price": 500, + "price": "5 USD", "extend": { "flags": [ "GAS_DISCOUNT", "DISCOUNT_VALUE_1" ] } }, { @@ -3405,7 +3405,7 @@ "color": "yellow", "name": { "str": "gold gas discount card" }, "description": "This card gives you a good discount on the purchase of gasoline.", - "price": 500, + "price": "5 USD", "extend": { "flags": [ "GAS_DISCOUNT", "DISCOUNT_VALUE_2" ] } }, { @@ -3416,7 +3416,7 @@ "color": "yellow", "name": { "str": "platinum gas discount card" }, "description": "This card gives you a splendid discount on the purchase of gasoline.", - "price": 500, + "price": "5 USD", "extend": { "flags": [ "GAS_DISCOUNT", "DISCOUNT_VALUE_3" ] } }, { @@ -3426,8 +3426,8 @@ "color": "dark_gray", "name": { "str": "neoprene patch", "str_pl": "neoprene patches" }, "description": "A small neoprene patch. Can be used to repair neoprene clothing.", - "price": 1000, - "price_postapoc": 5, + "price": "10 USD", + "price_postapoc": "5 cent", "material": [ "neoprene" ], "flags": [ "NO_SALVAGE" ], "weight": "3 g", @@ -3444,8 +3444,8 @@ "material": [ "glass" ], "weight": "10 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 10 + "price": "5 USD", + "price_postapoc": "10 cent" }, { "id": "shrapnel", @@ -3454,8 +3454,8 @@ "description": "A twisted shard of jagged metal.", "weight": "5 g", "volume": "20 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "stack_size": 50, "material": [ "steel" ], "symbol": ".", @@ -3471,8 +3471,8 @@ "description": "A nice-looking clay pot used for planting.", "weight": "480 g", "volume": "2500 ml", - "price": 600, - "price_postapoc": 10, + "price": "6 USD", + "price_postapoc": "10 cent", "material": [ "clay" ], "symbol": ")", "color": "brown", @@ -3486,8 +3486,8 @@ "description": "A cheap plastic pot used for planting.", "weight": "190 g", "volume": "2500 ml", - "price": 300, - "price_postapoc": 10, + "price": "3 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": ")", "color": "green", @@ -3501,8 +3501,8 @@ "description": "This 3 L jar contains a human brain preserved in a formaldehyde solution.", "weight": "365 g", "volume": "3 L", - "price": 100, - "price_postapoc": 0, + "price": "1 USD", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "glass" ], "symbol": ")", @@ -3518,8 +3518,8 @@ "description": "A set of long, snakelike tubes for evaporating refrigerant.", "weight": "20000 g", "volume": "2 L", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "symbol": "#", "color": "black" @@ -3532,8 +3532,8 @@ "description": "A compressor and fan that work together to cool down refrigerant.", "weight": "20000 g", "volume": "2 L", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "symbol": "#", "color": "black" @@ -3545,8 +3545,8 @@ "description": "A small tank containing some sort of refrigerant often used in devices such as freezers. Hermetically sealed to prevent evaporation - cannot be opened without prior connection to a compatible valve.", "weight": "410 g", "volume": "1 L", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "to_hit": -4, "material": [ "steel" ], "symbol": "}", @@ -3561,8 +3561,8 @@ "color": "light_cyan", "name": { "str": "hard steel plate" }, "description": "An armor plate made of very thick steel, specifically engineered for use in a bullet-resistant vest.", - "price": 10000, - "price_postapoc": 100, + "price": "100 USD", + "price_postapoc": "1 USD", "material": [ "qt_steel" ], "weight": "1500 g", "volume": "500 ml", @@ -3576,8 +3576,8 @@ "color": "light_cyan", "name": { "str": "steel plate" }, "description": "A steel armor plate, specifically engineered for use in a bullet-resistant vest.", - "price": 9000, - "price_postapoc": 50, + "price": "90 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "weight": "1000 g", "volume": "500 ml", @@ -3591,8 +3591,8 @@ "color": "dark_gray", "name": { "str": "small lock and key", "str_pl": "small locks and keys" }, "description": "A small lock, with its key still inserted.", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "5 g", "volume": "20 ml", @@ -3605,8 +3605,8 @@ "color": "white", "name": { "str": "in-progress craft" }, "description": "This is an in-progress craft.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "1 g", "volume": "250 ml", "use_action": [ "CRAFT" ], @@ -3619,8 +3619,8 @@ "color": "white", "name": { "str": "in-progress disassembly", "str_pl": "in-progress disassemblies" }, "description": "This is an in-progress disassembly.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "1 g", "volume": "250 ml", "use_action": [ "DISASSEMBLE" ], @@ -3634,8 +3634,8 @@ "color": "dark_gray", "name": { "str": "spare tire carrier" }, "description": "A bumper-mounted rig for attaching and storing a spare tire on the back of a vehicle. Combine it with a wheel to get a mountable piece.", - "price": 3500, - "price_postapoc": 250, + "price": "35 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "weight": "5000 g", "volume": "5 L", @@ -3648,8 +3648,8 @@ "color": "blue", "name": { "str": "amplifier head" }, "description": "An amplifier head. Typically paired with a speaker cabinet for amplifying musical instruments. Basically only good for spare parts now.", - "price": 25000, - "price_postapoc": 100, + "price": "250 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic", "wood" ], "weight": "11339 g", "volume": "3 L" @@ -3662,8 +3662,8 @@ "name": { "str": "broken turret" }, "category": "other", "description": "A broken turret. Much less threatening now that it's laid limp on solid ground. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "72650 g", "volume": "30 L", @@ -3724,8 +3724,8 @@ "name": { "str": "broken secubot" }, "category": "other", "description": "A broken secubot, with its casing broken and fluid drained. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "100 kg", "volume": "65 L", @@ -3741,8 +3741,8 @@ "name": { "str": "broken M202A1 TALON" }, "category": "other", "description": "A broken TALON UGV, with its casing broken and fluid drained. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "100 kg", "volume": "65 L", @@ -3767,8 +3767,8 @@ "name": { "str": "fire brick" }, "category": "spare_parts", "description": "A reinforced brick designed to withstand intense heat.", - "price": 2500, - "price_postapoc": 10, + "price": "25 USD", + "price_postapoc": "10 cent", "material": [ "clay", "stone" ], "weight": "969 g", "volume": "500 ml", @@ -3784,8 +3784,8 @@ "description": "A six-sided plastic die.", "weight": "5 g", "volume": "10 ml", - "price": 100, - "price_postapoc": 1, + "price": "1 USD", + "price_postapoc": "1 cent", "material": [ "plastic" ], "symbol": ".", "color": "white", @@ -3800,8 +3800,8 @@ "weight": "18 kg", "volume": "10 L", "looks_like": "adobe_brick", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "salt", "stone" ], "symbol": ".", "color": "white", @@ -3814,8 +3814,8 @@ "color": "brown", "name": { "str_sp": "alder bark" }, "description": "A strip of bark pulled from an alder tree. Used in the production of topical hemostatics.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "wood" ], "weight": "200 g", "volume": "250 ml", @@ -3831,8 +3831,8 @@ "description": "A small, flat case used to carry items such as currency, identification documents, and laminated cards.", "volume": "200 ml", "weight": "60 g", - "price": 1, - "price_postapoc": 10, + "price": "1 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "flags": [ "COLLAPSE_CONTENTS" ], "symbol": ")", @@ -3941,8 +3941,8 @@ "color": "dark_gray", "name": { "str": "travel wallet" }, "description": "A flat case with a neck strap, used to carry items such as currency, identification documents, laminated cards, and other small items.", - "price": 15000, - "price_postapoc": 250, + "price": "150 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic", "leather" ], "flags": [ "OVERSIZE", "BELTED", "ALLOWS_NATURAL_ATTACKS", "TARDIS", "COLLAPSE_CONTENTS", "POWERARMOR_COMPATIBLE" ], "weight": "708 g", @@ -3970,8 +3970,8 @@ "color": "white", "name": { "str": "lanyard" }, "description": "A flat, clear plastic sleeve for identification documents, laminated cards, and other small items. It has a neck strap attached.", - "price": 10, - "price_postapoc": 1, + "price": "10 cent", + "price_postapoc": "1 cent", "material": [ "plastic" ], "flags": [ "OVERSIZE", "BELTED", "ALLOWS_NATURAL_ATTACKS", "POWERARMOR_COMPATIBLE", "PADDED" ], "weight": "250 g", @@ -4001,8 +4001,8 @@ "name": { "str": "broken taser hack" }, "category": "other", "description": "A broken taser hack, with its propellers still and taser inert. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "1600 g", "volume": "600 ml", @@ -4018,8 +4018,8 @@ "name": { "str": "broken green maintenance security drone" }, "category": "other", "description": "A broken security drone, with its propellers still and camera inert. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "5 kg", "volume": "650 ml", @@ -4035,8 +4035,8 @@ "name": { "str": "broken yellow maintenance security drone" }, "category": "other", "description": "A broken security drone, with its propellers still and camera inert. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "5 kg", "volume": "650 ml", @@ -4052,8 +4052,8 @@ "name": { "str": "broken blue maintenance security drone" }, "category": "other", "description": "A broken security drone, with its propellers still and camera inert. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "5 kg", "volume": "650 ml", @@ -4069,8 +4069,8 @@ "name": { "str": "broken blue maintenance security drone" }, "category": "other", "description": "A broken security drone, with its propellers still and camera inert. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "5 kg", "volume": "650 ml", @@ -4086,8 +4086,8 @@ "name": { "str": "broken green research security drone" }, "category": "other", "description": "A broken security drone, with its propellers still and camera inert. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "5 kg", "volume": "650 ml", @@ -4103,8 +4103,8 @@ "name": { "str": "broken black security drone" }, "category": "other", "description": "A broken security drone, with its propellers still and camera inert. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "aluminum", "plastic" ], "weight": "5 kg", "volume": "650 ml", @@ -4119,8 +4119,8 @@ "description": "This is a big, bulky military-level parachute, designed to slow the fall of up to a thousand kilograms of cargo dropped from an aircraft. You have no clue how to put all the straps back in their place.", "weight": "113400 g", "volume": "136080 ml", - "price": 200000, - "price_postapoc": 1000, + "price": "2 kUSD", + "price_postapoc": "10 USD", "material": [ "nylon" ], "symbol": "[", "looks_like": "ragpouch", @@ -4145,8 +4145,8 @@ "name": { "str": "training dummy", "str_pl": "training dummies" }, "category": "other", "description": "A hand-made humanoid figure, useful for training in close quarters combat. This one is made from wood and it some duct tape to mark the striking points. You need to embed it into the ground for training.", - "price": 15000, - "price_postapoc": 600, + "price": "150 USD", + "price_postapoc": "6 USD", "material": [ "wood" ], "weight": "50 kg", "volume": "80 L", @@ -4161,8 +4161,8 @@ "name": { "str": "armored training dummy", "str_pl": "armored training dummies" }, "category": "other", "description": "A hand-made humanoid figure, useful for training in close quarters combat. This one is covered in scrap armor and looks on guard. You need to embed it into the ground for training.", - "price": 15000, - "price_postapoc": 1000, + "price": "150 USD", + "price_postapoc": "10 USD", "material": [ "steel", "wood" ], "weight": "55 kg", "volume": "80 L", @@ -4177,8 +4177,8 @@ "name": { "str": "box archery target" }, "category": "other", "description": "A soft target for archery, consisting of tightly-packed cloth stuffed into a cardboard box, with a bullseye marked on the front. Must be set up to use.", - "price": 3000, - "price_postapoc": 200, + "price": "30 USD", + "price_postapoc": "2 USD", "material": [ { "type": "cotton", "portion": 9 }, { "type": "cardboard" } ], "weight": "16 kg", "volume": "50 L", @@ -4194,8 +4194,8 @@ "color": "dark_gray", "name": { "str": "cash register" }, "description": "An electronic device for registering and calculating sales transactions. It doesn't seem to be working.", - "price": 23600, - "price_postapoc": 200, + "price": "236 USD", + "price_postapoc": "2 USD", "material": [ "plastic", "steel" ], "flags": [ "COLLAPSE_CONTENTS" ], "weight": "5 kg", diff --git a/data/json/items/generic/bathroom_house.json b/data/json/items/generic/bathroom_house.json index 196f7b6f11435..fbc2b9ad39e87 100644 --- a/data/json/items/generic/bathroom_house.json +++ b/data/json/items/generic/bathroom_house.json @@ -6,8 +6,8 @@ "description": "generic item template", "symbol": "+", "color": "blue", - "price": 200, - "price_postapoc": 0, + "price": "2 USD", + "price_postapoc": "0 cent", "weight": "100 g", "volume": "100 ml", "material": [ "plastic" ], @@ -23,7 +23,7 @@ "weight": "65 g", "volume": "221 ml", "longest_side": "13 cm", - "price": 250, + "price": "2 USD 50 cent", "copy-from": "base_toiletries", "//": "Based on https://www.amazon.com/dp/B09QGPWJPX" }, @@ -34,8 +34,8 @@ "description": "A razor blade on a comfortable handle. Much easier to shave with than a loose razor.", "symbol": "t", "copy-from": "base_toiletries", - "price": 800, - "price_postapoc": 500, + "price": "8 USD", + "price_postapoc": "5 USD", "//": "the end of the world doesn't mean everyone is okay with having ZZ Top beards. disposable razors are a hot commodity. The razor also loses the Cutting 1 quality. Don't ask how we confirmed this.", "weight": "110 g", "material": [ "plastic", "steel" ], @@ -85,8 +85,8 @@ "color": "white", "looks_like": "cotton_ball", "container": "bag_plastic", - "price": 25, - "price_postapoc": 200, + "price": "25 cent", + "price_postapoc": "2 USD", "//": "Makes a decent trade commodity but can be acquired in bulk.", "weight": "10 g", "volume": "50 ml", @@ -122,8 +122,8 @@ "color": "white", "looks_like": "bandages", "container": "bag_plastic", - "price": 25, - "price_postapoc": 200, + "price": "25 cent", + "price_postapoc": "2 USD", "//": "Makes a decent trade commodity but can be acquired in bulk.", "weight": "10 g", "volume": "50 ml", @@ -159,8 +159,8 @@ "color": "pink", "looks_like": "bottle_plastic_small", "container": "bag_plastic", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "//": "Makes a decent trade commodity.", "weight": "10 g", "volume": "50 ml", @@ -234,8 +234,8 @@ "description": "A rubber-tipped tool for unclogging pipes, or a club for an immature survivor.", "symbol": "p", "color": "red", - "price": 800, - "price_postapoc": 10, + "price": "8 USD", + "price_postapoc": "10 cent", "weight": "590 g", "volume": "2100 ml", "//": "the volume is pretty bulky, but this is an old fashioned model.", @@ -250,8 +250,8 @@ "description": "This hollow plastic toilet plunger's bell compresses like an accordion. It is efficient at its intended purpose, and complete rubbish as a weapon.", "symbol": "p", "color": "black", - "price": 1590, - "price_postapoc": 10, + "price": "15 USD 90 cent", + "price_postapoc": "10 cent", "weight": "680 g", "volume": "2400 ml", "material": [ "plastic" ], @@ -266,8 +266,8 @@ "symbol": "~", "color": "white", "container": "bag_plastic", - "price": 89, - "price_postapoc": 180, + "price": "89 cent", + "price_postapoc": "1 USD 80 cent", "volume": "250 ml", "weight": "227 g", "material": [ "paper" ], @@ -296,8 +296,8 @@ "description": "This tool dries your hair by pushing air through a coil of hot wires. The heat can be toggled on and off.", "symbol": "(", "color": "black", - "price": 2100, - "price_postapoc": 0, + "price": "21 USD", + "price_postapoc": "0 cent", "volume": "500 ml", "weight": "680 g", "material": [ "plastic", "steel" ], @@ -316,8 +316,8 @@ "description": "A wand made of heat-resistant ceramics. When plugged into an outlet, it is hot enough to shape your hair into curls. Too bad the power's out.", "symbol": "/", "color": "magenta", - "price": 2500, - "price_postapoc": 0, + "price": "25 USD", + "price_postapoc": "0 cent", "volume": "250 ml", "weight": "590 g", "material": [ "ceramic", "steel" ], @@ -331,8 +331,8 @@ "description": "Zombies cannot be intimidated or humiliated, so this stiff brush is only useful for scouring toilet bowls.", "symbol": "p", "color": "white", - "price": 1700, - "price_postapoc": 0, + "price": "17 USD", + "price_postapoc": "0 cent", "volume": "500 ml", "weight": "160 g", "material": [ "steel", "plastic" ], @@ -411,8 +411,8 @@ "moves": 400 } ], - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ")", diff --git a/data/json/items/generic/bedding.json b/data/json/items/generic/bedding.json index 248e3ccd14347..8e5599cc6cd6d 100644 --- a/data/json/items/generic/bedding.json +++ b/data/json/items/generic/bedding.json @@ -8,8 +8,8 @@ "description": "A simple cotton pillowcase.", "weight": "136 g", "volume": "90 ml", - "price": 650, - "price_postapoc": 2, + "price": "6 USD 50 cent", + "price_postapoc": "2 cent", "to_hit": { "grip": "none", "length": "short", "surface": "any", "balance": "clumsy" }, "material": [ "cotton" ], "flags": [ "SLEEP_AID_CONTAINER" ], @@ -25,8 +25,8 @@ "category": "tools", "description": "A large sheet of cloth with ropes on two sides. Could be tied to something and then used as a sleeping place that is comfortable, but lacks warmth.", "weight": "1664 g", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "color": "white", "symbol": "=", "material": [ "cotton" ], @@ -39,8 +39,8 @@ "category": "tools", "description": "A large net with ropes on two sides. Could be tied to something and then used as a sleeping place that is comfortable, but lacks warmth.", "weight": "1584 g", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "color": "white", "symbol": "=", "material": [ "cotton" ], @@ -54,8 +54,8 @@ "//density": "1.6 grams per mL", "weight": "420 g", "volume": "564 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -80,7 +80,7 @@ "weight": "848 g", "volume": "15500 ml", "price": "15 USD", - "price_postapoc": 50, + "price_postapoc": "50 cent", "to_hit": { "grip": "none", "length": "long", "surface": "any", "balance": "clumsy" }, "material": [ "cotton" ], "symbol": "[", @@ -106,8 +106,8 @@ "description": "Hiding under here will not protect you from the monsters, but it'll keep you warm.", "weight": "3500 g", "volume": "15 L", - "price": 5500, - "price_postapoc": 150, + "price": "55 USD", + "price_postapoc": "1 USD 50 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -132,8 +132,8 @@ "description": "A heavy fur blanket that covers most of your body.", "weight": "3500 g", "volume": "31 L", - "price": 19500, - "price_postapoc": 250, + "price": "195 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "cotton", "fur" ], "symbol": "[", @@ -158,8 +158,8 @@ "description": "A big, comfy quilt made of thick wool in a triangle pattern. Extremely cozy!", "weight": "1814 g", "volume": "5 L", - "price": 5500, - "price_postapoc": 200, + "price": "55 USD", + "price_postapoc": "2 USD", "to_hit": -1, "material": [ "wool" ], "symbol": "[", @@ -201,8 +201,8 @@ "color": "light_gray", "name": { "str": "emergency blanket" }, "description": "A blanket made of space-age material that covers your most important body parts. It folds into a very compact form when not in use.", - "price": 425, - "price_postapoc": 10, + "price": "4 USD 25 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "weight": "500 g", "volume": "500 ml", @@ -225,8 +225,8 @@ "description": "A large sleeping bag that covers you head to toe, with a strap for carrying it on your back when not in use. This one is medium weight. It is currently unrolled; activate it to roll it up for easy storage.", "weight": "1600 g", "volume": "1 L", - "price": 20500, - "price_postapoc": 500, + "price": "205 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -257,8 +257,8 @@ "description": "You might think it is bizarre to sleep in a body bag stuffed with dead plants. However, the thought of sleeping in the cold is far more uncomfortable.", "weight": "4700 g", "volume": "30 L", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "material": [ "plastic", "dry_plant" ], "symbol": "[", "looks_like": "blanket", @@ -282,8 +282,8 @@ "description": "Some grass yarn woven into a crude sheet.", "weight": "500 g", "volume": "700 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "dry_plant" ], "symbol": "[", @@ -307,8 +307,8 @@ "description": "Some grass sheets sewn together. Itchy, but more comfortable than the cold.", "weight": "1020 g", "volume": "1400 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "dry_plant" ], "symbol": "[", diff --git a/data/json/items/generic/casing.json b/data/json/items/generic/casing.json index ee7e0d3ce3f70..bd41f845d7c96 100644 --- a/data/json/items/generic/casing.json +++ b/data/json/items/generic/casing.json @@ -33,8 +33,8 @@ "looks_like": "9mm_casing", "type": "GENERIC", "category": "spare_parts", - "price": 100, - "price_postapoc": 0, + "price": "1 USD", + "price_postapoc": "0 cent", "name": { "str": "unused .22 casing" }, "symbol": "=", "color": "yellow", @@ -49,8 +49,8 @@ "looks_like": "22_casing_new", "type": "GENERIC", "category": "spare_parts", - "price": 90, - "price_postapoc": 0, + "price": "90 cent", + "price_postapoc": "0 cent", "name": { "str": "unused .22 short casing" }, "symbol": "=", "color": "yellow", diff --git a/data/json/items/generic/currency.json b/data/json/items/generic/currency.json index 0d5acd850ff81..ca4fb722c6932 100644 --- a/data/json/items/generic/currency.json +++ b/data/json/items/generic/currency.json @@ -5,8 +5,8 @@ "id": "FMCNote", "name": { "str_sp": "merch" }, "description": "The Free Merchant Certified Note, also known by names such as a 'c-note' or 'merch', is a currency based on old American bills. Fifty dollar bills and larger are printed with a promissory note signed by the treasurer of the Free Merchants, along with a complex design. The note explains that this can be exchanged for food, water, and other services through the Free Merchants in the Refugee Center.", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "//": "$50 bills have substantial pre-Cataclysm value, but are worth 1 meat jerky", "weight": "1 g", "volume": "1 ml", @@ -22,8 +22,8 @@ "id": "RobofacCoin", "name": { "str": "Hub 01 Gold Coin" }, "description": "A small but surprisingly heavy gold coin. One side is etched with circuitry and the other side reads 'Hub 01 exchange currency'.", - "price": 90000, - "price_postapoc": 5000, + "price": "900 USD", + "price_postapoc": "50 USD", "//": "Low carat gold alloy for hardness, but it's still the best part of an ounce of gold. Yes, the weight is correct for the volume.", "weight": "28 g", "volume": "2ml", @@ -39,8 +39,8 @@ "id": "FlatCoin", "name": { "str": "FlatCoin" }, "description": "A coin that has been flattened in a novelty coin flattening machine. The machine has been somewhat crudely altered so that the design - which appears to once have been Mickey Mouse - is overlaid with a hand-drawn emblem of a book. There is some text that faintly reads 'Campus Exchange Token'.", - "price": 5, - "price_postapoc": 250, + "price": "5 cent", + "price_postapoc": "2 USD 50 cent", "weight": "18 g", "volume": "1 ml", "to_hit": -3, @@ -55,8 +55,8 @@ "id": "signed_chit", "name": { "str": "chit" }, "description": "A slip of paper signed by the issuer.", - "price": 5, - "price_postapoc": 250, + "price": "5 cent", + "price_postapoc": "2 USD 50 cent", "weight": "1 g", "volume": "1 ml", "to_hit": -3, @@ -71,8 +71,8 @@ "id": "icon", "name": { "str": "icon" }, "description": "A small picture, about the size of an ID card, symbolizing a religious figure. On the back, there is text that faintly reads 'New England Church Community'.", - "price": 200, - "price_postapoc": 250, + "price": "2 USD", + "price_postapoc": "2 USD 50 cent", "weight": "1 g", "volume": "2 ml", "to_hit": -3, @@ -89,8 +89,8 @@ "description": "A one-cent coin, featuring a portrait of Abraham Lincoln. You could flip it.", "weight": "3 g", "volume": "1 ml", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "copper" ], "symbol": "o", "color": "brown", @@ -105,8 +105,8 @@ "description": "A five-cent coin, featuring a portrait of Thomas Jefferson. You could flip it.", "weight": "5 g", "volume": "1 ml", - "price": 5, - "price_postapoc": 1, + "price": "5 cent", + "price_postapoc": "1 cent", "material": [ "copper" ], "symbol": "o", "color": "light_gray", @@ -121,8 +121,8 @@ "description": "A ten-cent coin, featuring a portrait of Franklin D Roosevelt. You could flip it.", "weight": "2 g", "volume": "1 ml", - "price": 10, - "price_postapoc": 1, + "price": "10 cent", + "price_postapoc": "1 cent", "material": [ "copper" ], "symbol": "o", "color": "light_gray", @@ -137,8 +137,8 @@ "description": "A twenty-five-cent coin, featuring a portrait of George Washington. You could flip it.", "weight": "6 g", "volume": "1 ml", - "price": 25, - "price_postapoc": 1, + "price": "25 cent", + "price_postapoc": "1 cent", "material": [ "copper" ], "symbol": "o", "color": "light_gray", @@ -153,8 +153,8 @@ "description": "A fifty-cent coin, featuring a portrait of John F Kennedy. You could flip it.", "weight": "11 g", "volume": "1 ml", - "price": 50, - "price_postapoc": 1, + "price": "50 cent", + "price_postapoc": "1 cent", "material": [ "copper" ], "symbol": "o", "color": "light_gray", @@ -169,8 +169,8 @@ "description": "A one-dollar coin, featuring a portrait of Susan B Anthony. You could flip it.", "weight": "8 g", "volume": "1 ml", - "price": 100, - "price_postapoc": 1, + "price": "1 USD", + "price_postapoc": "1 cent", "material": [ "copper" ], "symbol": "o", "color": "light_gray", @@ -185,8 +185,8 @@ "description": "The official silver bullion coin of the United States, it has a nominal face value of one dollar and is guaranteed to contain one troy ounce of 99.9% pure silver.", "weight": "31 g", "volume": "1 ml", - "price": 2300, - "price_postapoc": 310, + "price": "23 USD", + "price_postapoc": "3 USD 10 cent", "material": [ "silver" ], "symbol": "o", "color": "light_gray", @@ -201,8 +201,8 @@ "description": "The official 24-karat bullion coin of the United States, it has a nominal face value of fifty dollars and is guaranteed to contain one troy ounce of 99.99% pure gold.", "weight": "31 g", "volume": "1 ml", - "price": 175000, - "price_postapoc": 600, + "price": "1 kUSD 750 USD", + "price_postapoc": "6 USD", "material": [ "gold" ], "symbol": "o", "color": "yellow", @@ -217,8 +217,8 @@ "description": "A coin wrapper capable of holding between twenty and fifty coins, depending on denomination, in accordance with American Banking Standards.", "weight": "1 g", "volume": "1 ml", - "price": 1, - "price_postapoc": 0, + "price": "1 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "symbol": "$", "color": "dark_gray", @@ -239,8 +239,8 @@ "description": "A one-dollar bill, featuring a portrait of George Washington.", "weight": "1 g", "volume": "1 ml", - "price": 100, - "price_postapoc": 0, + "price": "1 USD", + "price_postapoc": "0 cent", "material": [ "paper" ], "symbol": "$", "color": "green", @@ -256,8 +256,8 @@ "copy-from": "money_one", "color": "green", "symbol": "$", - "price": 200, - "price_postapoc": 0, + "price": "2 USD", + "price_postapoc": "0 cent", "flags": [ "OLD_CURRENCY", "BANK_NOTE_SHAPED" ] }, { @@ -269,8 +269,8 @@ "copy-from": "money_one", "color": "green", "symbol": "$", - "price": 500, - "price_postapoc": 0, + "price": "5 USD", + "price_postapoc": "0 cent", "flags": [ "OLD_CURRENCY", "BANK_NOTE_SHAPED" ] }, { @@ -282,8 +282,8 @@ "copy-from": "money_one", "color": "green", "symbol": "$", - "price": 1000, - "price_postapoc": 0, + "price": "10 USD", + "price_postapoc": "0 cent", "flags": [ "OLD_CURRENCY", "BANK_NOTE_SHAPED" ] }, { @@ -295,8 +295,8 @@ "copy-from": "money_one", "color": "green", "symbol": "$", - "price": 2000, - "price_postapoc": 0, + "price": "20 USD", + "price_postapoc": "0 cent", "flags": [ "OLD_CURRENCY", "BANK_NOTE_SHAPED" ] }, { @@ -308,8 +308,8 @@ "copy-from": "money_one", "color": "green", "symbol": "$", - "price": 5000, - "price_postapoc": 1, + "price": "50 USD", + "price_postapoc": "1 cent", "flags": [ "OLD_CURRENCY", "BANK_NOTE_SHAPED" ] }, { @@ -321,8 +321,8 @@ "copy-from": "money_one", "color": "green", "symbol": "$", - "price": 10000, - "price_postapoc": 1, + "price": "100 USD", + "price_postapoc": "1 cent", "flags": [ "OLD_CURRENCY", "BANK_NOTE_SHAPED" ] }, { @@ -338,8 +338,8 @@ "color": "green", "symbol": "$", "material": [ "paper" ], - "price": 10000, - "price_postapoc": 0, + "price": "100 USD", + "price_postapoc": "0 cent", "flags": [ "OLD_CURRENCY", "BANK_NOTE_STRAP_SHAPED" ] }, { @@ -351,8 +351,8 @@ "copy-from": "money_strap_one", "color": "green", "symbol": "$", - "price": 20000, - "price_postapoc": 0 + "price": "200 USD", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -363,8 +363,8 @@ "copy-from": "money_strap_one", "color": "green", "symbol": "$", - "price": 50000, - "price_postapoc": 0 + "price": "500 USD", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -375,8 +375,8 @@ "copy-from": "money_strap_one", "color": "green", "symbol": "$", - "price": 100000, - "price_postapoc": 0 + "price": "1 kUSD", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -387,8 +387,8 @@ "copy-from": "money_strap_one", "color": "green", "symbol": "$", - "price": 200000, - "price_postapoc": 0 + "price": "2 kUSD", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -399,8 +399,8 @@ "copy-from": "money_strap_one", "color": "green", "symbol": "$", - "price": 500000, - "price_postapoc": 100 + "price": "5 kUSD", + "price_postapoc": "1 USD" }, { "type": "GENERIC", @@ -411,8 +411,8 @@ "copy-from": "money_strap_one", "color": "green", "symbol": "$", - "price": 1000000, - "price_postapoc": 100 + "price": "10 kUSD", + "price_postapoc": "1 USD" }, { "type": "GENERIC", @@ -422,8 +422,8 @@ "looks_like": "money_strap_one", "copy-from": "FMCNote", "color": "white", - "price": 500000, - "price_postapoc": 25000, + "price": "5 kUSD", + "price_postapoc": "250 USD", "weight": "100 g", "volume": "113 ml", "flags": [ "BANK_NOTE_STRAP_SHAPED" ] @@ -441,8 +441,8 @@ "color": "green", "symbol": "$", "material": [ "paper" ], - "price": 100000, - "price_postapoc": 0, + "price": "1 kUSD", + "price_postapoc": "0 cent", "flags": [ "OLD_CURRENCY" ] }, { @@ -454,8 +454,8 @@ "copy-from": "money_bundle_one", "color": "green", "symbol": "$", - "price": 200000, - "price_postapoc": 0 + "price": "2 kUSD", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -466,8 +466,8 @@ "copy-from": "money_bundle_one", "color": "green", "symbol": "$", - "price": 500000, - "price_postapoc": 0 + "price": "5 kUSD", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -478,8 +478,8 @@ "copy-from": "money_bundle_one", "color": "green", "symbol": "$", - "price": 1000000, - "price_postapoc": 0 + "price": "10 kUSD", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -490,8 +490,8 @@ "copy-from": "money_bundle_one", "color": "green", "symbol": "$", - "price": 2000000, - "price_postapoc": 0 + "price": "20 kUSD", + "price_postapoc": "0 cent" }, { "type": "GENERIC", @@ -502,8 +502,8 @@ "copy-from": "money_bundle_one", "color": "green", "symbol": "$", - "price": 5000000, - "price_postapoc": 1000 + "price": "50 kUSD", + "price_postapoc": "10 USD" }, { "type": "GENERIC", @@ -514,8 +514,8 @@ "copy-from": "money_bundle_one", "color": "green", "symbol": "$", - "price": 10000000, - "price_postapoc": 1000 + "price": "100 kUSD", + "price_postapoc": "10 USD" }, { "type": "GENERIC", @@ -525,8 +525,8 @@ "looks_like": "money_bundle_one", "copy-from": "money_strap_FMCNote", "color": "green", - "price": 5000000, - "price_postapoc": 250000, + "price": "50 kUSD", + "price_postapoc": "2 kUSD 500 USD", "weight": "1000 g", "volume": "1129 ml" }, @@ -536,8 +536,8 @@ "id": "tacoma_drink_token", "name": { "str": "Tacoma drink token" }, "description": "A ordinary-looking bottle cap with a stamped logo of the Tacoma ranch on the inside. You can take it back to the bartender with your glass for a small refund.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "//": "Dimensions of a bottle cap", "weight": "2 g", "volume": "6 ml", diff --git a/data/json/items/generic/dining_kitchen.json b/data/json/items/generic/dining_kitchen.json index 542bdf40a83b4..8302ad9b8400f 100644 --- a/data/json/items/generic/dining_kitchen.json +++ b/data/json/items/generic/dining_kitchen.json @@ -6,8 +6,8 @@ "description": "generic item template", "symbol": ";", "color": "light_gray", - "price": 100, - "price_postapoc": 0, + "price": "1 USD", + "price_postapoc": "0 cent", "weight": "48 g", "volume": "25 ml", "material": [ "steel" ], @@ -21,8 +21,8 @@ "description": "generic item template", "symbol": ";", "color": "light_gray", - "price": 200, - "price_postapoc": 0, + "price": "2 USD", + "price_postapoc": "0 cent", "weight": "158 g", "volume": "75 ml", "material": [ "steel" ], @@ -36,8 +36,8 @@ "description": "generic item template", "symbol": ";", "color": "light_gray", - "price": 10, - "price_postapoc": 0, + "price": "10 cent", + "price_postapoc": "0 cent", "weight": "28 g", "volume": "25 ml", "material": [ "plastic" ], @@ -51,8 +51,8 @@ "type": "GENERIC", "symbol": ")", "color": "yellow", - "price": 1200, - "price_postapoc": 0, + "price": "12 USD", + "price_postapoc": "0 cent", "material": [ "ceramic" ], "weight": "375 g", "volume": "375 ml", @@ -66,8 +66,8 @@ "type": "GENERIC", "symbol": ")", "color": "cyan", - "price": 1400, - "price_postapoc": 0, + "price": "14 USD", + "price_postapoc": "0 cent", "material": [ "glass" ], "weight": "322 g", "volume": "262 ml", @@ -81,8 +81,8 @@ "type": "GENERIC", "symbol": ")", "color": "light_gray", - "price": 400, - "price_postapoc": 0, + "price": "4 USD", + "price_postapoc": "0 cent", "material": [ "tin" ], "weight": "262 g", "volume": "262 ml", @@ -96,8 +96,8 @@ "type": "GENERIC", "symbol": ")", "color": "light_cyan", - "price": 400, - "price_postapoc": 0, + "price": "4 USD", + "price_postapoc": "0 cent", "material": [ "plastic" ], "weight": "130 g", "volume": "262 ml", @@ -111,8 +111,8 @@ "type": "GENERIC", "symbol": ")", "to_hit": { "grip": "bad", "length": "hand", "surface": "any", "balance": "clumsy" }, - "price": 4500, - "price_postapoc": 10, + "price": "45 USD", + "price_postapoc": "10 cent", "use_action": [ "HEAT_FOOD" ], "qualities": [ [ "COOK", 3 ], [ "BOIL", 2 ], [ "CONTAIN", 1 ], [ "CHEM", 1 ] ], "flags": [ "ALLOWS_REMOTE_USE" ] @@ -646,7 +646,7 @@ "weight": "43 g", "volume": "45 ml", "longest_side": "21 cm", - "price": 75, + "price": "75 cent", "copy-from": "base_silverware", "flags": [ "SHEATH_KNIFE", "ALLOWS_BODY_BLOCK", "FRAGILE_MELEE" ], "weapon_category": [ "SHIVS" ], @@ -678,7 +678,7 @@ "weight": "43 g", "volume": "70 ml", "longest_side": "19 cm", - "price": 69, + "price": "69 cent", "copy-from": "base_silverware", "flags": [ "SHEATH_KNIFE", "ALLOWS_BODY_BLOCK" ], "to_hit": { "grip": "solid", "length": "hand", "surface": "point", "balance": "neutral" }, @@ -858,7 +858,7 @@ "symbol": "X", "color": "light_gray", "price": "1 USD", - "price_postapoc": 0, + "price_postapoc": "0 cent", "weight": "11 g", "volume": "40 ml", "longest_side": "23 cm", @@ -960,7 +960,7 @@ "weight": "50 g", "volume": "195 ml", "longest_side": "24 cm", - "price": 435, + "price": "4 USD 35 cent", "material": [ "rubber" ], "copy-from": "base_plastic_silverware", "//": "Based on https://www.amazon.com/dp/B001BKWXOY" @@ -980,7 +980,7 @@ "flags": [ "DURABLE_MELEE" ], "volume": "1450 ml", "price": "8 USD", - "price_postapoc": 5, + "price_postapoc": "5 cent", "to_hit": { "grip": "none", "length": "short", "surface": "any", "balance": "clumsy" }, "melee_damage": { "bash": 7 }, "//": "Based on https://www.amazon.com/dp/B000ARPJRM" @@ -1146,7 +1146,7 @@ "weight": "8440 g", "volume": "30 L", "longest_side": "35 cm", - "price": 10000, + "price": "100 USD", "to_hit": -2, "material": [ "clay" ], "symbol": ")", @@ -1254,8 +1254,8 @@ "weight": "6000 g", "volume": "1050 ml", "longest_side": "20 cm", - "price": 200, - "price_postapoc": 5, + "price": "2 USD", + "price_postapoc": "5 cent", "to_hit": 1, "material": [ "steel" ], "symbol": ")", @@ -1283,8 +1283,8 @@ "weight": "300 g", "volume": "1100 ml", "longest_side": "20 cm", - "price": 200, - "price_postapoc": 5, + "price": "2 USD", + "price_postapoc": "5 cent", "to_hit": 1, "material": [ "copper" ], "symbol": ")", @@ -1347,8 +1347,8 @@ "weight": "318 g", "symbol": ")", "qualities": [ [ "SIEVE", 2 ], [ "WINNOW", 1 ], [ "STRAIN", 1 ] ], - "price": 600, - "price_postapoc": 5 + "price": "6 USD", + "price_postapoc": "5 cent" }, { "id": "splatter_guard", @@ -1359,8 +1359,8 @@ "weight": "357 g", "symbol": ")", "qualities": [ [ "SIEVE", 2 ], [ "STRAIN", 1 ] ], - "price": 600, - "price_postapoc": 5 + "price": "6 USD", + "price_postapoc": "5 cent" }, { "id": "cutting_board", @@ -1378,7 +1378,7 @@ "volume": "2625 ml", "longest_side": "41 cm", "price": "48 USD", - "price_postapoc": 5, + "price_postapoc": "5 cent", "melee_damage": { "bash": 7 }, "//": "Based on https://www.amazon.com/dp/B00063QBL8" }, @@ -1390,8 +1390,8 @@ "type": "GENERIC", "symbol": ")", "color": "light_gray", - "price": 10, - "price_postapoc": 0, + "price": "10 cent", + "price_postapoc": "0 cent", "material": [ "steel" ], "weight": "300 g", "volume": "250 ml", diff --git a/data/json/items/generic/mail.json b/data/json/items/generic/mail.json index 369352d43e435..ffcdc558db29e 100644 --- a/data/json/items/generic/mail.json +++ b/data/json/items/generic/mail.json @@ -9,8 +9,8 @@ "weight": "6750 mg", "volume": "80 ml", "longest_side": "241 mm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "pocket_data": [ { @@ -34,8 +34,8 @@ "weight": "3 g", "volume": "6 ml", "longest_side": "297 mm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "symbol": "`", "color": "white", @@ -117,8 +117,8 @@ "weight": "6 g", "volume": "6 ml", "longest_side": "152 mm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "symbol": "`", "color": "white" @@ -133,8 +133,8 @@ "weight": "5 g", "volume": "5 ml", "longest_side": "80 mm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "plastic" ], "variant_type": "generic", "variants": [ @@ -187,8 +187,8 @@ "weight": "30 g", "volume": "72 ml", "longest_side": "177 mm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "variant_type": "generic", "variants": [ diff --git a/data/json/items/generic/skulls.json b/data/json/items/generic/skulls.json index f59b756860c38..5a0f3400bbb9a 100644 --- a/data/json/items/generic/skulls.json +++ b/data/json/items/generic/skulls.json @@ -10,8 +10,8 @@ "volume": "1400 ml", "symbol": "@", "color": "white", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "bone" ] }, { diff --git a/data/json/items/generic/spares.json b/data/json/items/generic/spares.json index d6e7deba9062d..89051543b3763 100644 --- a/data/json/items/generic/spares.json +++ b/data/json/items/generic/spares.json @@ -17,8 +17,8 @@ "material": [ "rubber", "steel" ], "weight": "850 g", "volume": "500 ml", - "price": 1200, - "price_postapoc": 500 + "price": "12 USD", + "price_postapoc": "5 USD" }, { "id": "drivebelt_makeshift", @@ -29,8 +29,8 @@ "material": [ "cotton", "leather" ], "weight": "1250 g", "volume": "750 ml", - "price": 200, - "price_postapoc": 50 + "price": "2 USD", + "price_postapoc": "50 cent" }, { "id": "five-point_harness", @@ -41,8 +41,8 @@ "material": [ "nylon", "steel" ], "weight": "2204 g", "volume": "750 ml", - "price": 10000, - "price_postapoc": 5000 + "price": "100 USD", + "price_postapoc": "50 USD" }, { "id": "filter_air", @@ -53,8 +53,8 @@ "material": [ "plastic", "paper" ], "weight": "360 g", "volume": "500 ml", - "price": 1900, - "price_postapoc": 200 + "price": "19 USD", + "price_postapoc": "2 USD" }, { "id": "filter_air_makeshift", @@ -65,8 +65,8 @@ "material": [ "plastic", "paper" ], "weight": "480 g", "volume": "750 ml", - "price": 200, - "price_postapoc": 50 + "price": "2 USD", + "price_postapoc": "50 cent" }, { "id": "filter_liquid", @@ -78,8 +78,8 @@ "material": [ "steel", "paper" ], "weight": "644 g", "volume": "1225 ml", - "price": 1900, - "price_postapoc": 250 + "price": "19 USD", + "price_postapoc": "2 USD 50 cent" }, { "id": "filter_liquid_makeshift", @@ -90,8 +90,8 @@ "material": [ "steel", "paper" ], "weight": "690 g", "volume": "750 ml", - "price": 200, - "price_postapoc": 50 + "price": "2 USD", + "price_postapoc": "50 cent" }, { "id": "glowplug", @@ -102,8 +102,8 @@ "material": [ "plastic", "copper" ], "weight": "260 g", "volume": "250 ml", - "price": 2300, - "price_postapoc": 500 + "price": "23 USD", + "price_postapoc": "5 USD" }, { "id": "pump_complex", @@ -114,8 +114,8 @@ "material": [ "iron" ], "weight": "2800 g", "volume": "1250 ml", - "price": 28900, - "price_postapoc": 750, + "price": "289 USD", + "price_postapoc": "7 USD 50 cent", "flags": [ "IRREPLACEABLE_CONSUMABLE" ] }, { @@ -127,8 +127,8 @@ "material": [ "iron" ], "weight": "2400 g", "volume": "1 L", - "price": 1800, - "price_postapoc": 500 + "price": "18 USD", + "price_postapoc": "5 USD" }, { "id": "compressor", @@ -140,8 +140,8 @@ "weight": "7 kg", "volume": "3 L", "to_hit": -4, - "price": 10000, - "price_postapoc": 2000, + "price": "100 USD", + "price_postapoc": "20 USD", "melee_damage": { "bash": 16 } }, { @@ -154,8 +154,8 @@ "weight": "2 kg", "volume": "500 ml", "longest_side": "60 cm", - "price": 40000, - "price_postapoc": 2000, + "price": "400 USD", + "price_postapoc": "20 USD", "melee_damage": { "bash": 12 } }, { @@ -166,8 +166,8 @@ "description": "A small but strong permanent magnet made from alnico alloy, which produces a magnetic field that attracts ferromagnetic materials such as steel. Useful for crafting.", "weight": "180 g", "volume": "25 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "material": [ "iron" ], "symbol": ",", "color": "light_gray", @@ -182,8 +182,8 @@ "material": [ "steel" ], "weight": "4 kg", "volume": "500 ml", - "price": 5000, - "price_postapoc": 2000, + "price": "50 USD", + "price_postapoc": "20 USD", "melee_damage": { "bash": 16 } }, { @@ -195,8 +195,8 @@ "material": [ "steel" ], "weight": "2 kg", "volume": "1500 ml", - "price": 5000, - "price_postapoc": 2000 + "price": "50 USD", + "price_postapoc": "20 USD" }, { "id": "hd_valve", @@ -207,8 +207,8 @@ "material": [ "steel" ], "weight": "5 kg", "volume": "2 L", - "price": 10000, - "price_postapoc": 2000 + "price": "100 USD", + "price_postapoc": "20 USD" }, { "id": "pressure_gauge", @@ -219,8 +219,8 @@ "material": [ "steel" ], "weight": "2 kg", "volume": "1 L", - "price": 10000, - "price_postapoc": 2000 + "price": "100 USD", + "price_postapoc": "20 USD" }, { "id": "pyrometer", @@ -231,8 +231,8 @@ "material": [ "steel" ], "weight": "500 g", "volume": "250 ml", - "price": 10000, - "price_postapoc": 2000 + "price": "100 USD", + "price_postapoc": "20 USD" }, { "id": "hd_compressor", @@ -243,8 +243,8 @@ "material": [ "steel" ], "weight": "30 kg", "volume": "6 L", - "price": 60000, - "price_postapoc": 2000 + "price": "600 USD", + "price_postapoc": "20 USD" }, { "id": "large_pressure_vessel", @@ -256,8 +256,8 @@ "weight": "300 kg", "volume": "200 L", "longest_side": "300 cm", - "price": 200000, - "price_postapoc": 2000 + "price": "2 kUSD", + "price_postapoc": "20 USD" }, { "id": "small_pressure_vessel", @@ -269,8 +269,8 @@ "weight": "30 kg", "volume": "10 L", "longest_side": "40 cm", - "price": 200000, - "price_postapoc": 2000 + "price": "2 kUSD", + "price_postapoc": "20 USD" }, { "id": "pipe_fittings", @@ -281,8 +281,8 @@ "material": [ "iron" ], "weight": "500 g", "volume": "1 L", - "price": 1800, - "price_postapoc": 25 + "price": "18 USD", + "price_postapoc": "25 cent" }, { "id": "simple_crank", @@ -293,7 +293,7 @@ "material": [ "iron" ], "weight": "750 g", "volume": "1 L", - "price": 2400, - "price_postapoc": 700 + "price": "24 USD", + "price_postapoc": "7 USD" } ] diff --git a/data/json/items/generic/storage.json b/data/json/items/generic/storage.json index d60837f339f19..ca905469cb6c5 100644 --- a/data/json/items/generic/storage.json +++ b/data/json/items/generic/storage.json @@ -6,8 +6,8 @@ "description": "A plastic clothes hanger with a metal hook to hang something on a rail.", "weight": "100 g", "volume": "150 ml", - "price": 100, - "price_postapoc": 0, + "price": "1 USD", + "price_postapoc": "0 cent", "material": [ "plastic", "steel" ], "symbol": ";", "color": "brown" @@ -21,8 +21,8 @@ "weight": "127 g", "volume": "500 ml", "longest_side": "45 cm", - "price": 4000, - "price_postapoc": 200, + "price": "40 USD", + "price_postapoc": "2 USD", "to_hit": -1, "material": [ "nylon" ], "symbol": "[", diff --git a/data/json/items/generic/string.json b/data/json/items/generic/string.json index a95518b013b85..4985e2618cb57 100644 --- a/data/json/items/generic/string.json +++ b/data/json/items/generic/string.json @@ -25,8 +25,8 @@ "description": "A 6-inch (or about 15 cm) long piece of cotton string.", "weight": "6 g", "volume": "10ml", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": ",", "color": "light_gray", diff --git a/data/json/items/generic/toys_and_sports.json b/data/json/items/generic/toys_and_sports.json index 15ec26dd69ee6..91bc534cd9151 100644 --- a/data/json/items/generic/toys_and_sports.json +++ b/data/json/items/generic/toys_and_sports.json @@ -7,8 +7,8 @@ "//": "https://amz.run/7YNm", "weight": "410 g", "volume": "725 ml", - "price": 6000, - "price_postapoc": 0, + "price": "60 USD", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": "|", @@ -45,7 +45,7 @@ "weight": "200 g", "longest_side": "37 cm", "price": "12 USD", - "price_postapoc": 5, + "price_postapoc": "5 cent", "to_hit": -1, "color": "blue", "symbol": "/", @@ -62,8 +62,8 @@ "weight": "5 g", "volume": "600 ml", "longest_side": "90 mm", - "price": 200, - "price_postapoc": 0, + "price": "2 USD", + "price_postapoc": "0 cent", "material": [ "rubber", "plastic" ], "symbol": "-", "color": "white", @@ -78,8 +78,8 @@ "weight": "3 g", "volume": "250 ml", "longest_side": "70 mm", - "price": 1000, - "price_postapoc": 0, + "price": "10 USD", + "price_postapoc": "0 cent", "material": [ "wood" ], "symbol": "-", "color": "white" @@ -93,8 +93,8 @@ "weight": "46 g", "longest_side": "43 mm", "volume": "250 ml", - "price": 2000, - "price_postapoc": 0, + "price": "20 USD", + "price_postapoc": "0 cent", "material": [ "plastic" ], "symbol": "*", "color": "white", @@ -109,8 +109,8 @@ "name": { "str": "pool ball" }, "description": "A colorful, hard plastic ball for playing games on a pool table. Essentially a rock.", "category": "other", - "price": 3000, - "price_postapoc": 0, + "price": "30 USD", + "price_postapoc": "0 cent", "material": [ "plastic" ], "ammo_type": "rock", "flags": [ "NPC_THROWN" ], @@ -133,8 +133,8 @@ "name": { "str": "bowling ball" }, "description": "A large, heavy ball with finger holes for better grip. Before the apocalypse, its main purpose was to be rolled along waxed floors.", "category": "other", - "price": 3000, - "price_postapoc": 10, + "price": "30 USD", + "price_postapoc": "10 cent", "material": [ "ceramic" ], "weight": "7257 g", "volume": "5277 ml", @@ -150,8 +150,8 @@ "name": { "str": "baseball" }, "category": "other", "description": "A baseball, good for throwing at enemies. Getting hit with one of these hurts a lot more than you might think.", - "price": 1000, - "price_postapoc": 0, + "price": "10 USD", + "price_postapoc": "0 cent", "material": [ "leather" ], "ammo_type": "rock", "flags": [ "NPC_THROWN" ], @@ -174,8 +174,8 @@ "name": { "str": "football" }, "category": "other", "description": "An oval-shaped ball made of leather and string, it's easily thrown but does little damage. You could take it apart into leather if you wanted.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ { "type": "leather", "portion": 9 }, { "type": "rubber" } ], "weight": "400 g", "volume": "750 ml", @@ -191,8 +191,8 @@ "name": { "str": "basketball" }, "category": "other", "description": "A high-quality, size 7 indoor basketball.", - "price": 1200, - "price_postapoc": 10, + "price": "12 USD", + "price_postapoc": "10 cent", "material": [ "rubber" ], "weight": "800 g", "volume": "1 L", @@ -208,8 +208,8 @@ "name": { "str": "volleyball" }, "category": "other", "description": "A standard regulation volleyball.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "rubber" ], "weight": "260 g", "volume": "1 L", @@ -226,8 +226,8 @@ "name": { "str": "aim game target practice kit" }, "category": "other", "description": "A collection of laser guns and targets designed to help you practice shooting. The spot you 'hit' is displayed on the targets.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "plastic", "aluminum" ], "ammo": [ "battery" ], "pocket_data": [ @@ -251,8 +251,8 @@ "name": { "str": "beach volleyball" }, "category": "other", "description": "A brightly colored beach volleyball. It is slightly larger than a regular white one.", - "price": 1200, - "price_postapoc": 10, + "price": "12 USD", + "price_postapoc": "10 cent", "material": [ "rubber" ], "weight": "280 g", "volume": "1 L", @@ -268,8 +268,8 @@ "name": { "str": "hockey puck" }, "category": "other", "description": "A heavy circular block of solid rubber, normally used for playing hockey. You can throw it to cause some serious harm.", - "price": 1000, - "price_postapoc": 0, + "price": "10 USD", + "price_postapoc": "0 cent", "material": [ "rubber" ], "weight": "170 g", "volume": "250 ml", @@ -285,8 +285,8 @@ "name": { "str": "mannequin" }, "category": "other", "description": "A figure of an adult human, as seen in the display case at the mall. It might be able to fool some zombies if it could attract their attention.", - "price": 15000, - "price_postapoc": 500, + "price": "150 USD", + "price_postapoc": "5 USD", "material": [ "wood" ], "weight": "81500 g", "volume": "62500 ml", @@ -303,8 +303,8 @@ "name": { "str": "mannequin decoy" }, "category": "other", "description": "A figure of an adult human, as seen in the display case at the mall. This one is cradling a talking doll. It can make sound when powered by batteries and can be used to distract some zombies.", - "price": 15000, - "price_postapoc": 500, + "price": "150 USD", + "price_postapoc": "5 USD", "material": [ "wood" ], "weight": "81500 g", "volume": "62500 ml", diff --git a/data/json/items/gun/10mm.json b/data/json/items/gun/10mm.json index fd9723d57ac94..76c5cb397255b 100644 --- a/data/json/items/gun/10mm.json +++ b/data/json/items/gun/10mm.json @@ -20,8 +20,8 @@ "longest_side": "332 mm", "barrel_length": "197 mm", "//": "165mm + 32mm max OAL for 10mm. Revolvers just built different.", - "price": 74000, - "price_postapoc": 2250, + "price": "740 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -2, "material": [ "steel", "wood" ], "symbol": "(", @@ -61,8 +61,8 @@ "volume": "410 ml", "longest_side": "177 mm", "barrel_length": "96 mm", - "price": 60500, - "price_postapoc": 2500, + "price": "605 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "(", @@ -101,8 +101,8 @@ "volume": "480 ml", "longest_side": "205 mm", "barrel_length": "117 mm", - "price": 59200, - "price_postapoc": 2500, + "price": "592 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "(", @@ -135,8 +135,8 @@ "volume": "410 ml", "longest_side": "213 mm", "barrel_length": "153 mm", - "price": 65500, - "price_postapoc": 2700, + "price": "655 USD", + "price_postapoc": "27 USD", "dispersion": 500 }, { @@ -158,8 +158,8 @@ "volume": "2411 ml", "longest_side": "498 mm", "barrel_length": "225 mm", - "price": 360000, - "price_postapoc": 2300, + "price": "3 kUSD 600 USD", + "price_postapoc": "23 USD", "durability": 7, "min_cycle_recoil": 675, "ammo": "10mm", @@ -187,8 +187,8 @@ "volume": "413 ml", "longest_side": "210 mm", "barrel_length": "127 mm", - "price": 105000, - "price_postapoc": 2750, + "price": "1 kUSD 50 USD", + "price_postapoc": "27 USD 50 cent", "to_hit": -2, "material": [ "steel" ], "symbol": "(", @@ -221,8 +221,8 @@ "volume": "459 ml", "longest_side": "203 mm", "barrel_length": "114 mm", - "price": 64900, - "price_postapoc": 2500, + "price": "649 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "steel" ], "color": "dark_gray", @@ -252,8 +252,8 @@ "volume": "549 ml", "longest_side": "224 mm", "barrel_length": "127 mm", - "price": 50000, - "price_postapoc": 2250, + "price": "500 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -1, "material": [ "steel" ], "symbol": "(", @@ -284,8 +284,8 @@ "volume": "549 ml", "longest_side": "211 mm", "barrel_length": "133 mm", - "price": 50000, - "price_postapoc": 2250, + "price": "500 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -320,8 +320,8 @@ "weight": "2867 g", "volume": "4386 ml", "longest_side": "429 mm", - "price": 142900, - "price_postapoc": 2300, + "price": "1 kUSD 429 USD", + "price_postapoc": "23 USD", "skill": "pistol", "ammo": "10mm", "min_cycle_recoil": 675, @@ -348,8 +348,8 @@ "volume": "430 ml", "longest_side": "231 mm", "barrel_length": "127 mm", - "price": 269900, - "price_postapoc": 3000, + "price": "2 kUSD 699 USD", + "price_postapoc": "30 USD", "to_hit": -2, "material": [ "steel" ], "symbol": "(", diff --git a/data/json/items/gun/12mm.json b/data/json/items/gun/12mm.json index 6c618d79f49ad..0e9a605397659 100644 --- a/data/json/items/gun/12mm.json +++ b/data/json/items/gun/12mm.json @@ -9,8 +9,8 @@ "weight": "3914 g", "volume": "4958 ml", "longest_side": "1005 mm", - "price": 1920000, - "price_postapoc": 12000, + "price": "19 kUSD 200 USD", + "price_postapoc": "120 USD", "to_hit": -1, "material": [ "steel" ], "ammo": [ "12mm" ], diff --git a/data/json/items/gun/20x66mm.json b/data/json/items/gun/20x66mm.json index 7e2aa49b0b959..0150b2eaf77e4 100644 --- a/data/json/items/gun/20x66mm.json +++ b/data/json/items/gun/20x66mm.json @@ -11,8 +11,8 @@ "volume": "2250 ml", "longest_side": "920 mm", "barrel_length": "470 mm", - "price": 310000, - "price_postapoc": 2250, + "price": "3 kUSD 100 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -1, "material": [ "superalloy", "ceramic" ], "symbol": "(", @@ -50,8 +50,8 @@ "volume": "2450 ml", "longest_side": "775 mm", "barrel_length": "470 mm", - "price": 1320000, - "price_postapoc": 10000, + "price": "13 kUSD 200 USD", + "price_postapoc": "100 USD", "to_hit": -1, "material": [ "superalloy", "ceramic" ], "symbol": "(", @@ -88,8 +88,8 @@ "weight": "780 g", "volume": "750 ml", "longest_side": "165 mm", - "price": 330000, - "price_postapoc": 10000, + "price": "3 kUSD 300 USD", + "price_postapoc": "100 USD", "to_hit": -2, "material": [ "superalloy", "ceramic" ], "symbol": "(", diff --git a/data/json/items/gun/22.json b/data/json/items/gun/22.json index 175ef1f6e24ba..a4fa6c3107d4b 100644 --- a/data/json/items/gun/22.json +++ b/data/json/items/gun/22.json @@ -18,8 +18,8 @@ "volume": "2200 ml", "longest_side": "905 mm", "barrel_length": "470 mm", - "price": 163000, - "price_postapoc": 2500, + "price": "1 kUSD 630 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "steel" ], "symbol": "(", @@ -72,8 +72,8 @@ "volume": "2180 ml", "longest_side": "1029 mm", "barrel_length": "609 mm", - "price": 23000, - "price_postapoc": 2000, + "price": "230 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "iron", "wood" ], "symbol": "(", @@ -130,8 +130,8 @@ "volume": "100 ml", "longest_side": "129 mm", "barrel_length": "64 mm", - "price": 110000, - "price_postapoc": 500, + "price": "1 kUSD 100 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "dark_gray", @@ -167,8 +167,8 @@ "volume": "1610 ml", "longest_side": "1000 mm", "barrel_length": "610 mm", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", @@ -217,8 +217,8 @@ "volume": "2120 ml", "longest_side": "942 mm", "barrel_length": "406 mm", - "price": 27000, - "price_postapoc": 750, + "price": "270 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", @@ -301,8 +301,8 @@ "volume": "467 ml", "longest_side": "214 mm", "barrel_length": "99 mm", - "price": 36000, - "price_postapoc": 750, + "price": "360 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -2, "material": [ "aluminum", "steel", "plastic" ], "symbol": "(", @@ -350,8 +350,8 @@ "volume": "560 ml", "longest_side": "259 mm", "barrel_length": "139 mm", - "price": 35000, - "price_postapoc": 750, + "price": "350 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -2, "material": [ "aluminum", "steel", "plastic" ], "color": "dark_gray", @@ -394,8 +394,8 @@ "volume": "80 ml", "longest_side": "141 mm", "barrel_length": "64 mm", - "price": 7000, - "price_postapoc": 750, + "price": "70 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -3, "material": [ "budget_steel", "zinc" ], "color": "dark_gray", @@ -439,8 +439,8 @@ "volume": "290 ml", "longest_side": "183 mm", "barrel_length": "87 mm", - "price": 8500, - "price_postapoc": 750, + "price": "85 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -3, "material": [ "plastic", "zinc", "steel" ], "color": "dark_gray", diff --git a/data/json/items/gun/223.json b/data/json/items/gun/223.json index bbe0de5ea9fb0..f8311c102b44d 100644 --- a/data/json/items/gun/223.json +++ b/data/json/items/gun/223.json @@ -10,8 +10,8 @@ "volume": "1550 ml", "longest_side": "520 mm", "//2": "Numbers for weight, volume, and length calculations are based upon an AR-15's complete lower receiver. The difference will be made up for with integrated stats from the installable modular upper receivers.", - "price": 125000, - "price_postapoc": 4000, + "price": "1 kUSD 250 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "aluminum", "steel", "plastic" ], "symbol": "(", @@ -37,8 +37,8 @@ "volume": "1758 ml", "longest_side": "584 mm", "barrel_length": "191 mm", - "price": 91400, - "price_postapoc": 3500, + "price": "914 USD", + "price_postapoc": "35 USD", "to_hit": -2, "material": [ "steel", "aluminum" ], "symbol": "(", @@ -107,8 +107,8 @@ "volume": "1665 ml", "longest_side": "485 mm", "barrel_length": "234 mm", - "price": 86900, - "price_postapoc": 5500, + "price": "869 USD", + "price_postapoc": "55 USD", "to_hit": -2, "material": [ "steel", "aluminum", "plastic" ], "symbol": "(", @@ -170,8 +170,8 @@ "volume": "7986 ml", "longest_side": "740 mm", "barrel_length": "442 mm", - "price": 125000, - "price_postapoc": 2000, + "price": "1 kUSD 250 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -205,8 +205,8 @@ "volume": "3407 ml", "longest_side": "388 mm", "//2": "Numbers for weight, volume, and length calculations are based upon an AR-15's complete lower receiver. The difference will be made up for with integrated stats from the installable modular upper receivers.", - "price": 540000, - "price_postapoc": 2250, + "price": "5 kUSD 400 USD", + "price_postapoc": "22 USD 50 cent", "variant_type": "gun", "variants": [ { @@ -259,8 +259,8 @@ "volume": "4957 ml", "longest_side": "798 mm", "barrel_length": "355 mm", - "price": 540000, - "price_postapoc": 2250, + "price": "5 kUSD 400 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -1, "material": [ "steel", "aluminum", "plastic" ], "symbol": "(", @@ -323,8 +323,8 @@ "volume": "4640 ml", "longest_side": "1004 mm", "barrel_length": "480 mm", - "price": 210000, - "price_postapoc": 6000, + "price": "2 kUSD 100 USD", + "price_postapoc": "60 USD", "variant_type": "gun", "variants": [ { @@ -357,8 +357,8 @@ "volume": "10610 ml", "longest_side": "1035 mm", "barrel_length": "533 mm", - "price": 750000, - "price_postapoc": 8000, + "price": "7 kUSD 500 USD", + "price_postapoc": "80 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -431,8 +431,8 @@ "volume": "1760 ml", "longest_side": "470 mm", "//": "The volume, weight, and overall length of an average AR-15's complete upper receiver module have been deducted and will be made up for by the installable upper assemblies.", - "price": 240000, - "price_postapoc": 5000, + "price": "2 kUSD 400 USD", + "price_postapoc": "50 USD", "variant_type": "gun", "variants": [ { @@ -475,8 +475,8 @@ "volume": "3480 ml", "longest_side": "495 mm", "//": "The volume, weight, and overall length of an average AR-15's complete upper receiver module with a 20-inch barrel have been deducted and will be made up for by the installable upper assemblies.", - "price": 240000, - "price_postapoc": 5000, + "price": "2 kUSD 400 USD", + "price_postapoc": "50 USD", "variant_type": "gun", "variants": [ { @@ -532,8 +532,8 @@ "volume": "2400 ml", "longest_side": "727 mm", "barrel_length": "396 mm", - "price": 3450000, - "price_postapoc": 3500, + "price": "34 kUSD 500 USD", + "price_postapoc": "35 USD", "variant_type": "gun", "variants": [ { @@ -600,8 +600,8 @@ "volume": "2135 ml", "longest_side": "456 mm", "barrel_length": "165 mm", - "price": 125000, - "price_postapoc": 5500, + "price": "1 kUSD 250 USD", + "price_postapoc": "55 USD", "to_hit": -2, "material": [ "steel", "aluminum" ], "symbol": "(", @@ -663,8 +663,8 @@ "volume": "2900 ml", "longest_side": "977 mm", "barrel_length": "406 mm", - "price": 92100, - "price_postapoc": 3750, + "price": "921 USD", + "price_postapoc": "37 USD 50 cent", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", @@ -707,8 +707,8 @@ "volume": "2950 ml", "longest_side": "741 mm", "barrel_length": "348 mm", - "price": 320000, - "price_postapoc": 6000, + "price": "3 kUSD 200 USD", + "price_postapoc": "60 USD", "variant_type": "gun", "variants": [ { @@ -763,8 +763,8 @@ "volume": "3520 ml", "longest_side": "715 mm", "barrel_length": "508 mm", - "price": 490000, - "price_postapoc": 6000, + "price": "4 kUSD 900 USD", + "price_postapoc": "60 USD", "variant_type": "gun", "variants": [ { @@ -819,8 +819,8 @@ "volume": "2167 ml", "longest_side": "99 cm", "barrel_length": "465 mm", - "price": 79500, - "price_postapoc": 3000, + "price": "795 USD", + "price_postapoc": "30 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", @@ -864,8 +864,8 @@ "volume": "1286 ml", "longest_side": "48 cm", "barrel_length": "254 mm", - "price": 72500, - "price_postapoc": 2500, + "price": "725 USD", + "price_postapoc": "25 USD", "to_hit": -5, "material": [ "steel", "wood" ], "color": "brown", @@ -908,8 +908,8 @@ "volume": "3121 ml", "longest_side": "402 mm", "//": "The length, weight, and volume numbers are assigned to, roughly, represent an MDRX without a protruding barrel. the difference will be made up for with the installable conversion kits.", - "price": 173900, - "price_postapoc": 5000, + "price": "1 kUSD 739 USD", + "price_postapoc": "50 USD", "to_hit": -1, "material": [ "aluminum", "steel", "plastic" ], "symbol": "(", @@ -981,8 +981,8 @@ "volume": "4200 ml", "longest_side": "91 cm", "barrel_length": "419 mm", - "price": 225900, - "price_postapoc": 3500, + "price": "2 kUSD 259 USD", + "price_postapoc": "35 USD", "to_hit": -1, "material": [ "steel", "aluminum", "plastic" ], "color": "black", @@ -1050,8 +1050,8 @@ "volume": "2500 ml", "longest_side": "384 mm", "//": "The size calculations are taken from a CZ 600 with a half-extended buttstock, sitting at 790 mm, between the minimum and maximum of 690 and 890 mm. In addition, the length of a 16-inch barrel has been deducted and will be made up for by the installable barrel assemblies.", - "price": 115500, - "price_postapoc": 4000, + "price": "1 kUSD 155 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "aluminum", "steel", "plastic" ], "symbol": "(", @@ -1093,8 +1093,8 @@ "volume": "3421 ml", "longest_side": "693 mm", "barrel_length": "439 mm", - "price": 100000, - "price_postapoc": 5500, + "price": "1 kUSD", + "price_postapoc": "55 USD", "to_hit": -2, "material": [ "steel", "aluminum", "plastic" ], "symbol": "(", diff --git a/data/json/items/gun/270win.json b/data/json/items/gun/270win.json index 1e2dfb1fdc797..ddb623f063f70 100644 --- a/data/json/items/gun/270win.json +++ b/data/json/items/gun/270win.json @@ -18,8 +18,8 @@ "weight": "3410 g", "volume": "2202 ml", "longest_side": "1135 mm", - "price": 112600, - "price_postapoc": 2750, + "price": "1 kUSD 126 USD", + "price_postapoc": "27 USD 50 cent", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", diff --git a/data/json/items/gun/300.json b/data/json/items/gun/300.json index f920623434202..94104bec6ad98 100644 --- a/data/json/items/gun/300.json +++ b/data/json/items/gun/300.json @@ -11,8 +11,8 @@ "volume": "6182 ml", "longest_side": "1187 mm", "barrel_length": "610 mm", - "price": 1701000, - "price_postapoc": 3750, + "price": "17 kUSD 10 USD", + "price_postapoc": "37 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "ammo": [ "300" ], @@ -35,8 +35,8 @@ "volume": "3761 ml", "longest_side": "1183 mm", "barrel_length": "660 mm", - "price": 259500, - "price_postapoc": 5500, + "price": "2 kUSD 595 USD", + "price_postapoc": "55 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", @@ -73,8 +73,8 @@ "volume": "3205 ml", "longest_side": "1198 mm", "barrel_length": "610 mm", - "price": 46000, - "price_postapoc": 3250, + "price": "460 USD", + "price_postapoc": "32 USD 50 cent", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", @@ -112,8 +112,8 @@ "volume": "9800 ml", "longest_side": "1245 mm", "barrel_length": "660 mm", - "price": 253900, - "price_postapoc": 5500, + "price": "2 kUSD 539 USD", + "price_postapoc": "55 USD", "to_hit": -2, "material": [ "steel", "aluminum", "plastic" ], "symbol": "-", diff --git a/data/json/items/gun/3006.json b/data/json/items/gun/3006.json index d5f450c8d305b..3316c4613f3f1 100644 --- a/data/json/items/gun/3006.json +++ b/data/json/items/gun/3006.json @@ -10,8 +10,8 @@ "volume": "3610 ml", "longest_side": "1106 mm", "barrel_length": "559 mm", - "price": 85000, - "price_postapoc": 3000, + "price": "850 USD", + "price_postapoc": "30 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -52,8 +52,8 @@ "volume": "3160 ml", "longest_side": "1107 mm", "barrel_length": "610 mm", - "price": 90000, - "price_postapoc": 3500, + "price": "900 USD", + "price_postapoc": "35 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", @@ -93,8 +93,8 @@ "volume": "2840 ml", "longest_side": "1102 mm", "barrel_length": "610 mm", - "price": 80000, - "price_postapoc": 3250, + "price": "800 USD", + "price_postapoc": "32 USD 50 cent", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", @@ -135,8 +135,8 @@ "volume": "4450 ml", "longest_side": "1216 mm", "barrel_length": "610 mm", - "price": 350000, - "price_postapoc": 4000, + "price": "3 kUSD 500 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", @@ -178,8 +178,8 @@ "volume": "3190 ml", "longest_side": "1141 mm", "barrel_length": "635 mm", - "price": 87000, - "price_postapoc": 3500, + "price": "870 USD", + "price_postapoc": "35 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "color": "brown", @@ -212,8 +212,8 @@ "volume": "3350 ml", "longest_side": "1040mm", "barrel_length": "508 mm", - "price": 161900, - "price_postapoc": 4500, + "price": "1 kUSD 619 USD", + "price_postapoc": "45 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", diff --git a/data/json/items/gun/300BLK.json b/data/json/items/gun/300BLK.json index 01144b32b0dad..86d4c45add301 100644 --- a/data/json/items/gun/300BLK.json +++ b/data/json/items/gun/300BLK.json @@ -10,8 +10,8 @@ "volume": "3310 ml", "longest_side": "938 mm", "barrel_length": "419 mm", - "price": 234300, - "price_postapoc": 5500, + "price": "2 kUSD 343 USD", + "price_postapoc": "55 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -61,8 +61,8 @@ "volume": "2400 ml", "longest_side": "665 mm", "barrel_length": "419 mm", - "price": 490000, - "price_postapoc": 4500, + "price": "4 kUSD 900 USD", + "price_postapoc": "45 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -123,8 +123,8 @@ "//": "This is the unfolded version of the weapon. Folded, it's 597 mm", "longest_side": "775 mm", "barrel_length": "140 mm", - "price": 271900, - "price_postapoc": 3500, + "price": "2 kUSD 719 USD", + "price_postapoc": "35 USD", "color": "dark_gray", "ammo": [ "300blk" ], "dispersion": 160, diff --git a/data/json/items/gun/303.json b/data/json/items/gun/303.json index 7cb1a336a6821..97d6334770d7a 100644 --- a/data/json/items/gun/303.json +++ b/data/json/items/gun/303.json @@ -18,8 +18,8 @@ "volume": "3000 ml", "longest_side": "1132 mm", "barrel_length": "640 mm", - "price": 57375, - "price_postapoc": 3000, + "price": "573 USD 75 cent", + "price_postapoc": "30 USD", "to_hit": -1, "melee_damage": { "bash": 12 }, "material": [ "steel", "wood" ], @@ -64,8 +64,8 @@ "volume": "3000 ml", "longest_side": "1129 mm", "barrel_length": "640 mm", - "price": 57375, - "price_postapoc": 3000, + "price": "573 USD 75 cent", + "price_postapoc": "30 USD", "to_hit": -1, "melee_damage": { "bash": 12 }, "material": [ "steel", "wood" ], diff --git a/data/json/items/gun/308.json b/data/json/items/gun/308.json index 61e356f541364..9f611c76906c7 100644 --- a/data/json/items/gun/308.json +++ b/data/json/items/gun/308.json @@ -18,8 +18,8 @@ "volume": "4511 ml", "longest_side": "1090 mm", "barrel_length": "533 mm", - "price": 350000, - "price_postapoc": 5500, + "price": "3 kUSD 500 USD", + "price_postapoc": "55 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", @@ -59,8 +59,8 @@ "volume": "3724 ml", "longest_side": "1025 mm", "barrel_length": "450 mm", - "price": 205000, - "price_postapoc": 6000, + "price": "2 kUSD 50 USD", + "price_postapoc": "60 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", @@ -85,8 +85,8 @@ "volume": "8300 ml", "longest_side": "800 mm", "barrel_length": "559 mm", - "price": 5500000, - "price_postapoc": 10000, + "price": "55 kUSD", + "price_postapoc": "100 USD", "to_hit": -4, "material": [ "qt_steel" ], "symbol": "(", @@ -114,8 +114,8 @@ "weight": "5070 g", "volume": "3672 ml", "longest_side": "889 mm", - "price": 195000, - "price_postapoc": 6500, + "price": "1 kUSD 950 USD", + "price_postapoc": "65 USD", "dispersion": 150, "material": [ "steel", "plastic" ], "//": "These *sometimes* have the mode selector disabled, but disabling it isn't difficult for operators.", @@ -153,8 +153,8 @@ "volume": "3970 ml", "longest_side": "1126 mm", "barrel_length": "559 mm", - "price": 130000, - "price_postapoc": 3500, + "price": "1 kUSD 300 USD", + "price_postapoc": "35 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", @@ -191,8 +191,8 @@ "volume": "11780 ml", "longest_side": "1260 mm", "barrel_length": "551 mm", - "price": 1000000, - "price_postapoc": 7500, + "price": "10 kUSD", + "price_postapoc": "75 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -230,8 +230,8 @@ "volume": "10900 ml", "longest_side": "1105 mm", "barrel_length": "559 mm", - "price": 1000000, - "price_postapoc": 7500, + "price": "10 kUSD", + "price_postapoc": "75 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -277,8 +277,8 @@ "volume": "2875 ml", "longest_side": "1041 mm", "barrel_length": "559 mm", - "price": 53000, - "price_postapoc": 4250, + "price": "530 USD", + "price_postapoc": "42 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -326,8 +326,8 @@ "volume": "4084 ml", "longest_side": "992 mm", "barrel_length": "610 mm", - "price": 350000, - "price_postapoc": 4500, + "price": "3 kUSD 500 USD", + "price_postapoc": "45 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -366,8 +366,8 @@ "volume": "4000 ml", "longest_side": "914 mm", "barrel_length": "330 mm", - "price": 320000, - "price_postapoc": 6000, + "price": "3 kUSD 200 USD", + "price_postapoc": "60 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -392,8 +392,8 @@ "volume": "4000 ml", "longest_side": "1028 mm", "barrel_length": "414 mm", - "price": 320000, - "price_postapoc": 6000, + "price": "3 kUSD 200 USD", + "price_postapoc": "60 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -425,8 +425,8 @@ "volume": "2167 ml", "longest_side": "87 cm", "barrel_length": "500 mm", - "price": 79500, - "price_postapoc": 3000, + "price": "795 USD", + "price_postapoc": "30 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", @@ -461,8 +461,8 @@ "volume": "4250 ml", "longest_side": "1050 mm", "barrel_length": "528 mm", - "price": 120000, - "price_postapoc": 5500, + "price": "1 kUSD 200 USD", + "price_postapoc": "55 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -498,8 +498,8 @@ "volume": "3073 ml", "longest_side": "701 mm", "barrel_length": "470 mm", - "price": 180000, - "price_postapoc": 4000, + "price": "1 kUSD 800 USD", + "price_postapoc": "40 USD", "to_hit": -2, "material": [ "steel", "aluminum", "plastic" ], "symbol": "(", @@ -540,8 +540,8 @@ "volume": "4084 ml", "longest_side": "980 mm", "barrel_length": "482 mm", - "price": 180000, - "price_postapoc": 5000, + "price": "1 kUSD 800 USD", + "price_postapoc": "50 USD", "material": [ "steel", "aluminum", "plastic" ], "symbol": "(", "color": "blue", diff --git a/data/json/items/gun/30carbine.json b/data/json/items/gun/30carbine.json index df67d34058a52..7eabfaaedc7a9 100644 --- a/data/json/items/gun/30carbine.json +++ b/data/json/items/gun/30carbine.json @@ -10,8 +10,8 @@ "volume": "2800 ml", "longest_side": "900 mm", "barrel_length": "451 mm", - "price": 80000, - "price_postapoc": 3500, + "price": "800 USD", + "price_postapoc": "35 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", diff --git a/data/json/items/gun/32.json b/data/json/items/gun/32.json index 37ee0ca12edbd..29721aaa8a82c 100644 --- a/data/json/items/gun/32.json +++ b/data/json/items/gun/32.json @@ -10,8 +10,8 @@ "volume": "312 ml", "longest_side": "194 mm", "barrel_length": "91 mm", - "price": 43000, - "price_postapoc": 1000, + "price": "430 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", @@ -50,8 +50,8 @@ "volume": "216 ml", "longest_side": "173 mm", "barrel_length": "89 mm", - "price": 45000, - "price_postapoc": 1250, + "price": "450 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", @@ -90,8 +90,8 @@ "volume": "138 ml", "longest_side": "147 mm", "barrel_length": "68 mm", - "price": 14000, - "price_postapoc": 1000, + "price": "140 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "steel", "plastic", "aluminum" ], "color": "dark_gray", diff --git a/data/json/items/gun/338lapua.json b/data/json/items/gun/338lapua.json index 8fc0b9a344f06..ce0fc8226b5f8 100644 --- a/data/json/items/gun/338lapua.json +++ b/data/json/items/gun/338lapua.json @@ -18,8 +18,8 @@ "volume": "4000 ml", "longest_side": "1295 mm", "barrel_length": "686 mm", - "price": 642800, - "price_postapoc": 4000, + "price": "6 kUSD 428 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "color": "black", @@ -51,8 +51,8 @@ "volume": "3000 ml", "longest_side": "1264 mm", "barrel_length": "660 mm", - "price": 110900, - "price_postapoc": 800, + "price": "1 kUSD 109 USD", + "price_postapoc": "8 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "black", @@ -98,8 +98,8 @@ "volume": "5500 ml", "longest_side": "1204 mm", "barrel_length": "660 mm", - "price": 406098, - "price_postapoc": 4000, + "price": "4 kUSD 60 USD 98 cent", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "aluminum", "steel", "plastic" ], "color": "black", @@ -145,8 +145,8 @@ "volume": "6050 ml", "longest_side": "564 mm", "//2": "Length and volume calculations have been adjusted to represent just the base chassis, without an installed barrel.", - "price": 675000, - "price_postapoc": 4000, + "price": "6 kUSD 750 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "aluminum", "steel", "plastic" ], "color": "black", diff --git a/data/json/items/gun/357sig.json b/data/json/items/gun/357sig.json index 9dbace2c12dfc..546221f93d1fa 100644 --- a/data/json/items/gun/357sig.json +++ b/data/json/items/gun/357sig.json @@ -10,8 +10,8 @@ "volume": "549 ml", "longest_side": "232 mm", "barrel_length": "112 mm", - "price": 50000, - "price_postapoc": 2250, + "price": "500 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -1, "material": [ "steel", "aluminum", "plastic" ], "symbol": "(", @@ -36,7 +36,7 @@ "volume": "443 ml", "longest_side": "234 mm", "barrel_length": "114 mm", - "price_postapoc": 2250, + "price_postapoc": "22 USD 50 cent", "min_cycle_recoil": 450, "ammo": [ "357sig" ], "pocket_data": [ { "magazine_well": "250 ml", "pocket_type": "MAGAZINE_WELL", "item_restriction": [ "glock40mag", "glock40bigmag" ] } ] @@ -53,8 +53,8 @@ "volume": "462 ml", "longest_side": "217 mm", "barrel_length": "99 mm", - "price": 69000, - "price_postapoc": 2250, + "price": "690 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -2, "material": [ "plastic", "steel" ], "color": "dark_gray", diff --git a/data/json/items/gun/36paper.json b/data/json/items/gun/36paper.json index dbe3b878b243a..dce0aa0cd9061 100644 --- a/data/json/items/gun/36paper.json +++ b/data/json/items/gun/36paper.json @@ -9,8 +9,8 @@ "weight": "1184 g", "volume": "540 ml", "longest_side": "351 mm", - "price": 30000, - "price_postapoc": 3000, + "price": "300 USD", + "price_postapoc": "30 USD", "to_hit": -1, "material": [ "steel", "wood" ], "ammo": [ "36paper" ], diff --git a/data/json/items/gun/38.json b/data/json/items/gun/38.json index 6310103c8ebf2..b5f98802c8af5 100644 --- a/data/json/items/gun/38.json +++ b/data/json/items/gun/38.json @@ -12,8 +12,8 @@ "volume": "414 ml", "longest_side": "475 mm", "barrel_length": "168 mm", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel" ], "symbol": "(", @@ -43,8 +43,8 @@ "volume": "399 ml", "longest_side": "162 mm", "barrel_length": "83 mm", - "price": 120000, - "price_postapoc": 1000, + "price": "1 kUSD 200 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "steel", "wood" ], "ammo": [ "357mag", "38" ], @@ -79,8 +79,8 @@ "longest_side": "252 mm", "barrel_length": "141 mm", "//": "101.6mm + 39.4mm max OAL for 38spl. Revolvers just built different.", - "price": 42400, - "price_postapoc": 1250, + "price": "424 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -2, "material": [ "steel", "wood" ], "color": "dark_gray", @@ -110,8 +110,8 @@ "volume": "600 ml", "longest_side": "273 mm", "barrel_length": "133 mm", - "price": 360000, - "price_postapoc": 2000, + "price": "3 kUSD 600 USD", + "price_postapoc": "20 USD", "built_in_mods": [ "match_trigger" ], "default_mods": [ "pistol_grip" ], "to_hit": -2, @@ -153,8 +153,8 @@ "weight": "2114 g", "volume": "1610 ml", "longest_side": "100 cm", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", @@ -194,8 +194,8 @@ "longest_side": "192 mm", "barrel_length": "86 mm", "//": "47mm + 39.4mm max OAL for 38spl. Revolvers just built different.", - "price": 54500, - "price_postapoc": 1000, + "price": "545 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "steel", "aluminum", "plastic" ], "symbol": "(", @@ -237,8 +237,8 @@ "longest_side": "278 mm", "barrel_length": "140 mm", "//2": "100mm + 40mm max OAL for 357mag. Revolvers just built different.", - "price": 62000, - "price_postapoc": 1250, + "price": "620 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", diff --git a/data/json/items/gun/380.json b/data/json/items/gun/380.json index a0015c1b8617b..d34607314d8f4 100644 --- a/data/json/items/gun/380.json +++ b/data/json/items/gun/380.json @@ -10,8 +10,8 @@ "volume": "754 ml", "longest_side": "253 mm", "barrel_length": "129 mm", - "price": 160000, - "price_postapoc": 2500, + "price": "1 kUSD 600 USD", + "price_postapoc": "25 USD", "ammo": [ "380" ], "min_cycle_recoil": 270, "modes": [ [ "DEFAULT", "semi-auto", 1 ], [ "AUTO", "auto", 6 ] ], @@ -29,8 +29,8 @@ "volume": "163 ml", "longest_side": "150 mm", "barrel_length": "70 mm", - "price": 25000, - "price_postapoc": 1750, + "price": "250 USD", + "price_postapoc": "17 USD 50 cent", "ammo": [ "380" ], "min_cycle_recoil": 270, "pocket_data": [ { "magazine_well": "44 ml", "pocket_type": "MAGAZINE_WELL", "item_restriction": [ "kp3atmag" ] } ] @@ -45,8 +45,8 @@ "weight": "590 g", "volume": "136 ml", "longest_side": "80 mm", - "price": 75000, - "price_postapoc": 1250, + "price": "750 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -3, "material": [ "steel" ], "color": "dark_gray", @@ -71,8 +71,8 @@ "volume": "160 ml", "longest_side": "145 mm", "barrel_length": "70 mm", - "price": 21000, - "price_postapoc": 1250, + "price": "210 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -3, "material": [ "steel", "plastic" ], "color": "dark_gray", @@ -94,8 +94,8 @@ "volume": "478 ml", "longest_side": "200 mm", "barrel_length": "89 mm", - "price": 7500, - "price_postapoc": 1750, + "price": "75 USD", + "price_postapoc": "17 USD 50 cent", "to_hit": -2, "material": [ "plastic", "steel", "zinc" ], "color": "dark_gray", @@ -122,8 +122,8 @@ "weight": "283 g", "volume": "187 ml", "longest_side": "71 mm", - "price": 64000, - "price_postapoc": 1250, + "price": "640 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -2, "material": [ "steel", "aluminum" ], "symbol": "(", @@ -153,8 +153,8 @@ "volume": "1881 ml", "longest_side": "787 mm", "barrel_length": "419 mm", - "price": 31500, - "price_postapoc": 2500, + "price": "315 USD", + "price_postapoc": "25 USD", "to_hit": -1, "symbol": "(", "material": [ "plastic", "steel", "zinc" ], diff --git a/data/json/items/gun/38super.json b/data/json/items/gun/38super.json index f64522e0334c1..46b63b41fee46 100644 --- a/data/json/items/gun/38super.json +++ b/data/json/items/gun/38super.json @@ -10,8 +10,8 @@ "volume": "716 ml", "longest_side": "247 mm", "barrel_length": "125 mm", - "price": 479900, - "price_postapoc": 2000, + "price": "4 kUSD 799 USD", + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "steel" ], "color": "light_gray", @@ -48,8 +48,8 @@ "volume": "462 ml", "longest_side": "247 mm", "barrel_length": "127 mm", - "price": 78400, - "price_postapoc": 2000, + "price": "784 USD", + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", diff --git a/data/json/items/gun/40.json b/data/json/items/gun/40.json index 9c1942debfdde..683636ce30a00 100644 --- a/data/json/items/gun/40.json +++ b/data/json/items/gun/40.json @@ -9,8 +9,8 @@ "weight": "905 g", "volume": "554 ml", "longest_side": "250 mm", - "price": 65000, - "price_postapoc": 2000, + "price": "650 USD", + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -35,8 +35,8 @@ "volume": "433 ml", "longest_side": "234 mm", "barrel_length": "125 mm", - "price": 69000, - "price_postapoc": 1750, + "price": "690 USD", + "price_postapoc": "17 USD 50 cent", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "(", @@ -75,8 +75,8 @@ "volume": "520 ml", "longest_side": "231 mm", "barrel_length": "102 mm", - "price": 65000, - "price_postapoc": 2500, + "price": "650 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "(", @@ -101,8 +101,8 @@ "volume": "509 ml", "longest_side": "221 mm", "barrel_length": "99 mm", - "price": 75000, - "price_postapoc": 1500, + "price": "750 USD", + "price_postapoc": "15 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -141,8 +141,8 @@ "volume": "1110 ml", "longest_side": "538 mm", "barrel_length": "229 mm", - "price": 20000, - "price_postapoc": 1500, + "price": "200 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "steel" ], "color": "dark_gray", @@ -180,8 +180,8 @@ "volume": "274 ml", "longest_side": "228 mm", "barrel_length": "119 mm", - "price": 54000, - "price_postapoc": 2000, + "price": "540 USD", + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "color": "dark_gray", @@ -205,8 +205,8 @@ "volume": "440 ml", "longest_side": "215 mm", "barrel_length": "106 mm", - "price": 72500, - "price_postapoc": 2000, + "price": "725 USD", + "price_postapoc": "20 USD", "material": [ "plastic", "steel" ], "color": "dark_gray", "ammo": [ "40" ], @@ -235,8 +235,8 @@ "volume": "546 ml", "longest_side": "234 mm", "barrel_length": "110 mm", - "price": 7500, - "price_postapoc": 2000, + "price": "75 USD", + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "plastic", "steel", "zinc" ], "color": "dark_gray", diff --git a/data/json/items/gun/40x46mm.json b/data/json/items/gun/40x46mm.json index d595ef3d9e559..ed42bf4cb03f7 100644 --- a/data/json/items/gun/40x46mm.json +++ b/data/json/items/gun/40x46mm.json @@ -10,8 +10,8 @@ "volume": "1250 ml", "longest_side": "450 mm", "barrel_length": "368 mm", - "price": 40000, - "price_postapoc": 750, + "price": "400 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -3, "material": [ "steel", "wood" ], "ammo": [ "40x46mm" ], @@ -44,8 +44,8 @@ "volume": "1750 ml", "longest_side": "372 mm", "barrel_length": "280 mm", - "price": 850000, - "price_postapoc": 2250, + "price": "8 kUSD 500 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -3, "material": [ "steel" ], "symbol": "(", @@ -70,8 +70,8 @@ "volume": "2800 ml", "longest_side": "736 mm", "barrel_length": "368 mm", - "price": 400000, - "price_postapoc": 2500, + "price": "4 kUSD", + "price_postapoc": "25 USD", "to_hit": -3, "material": [ "steel", "wood" ], "ammo": [ "40x46mm" ], @@ -106,8 +106,8 @@ "longest_side": "565 mm", "barrel_length": "343 mm", "//": "203mm + 140mm max OAL for listed on Milkor's website. Revolvers just built different.", - "price": 1040000, - "price_postapoc": 5000, + "price": "10 kUSD 400 USD", + "price_postapoc": "50 USD", "to_hit": -3, "material": [ "steel" ], "ammo": [ "40x46mm" ], @@ -135,7 +135,7 @@ "name": { "str": "triple-barrel 40mm launcher" }, "description": "A homemade triple-barrel 40mm grenade launcher. Capable of launching all three grenades at once, it is extremely powerful for a homemade weapon.", "clip_size": 3, - "price_postapoc": 1750, + "price_postapoc": "17 USD 50 cent", "modes": [ [ "DEFAULT", "single", 1, "NPC_AVOID" ], [ "MULTI", "multi", 3, [ "NPC_AVOID" ] ] ], "proportional": { "weight": 1.5, "volume": 1.8, "price": 2 }, "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "40x46mm": 3 } } ] @@ -150,8 +150,8 @@ "weight": "8200 g", "volume": "4 L", "longest_side": "400 mm", - "price": 250000, - "price_postapoc": 4500, + "price": "2 kUSD 500 USD", + "price_postapoc": "45 USD", "to_hit": -1, "material": [ "steel" ], "ammo": [ "40x46mm" ], diff --git a/data/json/items/gun/40x53mm.json b/data/json/items/gun/40x53mm.json index 31ed00eb54907..3f1349f433da4 100644 --- a/data/json/items/gun/40x53mm.json +++ b/data/json/items/gun/40x53mm.json @@ -10,8 +10,8 @@ "volume": "41930 ml", "longest_side": "1093 mm", "barrel_length": "413 mm", - "price": 1650000, - "price_postapoc": 5000, + "price": "16 kUSD 500 USD", + "price_postapoc": "50 USD", "to_hit": -1, "material": [ "steel" ], "ammo": [ "40x53mm" ], diff --git a/data/json/items/gun/410shot.json b/data/json/items/gun/410shot.json index 9a8a933f4993b..38f46cd7b5738 100644 --- a/data/json/items/gun/410shot.json +++ b/data/json/items/gun/410shot.json @@ -10,8 +10,8 @@ "volume": "5762 ml", "longest_side": "1171 mm", "barrel_length": "470 mm", - "price": 189000, - "price_postapoc": 7000, + "price": "1 kUSD 890 USD", + "price_postapoc": "70 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "dispersion": 395, @@ -33,7 +33,7 @@ "volume": "1748 ml", "longest_side": "1152 mm", "barrel_length": "660 mm", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "blackpowder_tolerance": 80, "ammo": [ "410shot" ], "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "410shot": 1 } } ] diff --git a/data/json/items/gun/44.json b/data/json/items/gun/44.json index a025f9c83cfc2..9309ee90c1716 100644 --- a/data/json/items/gun/44.json +++ b/data/json/items/gun/44.json @@ -10,8 +10,8 @@ "volume": "671 ml", "longest_side": "29 cm", "//": "Numbers for weight, volume, and length calculations are based upon weapon without caliber conversion. The difference will be made up for with integrated stats from the installable caliber conversion.", - "price": 160000, - "price_postapoc": 2750, + "price": "1 kUSD 600 USD", + "price_postapoc": "27 USD 50 cent", "variant_type": "gun", "variants": [ { @@ -54,8 +54,8 @@ "volume": "2310 ml", "longest_side": "98 cm", "barrel_length": "508 mm", - "price": 89995, - "price_postapoc": 3500, + "price": "899 USD 95 cent", + "price_postapoc": "35 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "dark_gray", @@ -92,8 +92,8 @@ "weight": "2114 g", "volume": "2 L", "longest_side": "100 cm", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", @@ -149,8 +149,8 @@ "longest_side": "30 cm", "barrel_length": "206 mm", "//": "165.1mm + 41mm max OAL for 44mag. Revolvers just built different.", - "price": 86100, - "price_postapoc": 2750, + "price": "861 USD", + "price_postapoc": "27 USD 50 cent", "material": [ "steel", "plastic" ], "symbol": "(", "color": "dark_gray", diff --git a/data/json/items/gun/44paper.json b/data/json/items/gun/44paper.json index 4e162f8653c87..db53b6cefc178 100644 --- a/data/json/items/gun/44paper.json +++ b/data/json/items/gun/44paper.json @@ -9,8 +9,8 @@ "weight": "1188 g", "volume": "486 ml", "longest_side": "373 mm", - "price": 43000, - "price_postapoc": 3000, + "price": "430 USD", + "price_postapoc": "30 USD", "to_hit": -1, "material": [ "steel", "wood" ], "ammo": [ "44paper" ], diff --git a/data/json/items/gun/45.json b/data/json/items/gun/45.json index 3198fb46146b9..aa450fc993774 100644 --- a/data/json/items/gun/45.json +++ b/data/json/items/gun/45.json @@ -23,8 +23,8 @@ "volume": "4248 ml", "longest_side": "611 mm", "barrel_length": "165 mm", - "price": 310000, - "price_postapoc": 3500, + "price": "3 kUSD 100 USD", + "price_postapoc": "35 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -74,8 +74,8 @@ "longest_side": "426 mm", "barrel_length": "200 mm", "//": "Numbers for weight, volume, and length calculations are based upon weapon without caliber conversion. The difference will be made up for with integrated stats from the installable caliber conversion.", - "price": 290000, - "price_postapoc": 2500, + "price": "2 kUSD 900 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -131,8 +131,8 @@ "volume": "454 ml", "longest_side": "245 mm", "barrel_length": "127 mm", - "price": 78400, - "price_postapoc": 2500, + "price": "784 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -166,8 +166,8 @@ "volume": "1195 ml", "longest_side": "298 mm", "barrel_length": "146 mm", - "price": 180000, - "price_postapoc": 2500, + "price": "1 kUSD 800 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "steel" ], "symbol": "(", @@ -206,8 +206,8 @@ "volume": "6116 ml", "longest_side": "900 mm", "barrel_length": "406 mm", - "price": 160000, - "price_postapoc": 3100, + "price": "1 kUSD 600 USD", + "price_postapoc": "31 USD", "material": [ "steel", "plastic" ], "symbol": "(", "color": "dark_gray", @@ -243,8 +243,8 @@ "volume": "1110 ml", "longest_side": "538 mm", "barrel_length": "229 mm", - "price": 20000, - "price_postapoc": 1500, + "price": "200 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "steel" ], "color": "dark_gray", @@ -290,8 +290,8 @@ "volume": "1230 ml", "longest_side": "832 mm", "barrel_length": "267 mm", - "price": 450000, - "price_postapoc": 2750, + "price": "4 kUSD 500 USD", + "price_postapoc": "27 USD 50 cent", "to_hit": -2, "material": [ "steel", "wood" ], "symbol": "(", @@ -350,8 +350,8 @@ "volume": "483 ml", "longest_side": "241 mm", "ammo": [ "45" ], - "price": 70000, - "price_postapoc": 2500, + "price": "700 USD", + "price_postapoc": "25 USD", "built_in_mods": [ "match_trigger" ], "flags": [ "ALLOWS_BODY_BLOCK" ], "weapon_category": [ "AUTOMATIC_PISTOLS" ], @@ -376,8 +376,8 @@ "volume": "472 ml", "longest_side": "224 mm", "barrel_length": "108 mm", - "price": 80000, - "price_postapoc": 2250, + "price": "800 USD", + "price_postapoc": "22 USD 50 cent", "material": [ "plastic", "steel" ], "color": "dark_gray", "ammo": [ "45" ], @@ -408,8 +408,8 @@ "volume": "538 ml", "longest_side": "238 mm", "barrel_length": "114 mm", - "price": 7500, - "price_postapoc": 2000, + "price": "75 USD", + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "plastic", "steel", "zinc" ], "color": "dark_gray", @@ -442,8 +442,8 @@ "volume": "490 ml", "longest_side": "209 mm", "barrel_length": "117 mm", - "price": 60200, - "price_postapoc": 2600, + "price": "602 USD", + "price_postapoc": "26 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "(", @@ -477,8 +477,8 @@ "volume": "2003 ml", "longest_side": "740 mm", "barrel_length": "203 mm", - "price": 2300000, - "price_postapoc": 4000, + "price": "23 kUSD", + "price_postapoc": "40 USD", "to_hit": -2, "material": [ "steel" ], "symbol": "(", diff --git a/data/json/items/gun/450bushmaster.json b/data/json/items/gun/450bushmaster.json index 9a2dd1537cac8..21929a9b78774 100644 --- a/data/json/items/gun/450bushmaster.json +++ b/data/json/items/gun/450bushmaster.json @@ -10,8 +10,8 @@ "volume": "2500 ml", "longest_side": "914 mm", "barrel_length": "409 mm", - "price": 66900, - "price_postapoc": 2000, + "price": "669 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "aluminum", "steel", "plastic" ], "color": "brown", diff --git a/data/json/items/gun/454.json b/data/json/items/gun/454.json index 164837b5ee526..17325ff882cdd 100644 --- a/data/json/items/gun/454.json +++ b/data/json/items/gun/454.json @@ -11,8 +11,8 @@ "longest_side": "332 mm", "barrel_length": "258 mm", "//": "212.725 + 45mm max OAL for 454. Revolvers just built different.", - "price": 64100, - "price_postapoc": 2500, + "price": "641 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", diff --git a/data/json/items/gun/4570.json b/data/json/items/gun/4570.json index 1b58b7033c727..1c8c9dc379b02 100644 --- a/data/json/items/gun/4570.json +++ b/data/json/items/gun/4570.json @@ -10,8 +10,8 @@ "volume": "1829 ml", "longest_side": "943 mm", "barrel_length": "485 mm", - "price": 100000, - "price_postapoc": 2500, + "price": "1 kUSD", + "price_postapoc": "25 USD", "to_hit": 1, "material": [ "steel", "wood" ], "symbol": "(", @@ -49,8 +49,8 @@ "longest_side": "382 mm", "barrel_length": "255 mm", "//2": "190.5 + 64.8mm max OAL for 45-70. Revolvers just built different.", - "price": 105000, - "price_postapoc": 2750, + "price": "1 kUSD 50 USD", + "price_postapoc": "27 USD 50 cent", "to_hit": -2, "material": [ "steel", "plastic" ], "color": "dark_gray", @@ -84,8 +84,8 @@ "volume": "2936 ml", "longest_side": "1278 mm", "barrel_length": "813 mm", - "price": 210000, - "price_postapoc": 2750, + "price": "2 kUSD 100 USD", + "price_postapoc": "27 USD 50 cent", "to_hit": 1, "material": [ "steel", "wood" ], "color": "blue", diff --git a/data/json/items/gun/458wm.json b/data/json/items/gun/458wm.json index fc8c179e1ff88..b16fc4a75e62a 100644 --- a/data/json/items/gun/458wm.json +++ b/data/json/items/gun/458wm.json @@ -16,8 +16,8 @@ ], "weight": "4082 g", "volume": "3205 ml", - "price": 176000, - "price_postapoc": 5000, + "price": "1 kUSD 760 USD", + "price_postapoc": "50 USD", "ammo": [ "458wm" ], "flags": [ "NO_TURRET" ], "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "458wm": 3 } } ] diff --git a/data/json/items/gun/45colt.json b/data/json/items/gun/45colt.json index c08f714c27327..c01b781f0f38a 100644 --- a/data/json/items/gun/45colt.json +++ b/data/json/items/gun/45colt.json @@ -10,8 +10,8 @@ "volume": "79 ml", "longest_side": "158 mm", "barrel_length": "76 mm", - "price": 41500, - "price_postapoc": 2250, + "price": "415 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -1, "material": [ { "type": "steel", "portion": 9 }, { "type": "rubber", "portion": 1 } ], "symbol": "(", @@ -46,8 +46,8 @@ "volume": "1601 ml", "longest_side": "1106 mm", "barrel_length": "660 mm", - "price": 132000, - "price_postapoc": 2500, + "price": "1 kUSD 320 USD", + "price_postapoc": "25 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", @@ -86,8 +86,8 @@ "longest_side": "208 mm", "barrel_length": "231 mm", "//": "190.5mm + 40.6mm max OAL for 45LC. Revolvers just built different.", - "price": 47900, - "price_postapoc": 2500, + "price": "479 USD", + "price_postapoc": "25 USD", "to_hit": -1, "material": [ "steel", "wood" ], "ammo": [ "45colt" ], diff --git a/data/json/items/gun/46.json b/data/json/items/gun/46.json index 90323c445a967..2090db0d0e9f5 100644 --- a/data/json/items/gun/46.json +++ b/data/json/items/gun/46.json @@ -10,8 +10,8 @@ "volume": "2083 ml", "longest_side": "42 cm", "barrel_length": "180 mm", - "price": 175000, - "price_postapoc": 3000, + "price": "1 kUSD 750 USD", + "price_postapoc": "30 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", diff --git a/data/json/items/gun/460.json b/data/json/items/gun/460.json index 7f4ac141e303c..03e6ce400c281 100644 --- a/data/json/items/gun/460.json +++ b/data/json/items/gun/460.json @@ -6,8 +6,8 @@ "type": "GUN", "name": { "str": "1911-460" }, "description": "This 1911 has been customized to chamber powerful .460 Rowland ammunition. It now sports a large, integral compensator to aid in taming recoil and reducing slide velocity. Notably, normal .45 ACP can also be fired through the weapon.", - "price": 166800, - "price_postapoc": 3250, + "price": "1 kUSD 668 USD", + "price_postapoc": "32 USD 50 cent", "ammo": [ "460", "45" ], "relative": { "durability": -1 }, "built_in_mods": [ "barrel_ported" ], diff --git a/data/json/items/gun/50.json b/data/json/items/gun/50.json index 5ca0a76bcfc5d..3aacf97f984cf 100644 --- a/data/json/items/gun/50.json +++ b/data/json/items/gun/50.json @@ -11,8 +11,8 @@ "volume": "7570 ml", "longest_side": "145 cm", "barrel_length": "737 mm", - "price": 1483300, - "price_postapoc": 12000, + "price": "14 kUSD 833 USD", + "price_postapoc": "120 USD", "to_hit": -1, "material": [ "steel" ], "ammo": [ "50" ], @@ -37,8 +37,8 @@ "volume": "9020 ml", "longest_side": "165 cm", "barrel_length": "1143 mm", - "price": 1800000, - "price_postapoc": 10000, + "price": "18 kUSD", + "price_postapoc": "100 USD", "to_hit": -1, "material": [ "steel" ], "ammo": [ "50" ], @@ -73,8 +73,8 @@ "volume": "8900 ml", "longest_side": "137 cm", "barrel_length": "692 mm", - "price": 1500000, - "price_postapoc": 12000, + "price": "15 kUSD", + "price_postapoc": "120 USD", "to_hit": -1, "material": [ "steel" ], "ammo": [ "50" ], @@ -101,8 +101,8 @@ "volume": "6500 ml", "longest_side": "146 cm", "barrel_length": "737 mm", - "price": 870000, - "price_postapoc": 12000, + "price": "8 kUSD 700 USD", + "price_postapoc": "120 USD", "to_hit": -1, "material": [ "steel" ], "ammo": [ "50" ], @@ -129,8 +129,8 @@ "volume": "4000 ml", "longest_side": "1315 mm", "barrel_length": "749 mm", - "price": 239500, - "price_postapoc": 9000, + "price": "2 kUSD 395 USD", + "price_postapoc": "90 USD", "to_hit": -1, "material": [ "steel" ], "ammo": [ "50" ], diff --git a/data/json/items/gun/500.json b/data/json/items/gun/500.json index 703636010f6b8..268f3e70f24ab 100644 --- a/data/json/items/gun/500.json +++ b/data/json/items/gun/500.json @@ -16,8 +16,8 @@ ], "weight": "1960 g", "volume": "1307 ml", - "price": 90000, - "price_postapoc": 3500, + "price": "900 USD", + "price_postapoc": "35 USD", "to_hit": -2, "longest_side": "407 mm", "barrel_length": "147 mm", diff --git a/data/json/items/gun/545x39.json b/data/json/items/gun/545x39.json index 48455e39b0cef..09db0bf6a0f82 100644 --- a/data/json/items/gun/545x39.json +++ b/data/json/items/gun/545x39.json @@ -24,8 +24,8 @@ "longest_side": "895 mm", "barrel_length": "413 mm", "//": "Based off of the Riley Defence RAK74-C and RAK74-C-SF, respectively.", - "price": 111500, - "price_postapoc": 3500, + "price": "1 kUSD 115 USD", + "price_postapoc": "35 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", @@ -63,8 +63,8 @@ "volume": "2418 ml", "longest_side": "96 cm", "barrel_length": "415 mm", - "price": 3900000, - "price_postapoc": 4000, + "price": "39 kUSD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "color": "brown", diff --git a/data/json/items/gun/57.json b/data/json/items/gun/57.json index 6cbb52610730c..d865686e58133 100644 --- a/data/json/items/gun/57.json +++ b/data/json/items/gun/57.json @@ -19,8 +19,8 @@ "volume": "551 ml", "longest_side": "164 mm", "barrel_length": "122 mm", - "price": 124900, - "price_postapoc": 2750, + "price": "1 kUSD 249 USD", + "price_postapoc": "27 USD 50 cent", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -67,8 +67,8 @@ "volume": "3817 ml", "longest_side": "511 mm", "barrel_length": "264 mm", - "price": 350000, - "price_postapoc": 3500, + "price": "3 kUSD 500 USD", + "price_postapoc": "35 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -113,8 +113,8 @@ "volume": "3230 ml", "longest_side": "380 mm", "barrel_length": "244 mm", - "price": 99500, - "price_postapoc": 2700, + "price": "995 USD", + "price_postapoc": "27 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -161,8 +161,8 @@ "volume": "937 ml", "longest_side": "220 mm", "barrel_length": "125 mm", - "price": 79900, - "price_postapoc": 2500, + "price": "799 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -212,8 +212,8 @@ ], "longest_side": "670 mm", "barrel_length": "407 mm", - "price": 199500, - "price_postapoc": 3000, + "price": "1 kUSD 995 USD", + "price_postapoc": "30 USD", "skill": "rifle", "range": 6, "ranged_damage": { "damage_type": "bullet", "amount": 2 }, diff --git a/data/json/items/gun/66mm.json b/data/json/items/gun/66mm.json index 42a0b367f2005..207614e73f086 100644 --- a/data/json/items/gun/66mm.json +++ b/data/json/items/gun/66mm.json @@ -7,8 +7,8 @@ "color": "dark_gray", "name": { "str_sp": "M202A1 FLASH" }, "description": "An American rocket launcher designed in the 1970s to replace WWII-era flamethrowers still in use in Vietnam. It has four barrels sharing the 66mm caliber of the M72 LAW.", - "price": 2900000, - "price_postapoc": 4000, + "price": "29 kUSD", + "price_postapoc": "40 USD", "material": [ "steel" ], "skill": "launcher", "ammo": [ "m235" ], diff --git a/data/json/items/gun/762.json b/data/json/items/gun/762.json index d8092f6eb32db..f6ac160efc4f5 100644 --- a/data/json/items/gun/762.json +++ b/data/json/items/gun/762.json @@ -10,8 +10,8 @@ "volume": "2167 ml", "longest_side": "87 cm", "barrel_length": "415 mm", - "price": 290000, - "price_postapoc": 4000, + "price": "2 kUSD 900 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", @@ -49,8 +49,8 @@ "volume": "6323 ml", "longest_side": "91 cm", "barrel_length": "406 mm", - "price": 450000, - "price_postapoc": 4500, + "price": "4 kUSD 500 USD", + "price_postapoc": "45 USD", "to_hit": -1, "material": [ "steel" ], "color": "blue", @@ -90,8 +90,8 @@ "volume": "2838 ml", "longest_side": "103 cm", "barrel_length": "520 mm", - "price": 38000, - "price_postapoc": 3500, + "price": "380 USD", + "price_postapoc": "35 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", @@ -138,8 +138,8 @@ "volume": "2167 ml", "longest_side": "87 cm", "barrel_length": "415 mm", - "price": 79500, - "price_postapoc": 3000, + "price": "795 USD", + "price_postapoc": "30 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", @@ -175,8 +175,8 @@ "volume": "1286 ml", "longest_side": "46 cm", "barrel_length": "311 mm", - "price": 72500, - "price_postapoc": 2500, + "price": "725 USD", + "price_postapoc": "25 USD", "to_hit": -5, "material": [ "steel", "wood" ], "color": "brown", @@ -209,8 +209,8 @@ "volume": "2300 ml", "longest_side": "930 mm", "barrel_length": "409 mm", - "price": 170000, - "price_postapoc": 4000, + "price": "1 kUSD 700 USD", + "price_postapoc": "40 USD", "to_hit": { "balance": "neutral", "grip": "solid", "length": "long", "surface": "point" }, "material": [ "plastic", "steel" ], "looks_like": "modular_ar15", @@ -245,9 +245,9 @@ "volume": "2000 ml", "longest_side": "845 mm", "barrel_length": "390 mm", - "price": 200000, + "price": "2 kUSD", "//": "Couldn't find exact price information on original VZ assault rifles, so did some guestimation based off of prices for similar Russian automatic weapon's's parts kits.", - "price_postapoc": 4000, + "price_postapoc": "40 USD", "variant_type": "gun", "variants": [ { @@ -301,7 +301,7 @@ "description": "A modern semi-automatic clone of the Czechoslovak-produced vz. 58 assault rifle, chambered in the Soviet 7.62x39mm cartridge. Built off of surplus vz. 58 parts, the rifle makes use of additional American made components such as the receiver, barrel, and buttstock to comply with US importation laws. Featuring an extended 16 inch barrel, an M4 style stock adapter and tube, and an integrated side rail for optics mounting, this Cold War rifle makes for a relatively handy post-apocalyptic companion." } ], - "price": 170000, + "price": "1 kUSD 700 USD", "longest_side": "868 mm", "barrel_length": "413 mm", "modes": [ [ "DEFAULT", "semi-auto", 1 ] ], @@ -332,8 +332,8 @@ "//": "There's currently only pistol versions of this gun for sale in the US. This would be a good candidate for a pistol brace item that the survivor can replace with a real stock.", "longest_side": "76 cm", "barrel_length": "279 mm", - "price": 215500, - "price_postapoc": 3000, + "price": "2 kUSD 155 USD", + "price_postapoc": "30 USD", "to_hit": -1, "material": [ "steel", "aluminum", "plastic" ], "color": "black", diff --git a/data/json/items/gun/762R.json b/data/json/items/gun/762R.json index a9964a8c55c51..f14c83c866de3 100644 --- a/data/json/items/gun/762R.json +++ b/data/json/items/gun/762R.json @@ -10,8 +10,8 @@ "volume": "2720 ml", "longest_side": "1015 mm", "barrel_length": "514 mm", - "price": 23000, - "price_postapoc": 3000, + "price": "230 USD", + "price_postapoc": "30 USD", "variant_type": "gun", "variants": [ { @@ -68,8 +68,8 @@ "volume": "3120 ml", "longest_side": "1241 mm", "barrel_length": "1232 mm", - "price": 19000, - "price_postapoc": 3000, + "price": "190 USD", + "price_postapoc": "30 USD", "variant_type": "gun", "variants": [ { @@ -125,8 +125,8 @@ "volume": "7339 ml", "longest_side": "1150 mm", "barrel_length": "620 mm", - "price": 290000, - "price_postapoc": 4000, + "price": "2 kUSD 900 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", diff --git a/data/json/items/gun/762x25.json b/data/json/items/gun/762x25.json index 287edf1eb34a2..3c030aea0d8d7 100644 --- a/data/json/items/gun/762x25.json +++ b/data/json/items/gun/762x25.json @@ -18,8 +18,8 @@ "volume": "2873 ml", "longest_side": "844 mm", "barrel_length": "269 mm", - "price": 280000, - "price_postapoc": 2250, + "price": "2 kUSD 800 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -2, "material": [ "steel", "wood" ], "symbol": "(", @@ -70,8 +70,8 @@ "volume": "251 ml", "longest_side": "220 mm", "barrel_length": "116 mm", - "price": 100000, - "price_postapoc": 1250, + "price": "1 kUSD", + "price_postapoc": "12 USD 50 cent", "to_hit": -2, "material": [ "steel", "plastic" ], "ammo": [ "762x25" ], diff --git a/data/json/items/gun/77mm_jap.json b/data/json/items/gun/77mm_jap.json index 5006f6ad66a02..e57dcff42ffee 100644 --- a/data/json/items/gun/77mm_jap.json +++ b/data/json/items/gun/77mm_jap.json @@ -24,8 +24,8 @@ "volume": "2680 ml", "longest_side": "1118 mm", "barrel_length": "657 mm", - "price": 65000, - "price_postapoc": 1850, + "price": "650 USD", + "price_postapoc": "18 USD 50 cent", "to_hit": -1, "material": [ "steel", "wood" ], "color": "brown", diff --git a/data/json/items/gun/84x246mm.json b/data/json/items/gun/84x246mm.json index 2e2614b0c211c..2d115b5ee4fa1 100644 --- a/data/json/items/gun/84x246mm.json +++ b/data/json/items/gun/84x246mm.json @@ -8,8 +8,8 @@ "color": "green", "name": { "str": "M3 recoilless rifle" }, "description": "Manufactured in Sweden, the Carl Gustaf M3 is a breech-loading 84 millimeter man-portable, reusable, multi-role recoilless rifle commonly used by the US military. Under normal circumstances, users should refrain from shooting more than 6 rounds per day to avoid undue risk of brain injury…", - "price": 1300000, - "price_postapoc": 6000, + "price": "13 kUSD", + "price_postapoc": "60 USD", "material": [ "steel" ], "flags": [ "RELOAD_ONE", "BACKBLAST", "NEVER_JAMS" ], "//": "100m backblast.", @@ -35,8 +35,8 @@ "name": { "str": "M3E1 recoilless rifle" }, "description": "The Carl Gustaf M3E1 is a breech-loading 84 millimeter man-portable, reusable, multi-role recoilless rifle. This is a shorter, lighter, and more advanced development of the M3. Under normal circumstances, users should refrain from shooting more than 6 rounds per day to prevent undue risk of brain injury…", "//": "This is called the Carl Gustaf M4 everywhere but in the U.S. It is the lighter and more portable version of the Carl Gustaf, with Picatinny rails, programmable ammunition, etc.", - "price": 2000000, - "price_postapoc": 8000, + "price": "20 kUSD", + "price_postapoc": "80 USD", "material": [ "steel", "plastic" ], "weight": "6900 g", "volume": "5730 ml", @@ -56,8 +56,8 @@ "weight": "6803 g", "volume": "8670 ml", "longest_side": "1020 mm", - "price": 2000000, - "price_postapoc": 6000, + "price": "20 kUSD", + "price_postapoc": "60 USD", "dispersion": 200, "durability": 7, "melee_damage": { "bash": 4 }, diff --git a/data/json/items/gun/8x40mm.json b/data/json/items/gun/8x40mm.json index c68cb88aed5d2..e61ee3350e3d3 100644 --- a/data/json/items/gun/8x40mm.json +++ b/data/json/items/gun/8x40mm.json @@ -11,8 +11,8 @@ "volume": "750 ml", "longest_side": "295 mm", "barrel_length": "203 mm", - "price": 230000, - "price_postapoc": 6000, + "price": "2 kUSD 300 USD", + "price_postapoc": "60 USD", "to_hit": -2, "material": [ "steel", "carbonfiber" ], "symbol": "(", @@ -45,8 +45,8 @@ "volume": "2403 ml", "longest_side": "760 mm", "barrel_length": "457 mm", - "price": 2900000, - "price_postapoc": 10000, + "price": "29 kUSD", + "price_postapoc": "100 USD", "to_hit": -1, "material": [ "steel", "carbonfiber" ], "symbol": "(", @@ -84,8 +84,8 @@ "volume": "1750 ml", "longest_side": "660 mm", "barrel_length": "254 mm", - "price": 1900000, - "price_postapoc": 10000, + "price": "19 kUSD", + "price_postapoc": "100 USD", "to_hit": -2, "material": [ "steel", "carbonfiber" ], "symbol": "(", @@ -119,8 +119,8 @@ "volume": "2150 ml", "longest_side": "905 mm", "barrel_length": "356 mm", - "price": 1800000, - "price_postapoc": 12000, + "price": "18 kUSD", + "price_postapoc": "120 USD", "to_hit": -1, "material": [ "steel", "carbonfiber" ], "symbol": "(", @@ -154,8 +154,8 @@ "volume": "2750 ml", "longest_side": "935 mm", "barrel_length": "406 mm", - "price": 3750000, - "price_postapoc": 15000, + "price": "37 kUSD 500 USD", + "price_postapoc": "150 USD", "to_hit": -1, "material": [ "superalloy", "ceramic" ], "symbol": "(", @@ -191,8 +191,8 @@ "volume": "2500 ml", "longest_side": "995 mm", "barrel_length": "508 mm", - "price": 900000, - "price_postapoc": 17500, + "price": "9 kUSD", + "price_postapoc": "175 USD", "to_hit": -1, "material": [ "steel", "carbonfiber" ], "symbol": "(", diff --git a/data/json/items/gun/9mm.json b/data/json/items/gun/9mm.json index b00ac607362a8..9e5cd178cf960 100644 --- a/data/json/items/gun/9mm.json +++ b/data/json/items/gun/9mm.json @@ -19,8 +19,8 @@ "volume": "2420 ml", "longest_side": "655 mm", "barrel_length": "152 mm", - "price": 240000, - "price_postapoc": 5000, + "price": "2 kUSD 400 USD", + "price_postapoc": "50 USD", "to_hit": -2, "material": [ "steel" ], "symbol": "(", @@ -68,8 +68,8 @@ "volume": "4458 ml", "longest_side": "762 mm", "barrel_length": "423 mm", - "price": 90000, - "price_postapoc": 4000, + "price": "900 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -124,8 +124,8 @@ "volume": "386 ml", "longest_side": "211 mm", "barrel_length": "102 mm", - "price": 69000, - "price_postapoc": 2500, + "price": "690 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "(", @@ -159,8 +159,8 @@ "volume": "3932 ml", "longest_side": "682 mm", "barrel_length": "225 mm", - "price": 280000, - "price_postapoc": 3500, + "price": "2 kUSD 800 USD", + "price_postapoc": "35 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -208,8 +208,8 @@ "volume": "3499 ml", "longest_side": "666 mm", "barrel_length": "146 mm", - "price": 3000000, - "price_postapoc": 14000, + "price": "30 kUSD", + "price_postapoc": "140 USD", "built_in_mods": [ "mp5sd_suppressor" ] }, { @@ -224,7 +224,7 @@ "//": "Forward grip's 68g & 119ml deducted", "longest_side": "377 mm", "barrel_length": "115 mm", - "price_postapoc": 3500, + "price_postapoc": "35 USD", "dispersion": 270, "range": 1, "ranged_damage": { "damage_type": "bullet", "amount": 0 }, @@ -283,8 +283,8 @@ "weight": "3800 g", "volume": "15232 ml", "longest_side": "544 mm", - "price": 480000, - "price_postapoc": 5000, + "price": "4 kUSD 800 USD", + "price_postapoc": "50 USD", "dispersion": 520, "sight_dispersion": 520, "armor_data": { @@ -323,8 +323,8 @@ "volume": "465 ml", "longest_side": "248 mm", "barrel_length": "100 mm", - "price": 100000, - "price_postapoc": 2500, + "price": "1 kUSD", + "price_postapoc": "25 USD", "to_hit": -2, "material": "steel", "symbol": "(", @@ -367,8 +367,8 @@ "volume": "2630 ml", "longest_side": "832 mm", "barrel_length": "200 mm", - "price": 2000000, - "price_postapoc": 1500, + "price": "20 kUSD", + "price_postapoc": "15 USD", "material": [ "steel", "wood" ], "symbol": "(", "color": "dark_gray", @@ -413,8 +413,8 @@ "volume": "640 ml", "longest_side": "312 mm", "barrel_length": "140 mm", - "price": 130000, - "price_postapoc": 2500, + "price": "1 kUSD 300 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": "steel", "symbol": "(", @@ -462,8 +462,8 @@ ], "weight": "1070 g", "volume": "615 ml", - "price": 90000, - "price_postapoc": 500, + "price": "900 USD", + "price_postapoc": "5 USD", "pocket_data": [ { "magazine_well": "60 ml", "pocket_type": "MAGAZINE_WELL", "item_restriction": [ "mausermag_20rd", "mausermag_10rd" ] } ] @@ -487,8 +487,8 @@ "volume": "2320 ml", "longest_side": "648 mm", "barrel_length": "251 mm", - "price": 1500000, - "price_postapoc": 1500, + "price": "15 kUSD", + "price_postapoc": "15 USD", "material": [ "steel" ], "symbol": "[", "color": "dark_gray", @@ -524,8 +524,8 @@ "volume": "2020 ml", "longest_side": "671 mm", "barrel_length": "274 mm", - "price": 90000, - "price_postapoc": 1000, + "price": "900 USD", + "price_postapoc": "10 USD", "modes": [ [ "DEFAULT", "semi-auto", 1 ] ], "valid_mod_locations": [ [ "barrel", 1 ], @@ -551,8 +551,8 @@ "longest_side": "410 mm", "barrel_length": "274 mm", "//": "The actual gun is around 30 cm longer than what's depicted here, but the inbuilt accessory adds 35 cm, which ends up totalling to the same length. IRL the SUB-2000 folds literally in half, which is a greatly smaller size than what our folding stocks can collapse to, so like this the length stays the same as far as the player can see, and you still get the same largely folded effect as you'd have on the real gun.", - "price": 75000, - "price_postapoc": 3000, + "price": "750 USD", + "price_postapoc": "30 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -597,8 +597,8 @@ "volume": "570 ml", "longest_side": "249 mm", "barrel_length": "125 mm", - "price": 65000, - "price_postapoc": 2500, + "price": "650 USD", + "price_postapoc": "25 USD", "variant_type": "gun", "variants": [ { @@ -644,8 +644,8 @@ "volume": "520 ml", "longest_side": "231 mm", "barrel_length": "102 mm", - "price": 65000, - "price_postapoc": 2500, + "price": "650 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "(", @@ -676,8 +676,8 @@ "volume": "1110 ml", "longest_side": "538 mm", "barrel_length": "229 mm", - "price": 20000, - "price_postapoc": 750, + "price": "200 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "steel" ], "color": "dark_gray", @@ -715,8 +715,8 @@ "volume": "1240 ml", "longest_side": "765 mm", "barrel_length": "198 mm", - "price": 40000, - "price_postapoc": 1500, + "price": "400 USD", + "price_postapoc": "15 USD", "material": [ "steel" ], "symbol": "[", "color": "dark_gray", @@ -754,8 +754,8 @@ "volume": "870 ml", "longest_side": "345 mm", "barrel_length": "127 mm", - "price": 125000, - "price_postapoc": 2750, + "price": "1 kUSD 250 USD", + "price_postapoc": "27 USD 50 cent", "to_hit": -2, "material": [ "steel" ], "symbol": "(", @@ -797,8 +797,8 @@ "volume": "460 ml", "longest_side": "230 mm", "barrel_length": "108 mm", - "price": 68000, - "price_postapoc": 2500, + "price": "680 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -832,8 +832,8 @@ "volume": "2150 ml", "longest_side": "480 mm", "barrel_length": "260 mm", - "price": 208000, - "price_postapoc": 3000, + "price": "2 kUSD 80 USD", + "price_postapoc": "30 USD", "to_hit": -2, "material": [ "steel" ], "color": "dark_gray", @@ -886,8 +886,8 @@ "volume": "427 ml", "longest_side": "233 mm", "barrel_length": "114 mm", - "price": 69000, - "price_postapoc": 2500, + "price": "690 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "color": "dark_gray", @@ -925,8 +925,8 @@ ], "ascii_picture": "glock_18c", "weight": "620 g", - "price": 100000, - "price_postapoc": 2500, + "price": "1 kUSD", + "price_postapoc": "25 USD", "modes": [ [ "DEFAULT", "semi-auto", 1 ], [ "AUTO", "auto", 6 ] ], "built_in_mods": [ "barrel_ported" ] }, @@ -941,8 +941,8 @@ "longest_side": "149mm", "barrel_length": "79 mm", "ranged_damage": { "damage_type": "bullet", "amount": -1 }, - "price": 18000, - "price_postapoc": 2000, + "price": "180 USD", + "price_postapoc": "20 USD", "ammo": [ "9mm" ], "min_cycle_recoil": 450, "pocket_data": [ { "magazine_well": "65 ml", "pocket_type": "MAGAZINE_WELL", "item_restriction": [ "kpf9mag", "kpf9mag_8rd" ] } ], @@ -958,8 +958,8 @@ "volume": "505 ml", "longest_side": "216 mm", "barrel_length": "99 mm", - "price": 95000, - "price_postapoc": 3000, + "price": "950 USD", + "price_postapoc": "30 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "color": "dark_gray", @@ -989,8 +989,8 @@ "volume": "470 ml", "longest_side": "238 mm", "barrel_length": "120 mm", - "price": 69000, - "price_postapoc": 2750, + "price": "690 USD", + "price_postapoc": "27 USD 50 cent", "to_hit": -2, "material": [ "plastic", "steel" ], "color": "dark_gray", @@ -1038,8 +1038,8 @@ "volume": "570 ml", "longest_side": "237 mm", "barrel_length": "112 mm", - "price": 100000, - "price_postapoc": 4500, + "price": "1 kUSD", + "price_postapoc": "45 USD", "to_hit": -1, "material": [ "steel", "aluminum", "plastic" ], "color": "dark_gray", @@ -1066,8 +1066,8 @@ "volume": "514 ml", "longest_side": "221 mm", "barrel_length": "99 mm", - "price": 50000, - "price_postapoc": 3750, + "price": "500 USD", + "price_postapoc": "37 USD 50 cent", "to_hit": -2, "material": [ "plastic", "steel" ], "color": "dark_gray", @@ -1094,8 +1094,8 @@ "volume": "274 ml", "longest_side": "228 mm", "barrel_length": "119 mm", - "price": 32000, - "price_postapoc": 2250, + "price": "320 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -2, "material": [ "plastic", "steel" ], "color": "dark_gray", @@ -1121,8 +1121,8 @@ "volume": "480 ml", "longest_side": "244 mm", "barrel_length": "125 mm", - "price": 39000, - "price_postapoc": 2250, + "price": "390 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -2, "material": [ "plastic", "steel" ], "color": "dark_gray", @@ -1146,8 +1146,8 @@ "volume": "454 ml", "longest_side": "209 mm", "barrel_length": "102 mm", - "price": 65000, - "price_postapoc": 2500, + "price": "650 USD", + "price_postapoc": "25 USD", "material": [ "plastic", "steel" ], "color": "dark_gray", "ammo": [ "9mm" ], @@ -1176,8 +1176,8 @@ "volume": "471 ml", "longest_side": "199 mm", "barrel_length": "89 mm", - "price": 7500, - "price_postapoc": 2250, + "price": "75 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -2, "material": [ "plastic", "steel", "zinc" ], "color": "dark_gray", @@ -1205,8 +1205,8 @@ "volume": "476 ml", "longest_side": "238 mm", "barrel_length": "120 mm", - "price": 10000, - "price_postapoc": 2500, + "price": "100 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "color": "dark_gray", @@ -1236,8 +1236,8 @@ "volume": "334 ml", "longest_side": "194 mm", "barrel_length": "90 mm", - "price": 12500, - "price_postapoc": 2000, + "price": "125 USD", + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "color": "dark_gray", @@ -1261,8 +1261,8 @@ "volume": "3450 ml", "longest_side": "655 mm", "barrel_length": "267 mm", - "price": 100000, - "price_postapoc": 1750, + "price": "1 kUSD", + "price_postapoc": "17 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "color": "dark_gray", @@ -1306,8 +1306,8 @@ "volume": "1890 ml", "longest_side": "525 mm", "barrel_length": "175 mm", - "price": 500000, - "price_postapoc": 6000, + "price": "5 kUSD", + "price_postapoc": "60 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "range": 1, diff --git a/data/json/items/gun/9x18.json b/data/json/items/gun/9x18.json index 4a06046f5ef4e..4d1978da4d04d 100644 --- a/data/json/items/gun/9x18.json +++ b/data/json/items/gun/9x18.json @@ -19,8 +19,8 @@ "volume": "346 ml", "longest_side": "196 mm", "barrel_length": "94 mm", - "price": 25000, - "price_postapoc": 2000, + "price": "250 USD", + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "color": "dark_gray", diff --git a/data/json/items/gun/artisan_guns.json b/data/json/items/gun/artisan_guns.json index 088191eccfd6a..c2e3122942264 100644 --- a/data/json/items/gun/artisan_guns.json +++ b/data/json/items/gun/artisan_guns.json @@ -10,8 +10,8 @@ "longest_side": "35 cm", "barrel_length": "200 mm", "//1": "20cm barrel length, 15cm remaining stock.", - "price": 23000, - "price_postapoc": 3000, + "price": "230 USD", + "price_postapoc": "30 USD", "//2": "should be very inaccurate and hard to aim by comparison. Setting handling to that of pistols", "handling": 10, "relative": { @@ -93,8 +93,8 @@ "volume": "150 ml", "longest_side": "15 cm", "barrel_length": "80 mm", - "price": 23000, - "price_postapoc": 3000, + "price": "230 USD", + "price_postapoc": "30 USD", "relative": { "dispersion": 180 }, "valid_mod_locations": [ ], "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "neutral" }, diff --git a/data/json/items/gun/atgm.json b/data/json/items/gun/atgm.json index 336e3ce7142ef..317230df6b74f 100644 --- a/data/json/items/gun/atgm.json +++ b/data/json/items/gun/atgm.json @@ -9,8 +9,8 @@ "weight": "93000 g", "volume": "25 L", "longest_side": "117 cm", - "price": 8500000, - "price_postapoc": 5000, + "price": "85 kUSD", + "price_postapoc": "50 USD", "to_hit": -6, "material": [ "steel" ], "ammo": [ "atgm" ], diff --git a/data/json/items/gun/bio.json b/data/json/items/gun/bio.json index c15647bb5a464..f3e7af3bb46dc 100644 --- a/data/json/items/gun/bio.json +++ b/data/json/items/gun/bio.json @@ -6,7 +6,7 @@ "name": { "str": "bionic shotgun" }, "description": "Bionic one-shot retracting shotgun integrated with your arm.", "volume": "103 ml", - "price": 0, + "price": "0 cent", "to_hit": -2, "material": [ "superalloy", "plastic" ], "symbol": "(", @@ -30,7 +30,7 @@ "description": "this a pseudo item", "weight": "2950 g", "volume": "2 L", - "price": 1600000, + "price": "16 kUSD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -53,7 +53,7 @@ "name": { "str": "laser finger" }, "description": "this a pseudo item", "volume": "3 L", - "price": 0, + "price": "0 cent", "material": [ "steel", "plastic" ], "symbol": "(", "looks_like": "v29", @@ -74,7 +74,7 @@ "name": { "str": "Chain Lightning" }, "description": "this a pseudo item", "volume": "3 L", - "price": 0, + "price": "0 cent", "material": [ "steel", "plastic" ], "symbol": "(", "looks_like": "laser_rifle", @@ -95,7 +95,7 @@ "name": { "str_sp": "Assault barbs" }, "description": "this a pseudo item", "volume": "3 L", - "price": 0, + "price": "0 cent", "material": [ "steel", "plastic" ], "symbol": "(", "color": "magenta", @@ -114,7 +114,7 @@ "name": { "str": "Ranged pulling implement" }, "description": "this a pseudo item", "volume": "100 ml", - "price": 0, + "price": "0 cent", "material": [ "steel", "plastic" ], "symbol": "(", "color": "magenta", diff --git a/data/json/items/gun/blunderbuss.json b/data/json/items/gun/blunderbuss.json index 76c2ff06a9bef..cab27fd90059b 100644 --- a/data/json/items/gun/blunderbuss.json +++ b/data/json/items/gun/blunderbuss.json @@ -10,8 +10,8 @@ "weight": "8267 g", "volume": "3 L", "longest_side": "90 cm", - "price": 15000, - "price_postapoc": 1000, + "price": "150 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", diff --git a/data/json/items/gun/cannon.json b/data/json/items/gun/cannon.json index b978f5571e8bc..0f2a132a5a26f 100644 --- a/data/json/items/gun/cannon.json +++ b/data/json/items/gun/cannon.json @@ -9,8 +9,8 @@ "weight": "371946 g", "volume": "134 L", "longest_side": "185 cm", - "price": 35000, - "price_postapoc": 1000, + "price": "350 USD", + "price_postapoc": "10 USD", "to_hit": -4, "material": [ "steel" ], "symbol": "(", diff --git a/data/json/items/gun/chemical_spray.json b/data/json/items/gun/chemical_spray.json index a8973ed667e8d..62e6d581f328d 100644 --- a/data/json/items/gun/chemical_spray.json +++ b/data/json/items/gun/chemical_spray.json @@ -10,8 +10,8 @@ "weight": "4588 g", "volume": "4250 ml", "longest_side": "110 cm", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "flags": [ "NEVER_JAMS", "NON_FOULING" ], diff --git a/data/json/items/gun/combination.json b/data/json/items/gun/combination.json index af556351a6425..d9444fe680c9d 100644 --- a/data/json/items/gun/combination.json +++ b/data/json/items/gun/combination.json @@ -8,8 +8,8 @@ "color": "brown", "name": { "str": "combination gun" }, "description": "A break action firearm comprised of a .30-06 barrel over two 12 gauge smooth bore barrels. Historically used by egomaniac hunters in Africa, now used by their egomaniac descendants in New England.", - "price": 259500, - "price_postapoc": 1500, + "price": "2 kUSD 595 USD", + "price_postapoc": "15 USD", "material": [ "steel", "wood" ], "flags": [ "NEVER_JAMS", "RELOAD_EJECT" ], "skill": "rifle", diff --git a/data/json/items/gun/exodii.json b/data/json/items/gun/exodii.json index d71f836c83752..3ad4a73a316fd 100644 --- a/data/json/items/gun/exodii.json +++ b/data/json/items/gun/exodii.json @@ -11,8 +11,8 @@ "volume": "1775 ml", "longest_side": "428 mm", "barrel_length": "212 mm", - "price": 850000, - "price_postapoc": 2800, + "price": "8 kUSD 500 USD", + "price_postapoc": "28 USD", "variant_type": "gun", "variants": [ { @@ -54,8 +54,8 @@ "weight": "7700 g", "volume": "2980 ml", "longest_side": "110 cm", - "price": 660000, - "price_postapoc": 3000, + "price": "6 kUSD 600 USD", + "price_postapoc": "30 USD", "variant_type": "gun", "variants": [ { @@ -91,8 +91,8 @@ "weight": "5900 g", "volume": "1930 ml", "longest_side": "980 mm", - "price": 1320000, - "price_postapoc": 10000, + "price": "13 kUSD 200 USD", + "price_postapoc": "100 USD", "variant_type": "gun", "variants": [ { @@ -138,8 +138,8 @@ "//": "barrel should be a bit shorter than the pamd71z as it's less accurate", "longest_side": "1000 mm", "barrel_length": "508 mm", - "price": 350000, - "price_postapoc": 4000, + "price": "3 kUSD 500 USD", + "price_postapoc": "40 USD", "variant_type": "gun", "variants": [ { @@ -187,8 +187,8 @@ "//": "around the length of other long 30-06 rifles and heavier AR's", "longest_side": "1100 mm", "barrel_length": "610 mm", - "price": 80000, - "price_postapoc": 3250, + "price": "800 USD", + "price_postapoc": "32 USD 50 cent", "variant_type": "gun", "variants": [ { diff --git a/data/json/items/gun/flammable.json b/data/json/items/gun/flammable.json index 5eedf601e7f13..ad00d8ee1da74 100644 --- a/data/json/items/gun/flammable.json +++ b/data/json/items/gun/flammable.json @@ -10,8 +10,8 @@ "weight": "11340 g", "volume": "69450 ml", "longest_side": "584 mm", - "price": 80000, - "price_postapoc": 6000, + "price": "800 USD", + "price_postapoc": "60 USD", "to_hit": -2, "range": 6, "dispersion": 300, @@ -53,8 +53,8 @@ "description": "A modernized flamethrower, using alloy components and composite pressure tanks. Despite having been replaced by the M202 FLASH, due to the questionable effectiveness of the flamethrower in modern combat, it appears that someone, somewhere, needed a flamethrower for the modern age, as the date code on many of the components is within the past five years. While this resembles the Vietnam War era M9-7, the wand ignition system has been improved with a piezoelectric one, in addition to the material improvements of the system overall.", "//": "It's not very advanced because it was made very quickly to provide working flamethrowers to a certain agency", "proportional": { "weight": 0.66 }, - "price": 970000, - "price_postapoc": 10000, + "price": "9 kUSD 700 USD", + "price_postapoc": "100 USD", "material": [ "aluminum", "carbonfiber" ], "range": 10, "valid_mod_locations": [ [ "rail", 1 ], [ "grip", 1 ], [ "sights", 1 ], [ "stock mount", 1 ], [ "underbarrel", 1 ] ] diff --git a/data/json/items/gun/flintlock.json b/data/json/items/gun/flintlock.json index a00726c4d1a9f..4b836fb5bf414 100644 --- a/data/json/items/gun/flintlock.json +++ b/data/json/items/gun/flintlock.json @@ -4,8 +4,8 @@ "copy-from": "rifle_flintlock", "looks_like": "modular_ar15", "type": "GUN", - "price": 40000, - "price_postapoc": 2250, + "price": "400 USD", + "price_postapoc": "22 USD 50 cent", "name": { "str": "flintlock carbine" }, "description": "This short rifle design once dominated the battlefields of ancient Europe, and may yet re-earn its feared status due to its ease of handling and ability to use easily-crafted ammunition.", "valid_mod_locations": [ @@ -31,8 +31,8 @@ "name": { "str": "handmade double-barrel flintlock" }, "description": "A compact muzzle-loading rifle combining a pair of rudimentary flintlock actions and two barrels. Whereas an antique multiple-barrel flintlock is an intricate work of gunsmithing, this weapon is simpler yet still serviceable.", "clip_size": 2, - "price": 43000, - "price_postapoc": 2750, + "price": "430 USD", + "price_postapoc": "27 USD 50 cent", "proportional": { "dispersion": 1.3, "weight": 1.25, "volume": 1.25 }, "relative": { "weight": "400 g", "range": -1, "ranged_damage": { "damage_type": "bullet", "amount": -2 } }, "extend": { "flags": [ "RELOAD_ONE" ] }, @@ -48,8 +48,8 @@ "weight": "1 kg", "volume": "390 ml", "longest_side": "345 mm", - "price": 35000, - "price_postapoc": 1750, + "price": "350 USD", + "price_postapoc": "17 USD 50 cent", "to_hit": -1, "material": [ "iron", "wood" ], "symbol": "(", @@ -78,8 +78,8 @@ "weight": "4900 g", "volume": "2500 ml", "longest_side": "1466 mm", - "price": 41000, - "price_postapoc": 2250, + "price": "410 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -1, "material": [ "iron", "wood" ], "symbol": "(", @@ -126,8 +126,8 @@ "weight": "3700 g", "volume": "1700 ml", "longest_side": "1278 mm", - "price": 42000, - "price_postapoc": 2500, + "price": "420 USD", + "price_postapoc": "25 USD", "range": 12, "proportional": { "dispersion": 0.5, "reload": 1.1 } } diff --git a/data/json/items/gun/nail.json b/data/json/items/gun/nail.json index e842f3f9c6fe2..ec448260f0457 100644 --- a/data/json/items/gun/nail.json +++ b/data/json/items/gun/nail.json @@ -9,8 +9,8 @@ "weight": "3904 g", "volume": "750 ml", "longest_side": "45 cm", - "price": 13000, - "price_postapoc": 500, + "price": "130 USD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "(", @@ -38,8 +38,8 @@ "weight": "2041 g", "volume": "2750 ml", "longest_side": "80 cm", - "price": 75000, - "price_postapoc": 5000, + "price": "750 USD", + "price_postapoc": "50 USD", "to_hit": -2, "material": [ "copper", "steel" ], "ammo": [ "nail" ], diff --git a/data/json/items/gun/paintball.json b/data/json/items/gun/paintball.json index 46a9d5d95b521..c9834f0ab1fab 100644 --- a/data/json/items/gun/paintball.json +++ b/data/json/items/gun/paintball.json @@ -8,8 +8,8 @@ "color": "light_gray", "name": { "str": "paintball gun" }, "description": "A fairly harmless gun that shoots small paintballs.", - "price": 8000, - "price_postapoc": 50, + "price": "80 USD", + "price_postapoc": "50 cent", "material": [ "aluminum", "plastic" ], "flags": [ "NEVER_JAMS", "NON_FOULING" ], "skill": "smg", diff --git a/data/json/items/gun/robofac_gun.json b/data/json/items/gun/robofac_gun.json index 857d912ce002b..5f03f5b6361bb 100644 --- a/data/json/items/gun/robofac_gun.json +++ b/data/json/items/gun/robofac_gun.json @@ -9,8 +9,8 @@ "weight": "2500 g", "volume": "4000 ml", "longest_side": "50 cm", - "price": 125000, - "price_postapoc": 2000, + "price": "1 kUSD 250 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -62,8 +62,8 @@ "weight": "2500 g", "volume": "4000 ml", "longest_side": "50 cm", - "price": 125000, - "price_postapoc": 2000, + "price": "1 kUSD 250 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -101,8 +101,8 @@ "integral_longest_side": "20 cm", "longest_side": "45 cm", "barrel_length": "443 mm", - "price": 50000, - "price_postapoc": 3000, + "price": "500 USD", + "price_postapoc": "30 USD", "type": "GUNMOD", "material": [ "steel" ], "symbol": ":", @@ -140,8 +140,8 @@ "integral_longest_side": "15 cm", "longest_side": "40 cm", "barrel_length": "432 mm", - "price": 50000, - "price_postapoc": 3000, + "price": "500 USD", + "price_postapoc": "30 USD", "type": "GUNMOD", "material": [ "steel" ], "symbol": ":", @@ -172,8 +172,8 @@ "integral_longest_side": "15 cm", "longest_side": "40 cm", "barrel_length": "432 mm", - "price": 50000, - "price_postapoc": 3000, + "price": "500 USD", + "price_postapoc": "30 USD", "type": "GUNMOD", "material": [ "steel" ], "symbol": ":", @@ -204,8 +204,8 @@ "integral_longest_side": "15 cm", "longest_side": "40 cm", "barrel_length": "432 mm", - "price": 50000, - "price_postapoc": 3000, + "price": "500 USD", + "price_postapoc": "30 USD", "type": "GUNMOD", "material": [ "steel" ], "symbol": ":", @@ -236,8 +236,8 @@ "integral_longest_side": "30 cm", "longest_side": "55 cm", "barrel_length": "610 mm", - "price": 50000, - "price_postapoc": 3000, + "price": "500 USD", + "price_postapoc": "30 USD", "type": "GUNMOD", "material": [ "steel" ], "symbol": ":", @@ -267,8 +267,8 @@ "integral_longest_side": "25 cm", "longest_side": "50 cm", "barrel_length": "546 mm", - "price": 50000, - "price_postapoc": 3000, + "price": "500 USD", + "price_postapoc": "30 USD", "type": "GUNMOD", "material": [ "steel" ], "symbol": ":", @@ -321,8 +321,8 @@ "volume": "5822 ml", "longest_side": "83 cm", "barrel_length": "254 mm", - "price": 3000000, - "price_postapoc": 7500, + "price": "30 kUSD", + "price_postapoc": "75 USD", "type": "GUN", "material": [ "aluminum", "plastic" ], "symbol": "(", @@ -365,8 +365,8 @@ "integral_longest_side": "30 cm", "longest_side": "55 cm", "barrel_length": "610 mm", - "price": 50000, - "price_postapoc": 3000, + "price": "500 USD", + "price_postapoc": "30 USD", "type": "GUNMOD", "material": [ "steel" ], "symbol": ":", @@ -410,8 +410,8 @@ "weight": "265 g", "volume": "390 ml", "longest_side": "236 mm", - "price": 8500, - "price_postapoc": 1000, + "price": "85 USD", + "price_postapoc": "10 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -435,8 +435,8 @@ "weight": "250 g", "volume": "330 ml", "longest_side": "220 mm", - "price": 8500, - "price_postapoc": 1000, + "price": "85 USD", + "price_postapoc": "10 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -453,8 +453,8 @@ "weight": "360 g", "volume": "360 ml", "longest_side": "232 mm", - "price": 9920, - "price_postapoc": 1000, + "price": "99 USD 20 cent", + "price_postapoc": "10 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -472,8 +472,8 @@ "weight": "400 g", "volume": "700 ml", "longest_side": "300 mm", - "price": 4500, - "price_postapoc": 1000, + "price": "45 USD", + "price_postapoc": "10 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "dark_gray", @@ -499,8 +499,8 @@ "variant_type": "gun", "weight": "460 g", "volume": "1 L", - "price": 11000, - "price_postapoc": 500, + "price": "110 USD", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "#", "color": "dark_gray", @@ -518,8 +518,8 @@ "weight": "180 g", "volume": "320 ml", "longest_side": "152 mm", - "price": 1200, - "price_postapoc": 1000, + "price": "12 USD", + "price_postapoc": "10 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -536,8 +536,8 @@ "weight": "400 g", "volume": "1 L", "longest_side": "232 mm", - "price": 8900, - "price_postapoc": 2000, + "price": "89 USD", + "price_postapoc": "20 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -554,8 +554,8 @@ "weight": "1700 g", "volume": "1200 ml", "longest_side": "300 mm", - "price": 8900, - "price_postapoc": 2000, + "price": "89 USD", + "price_postapoc": "20 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -572,8 +572,8 @@ "weight": "500 g", "volume": "1000 ml", "longest_side": "210 mm", - "price": 10500, - "price_postapoc": 450, + "price": "105 USD", + "price_postapoc": "4 USD 50 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -589,8 +589,8 @@ "weight": "565 g", "volume": "935 ml", "longest_side": "77 mm", - "price": 8500, - "price_postapoc": 700, + "price": "85 USD", + "price_postapoc": "7 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -606,8 +606,8 @@ "weight": "744 g", "volume": "1559 ml", "longest_side": "128 mm", - "price": 18000, - "price_postapoc": 1100, + "price": "180 USD", + "price_postapoc": "11 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -623,8 +623,8 @@ "weight": "1302 g", "volume": "3118 ml", "longest_side": "143 mm", - "price": 21500, - "price_postapoc": 1300, + "price": "215 USD", + "price_postapoc": "13 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/gun/shot.json b/data/json/items/gun/shot.json index 722b2280d004c..59320fdd4fe20 100644 --- a/data/json/items/gun/shot.json +++ b/data/json/items/gun/shot.json @@ -11,8 +11,8 @@ "volume": "800 ml", "longest_side": "35 cm", "barrel_length": "203 mm", - "price": 100000, - "price_postapoc": 500, + "price": "1 kUSD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "steel", "wood" ], "symbol": "(", @@ -47,8 +47,8 @@ "volume": "4500 ml", "longest_side": "110 cm", "barrel_length": "762 mm", - "price": 180000, - "price_postapoc": 1750, + "price": "1 kUSD 800 USD", + "price_postapoc": "17 USD 50 cent", "to_hit": -2, "material": [ "steel" ], "dispersion": 855, @@ -81,8 +81,8 @@ "volume": "3371 ml", "longest_side": "672 mm", "barrel_length": "470 mm", - "price": 99000, - "price_postapoc": 2250, + "price": "990 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "dispersion": 425, @@ -124,8 +124,8 @@ "volume": "4495 ml", "longest_side": "971 mm", "barrel_length": "775 mm", - "price": 140000, - "price_postapoc": 4000, + "price": "1 kUSD 400 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "ranged_damage": { "damage_type": "bullet", "amount": 1 }, @@ -169,8 +169,8 @@ "volume": "2450 ml", "longest_side": "1166 mm", "barrel_length": "711 mm", - "price": 53800, - "price_postapoc": 2250, + "price": "538 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -1, "barrel_volume": "186 ml", "material": [ "steel", "aluminum", "plastic" ], @@ -208,8 +208,8 @@ "barrel_length": "508 mm", "//": "The true dimensions of the FN SLP are 1092 mm overall length, 558mm barrel length, and 3583 gramme weight.", "default_mods": [ "sights_mount", "underbarrel_mount" ], - "price": 70000, - "price_postapoc": 2400, + "price": "700 USD", + "price_postapoc": "24 USD", "clip_size": 9, "barrel_volume": "0 ml", "valid_mod_locations": [ @@ -254,8 +254,8 @@ "longest_side": "994 mm", "barrel_length": "470 mm", "looks_like": "remington_870", - "price": 60000, - "price_postapoc": 2250, + "price": "600 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -1, "material": [ "steel", "aluminum", "plastic" ], "dispersion": 345, @@ -288,7 +288,7 @@ "ascii_picture": "db_pipe_gun", "clip_size": 2, "modes": [ [ "DEFAULT", "single", 1 ], [ "DOUBLE", "double", 2 ] ], - "relative": { "weight": "625 g", "volume": "360 ml", "price": 5000 }, + "relative": { "weight": "625 g", "volume": "360 ml", "price": "50 USD" }, "barrel_volume": "720 ml", "valid_mod_locations": [ [ "sling", 1 ], @@ -313,8 +313,8 @@ "weight": "2267 g", "volume": "1610 ml", "longest_side": "95 cm", - "price": 20000, - "price_postapoc": 500, + "price": "200 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel", "wood" ], "dispersion": 855, @@ -373,8 +373,8 @@ "volume": "2487 ml", "longest_side": "1234 mm", "barrel_length": "762 mm", - "price": 58700, - "price_postapoc": 2500, + "price": "587 USD", + "price_postapoc": "25 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "dispersion": 305, @@ -411,8 +411,8 @@ "//": "dispersion should be 300 moa, but CDDA exaggerates dispersion.", "sight_dispersion": 750, "clip_size": 4, - "price": 53800, - "price_postapoc": 2250, + "price": "538 USD", + "price_postapoc": "22 USD 50 cent", "barrel_volume": "0 ml", "built_in_mods": [ "breacher_grip" ], "valid_mod_locations": [ @@ -452,8 +452,8 @@ "dispersion": 345, "clip_size": 7, "barrel_volume": "20 ml", - "price": 33800, - "price_postapoc": 2750, + "price": "338 USD", + "price_postapoc": "27 USD 50 cent", "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "shot": 7 } } ] }, { @@ -468,8 +468,8 @@ "volume": "3 L", "longest_side": "60 cm", "barrel_length": "300 mm", - "price": 75000, - "price_postapoc": 1250, + "price": "750 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -1, "material": [ "steel", "wood" ], "dispersion": 855, @@ -509,8 +509,8 @@ "volume": "3064 ml", "longest_side": "1068 mm", "barrel_length": "483 mm", - "price": 189000, - "price_postapoc": 4500, + "price": "1 kUSD 890 USD", + "price_postapoc": "45 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "dispersion": 395, @@ -545,8 +545,8 @@ "volume": "1619 ml", "longest_side": "1111 mm", "barrel_length": "660 mm", - "price": 39900, - "price_postapoc": 2000, + "price": "399 USD", + "price_postapoc": "20 USD", "barrel_volume": "494 ml", "valid_mod_locations": [ [ "barrel", 1 ], @@ -573,8 +573,8 @@ "volume": "2044 ml", "longest_side": "109 cm", "barrel_length": "470 mm", - "price": 10000, - "price_postapoc": 1500, + "price": "100 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "steel", "wood" ], "dispersion": 210, @@ -615,8 +615,8 @@ "longest_side": "592 mm", "barrel_length": "470 mm", "looks_like": "revolver_shotgun", - "price": 120000, - "price_postapoc": 3500, + "price": "1 kUSD 200 USD", + "price_postapoc": "35 USD", "to_hit": -1, "material": [ "steel", "wood" ], "dispersion": 855, @@ -660,8 +660,8 @@ "longest_side": "725 mm", "barrel_length": "470 mm", "looks_like": "ksg", - "price": 180000, - "price_postapoc": 5500, + "price": "1 kUSD 800 USD", + "price_postapoc": "55 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "dispersion": 320, @@ -703,8 +703,8 @@ "longest_side": "708 mm", "barrel_length": "470 mm", "looks_like": "browning_blr", - "price": 100800, - "price_postapoc": 2250, + "price": "1 kUSD 8 USD", + "price_postapoc": "22 USD 50 cent", "to_hit": -1, "material": [ "steel", "wood" ], "dispersion": 860, @@ -746,8 +746,8 @@ "longest_side": "989 mm", "barrel_length": "510 mm", "looks_like": "remington_870_express", - "price": 850000, - "price_postapoc": 2500, + "price": "8 kUSD 500 USD", + "price_postapoc": "25 USD", "material": [ "steel", "wood" ], "dispersion": 360, "durability": 8, @@ -795,8 +795,8 @@ "longest_side": "1213 mm", "barrel_length": "660 mm", "//": "Based on a 26-inch-barrel field configuration.", - "price": 149900, - "price_postapoc": 1800, + "price": "1 kUSD 499 USD", + "price_postapoc": "18 USD", "clip_size": 4, "//2": "The capacity of an unmodified M2 is three shells in the tube plus one in the chamber. We're assuming that the player takes the time to rack a cartridge into the chamber and top off the tube when loading in shell number 4.", "durability": 10, @@ -847,8 +847,8 @@ "longest_side": "1010 mm", "barrel_length": "470 mm", "//": "The true dimensions of a Mossberg 500 Security are 1003 mm in length, 457 mm in barrel length, and 3062 grammes.", - "price": 159900, - "price_postapoc": 2760, + "price": "1 kUSD 599 USD", + "price_postapoc": "27 USD 60 cent", "clip_size": 6, "//2": "The capacity of an unmodified M2 Tactical is five shells in the tube plus one in the chamber. We're assuming that the player takes the time to rack a cartridge into the chamber and top off the tube when loading in shell number six.", "barrel_volume": "0 ml", @@ -868,8 +868,8 @@ "longest_side": "65 cm", "barrel_length": "300 mm", "looks_like": "pipe", - "price": 8500, - "price_postapoc": 1000, + "price": "85 USD", + "price_postapoc": "10 USD", "material": [ "steel" ], "ranged_damage": { "damage_type": "bullet", "amount": -3 }, "dispersion": 960, @@ -908,8 +908,8 @@ "volume": "2390 ml", "longest_side": "610 mm", "barrel_length": "197 mm", - "price": 189000, - "price_postapoc": 4500, + "price": "1 kUSD 890 USD", + "price_postapoc": "45 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "dispersion": 395, diff --git a/data/json/items/gun/signal_flare.json b/data/json/items/gun/signal_flare.json index eb03c14f10038..8281dc2be99db 100644 --- a/data/json/items/gun/signal_flare.json +++ b/data/json/items/gun/signal_flare.json @@ -9,8 +9,8 @@ "ascii_picture": "flaregunb", "weight": "213 g", "volume": "500 ml", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "material": [ "plastic", "steel" ], "symbol": "(", "color": "light_red", diff --git a/data/json/items/gun/ups.json b/data/json/items/gun/ups.json index 278c1564b8d4c..c568aadff9cf9 100644 --- a/data/json/items/gun/ups.json +++ b/data/json/items/gun/ups.json @@ -9,8 +9,8 @@ "weight": "2950 g", "volume": "3 L", "longest_side": "965 mm", - "price": 1600000, - "price_postapoc": 6500, + "price": "16 kUSD", + "price_postapoc": "65 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -50,8 +50,8 @@ "description": "The integral weapon system for the CMES exoskeleton mech-suit, a rotating-barrel actively-cooled rapid-fire laser system.", "weight": "39500 g", "volume": "11 L", - "price": 9500000, - "price_postapoc": 8000, + "price": "95 kUSD", + "price_postapoc": "80 USD", "longest_side": "1086 mm", "to_hit": -4, "material": [ "steel", "plastic" ], @@ -82,8 +82,8 @@ "description": "The integral weapon system for the RMES exoskeleton mech-suit, a quiet and accurate marksman laser rifle.", "weight": "12500 g", "volume": "5500 ml", - "price": 9500000, - "price_postapoc": 8000, + "price": "95 kUSD", + "price_postapoc": "80 USD", "longest_side": "1228 mm", "to_hit": -2, "material": [ "steel", "plastic" ], @@ -125,8 +125,8 @@ "weight": "2950 g", "volume": "3 L", "longest_side": "900 mm", - "price": 1600000, - "price_postapoc": 7500, + "price": "16 kUSD", + "price_postapoc": "75 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -165,7 +165,7 @@ "copy-from": "laser_rifle", "name": { "str": "hm12 dazzle rifle" }, "description": "This prototype 'energy weapon' was apparently manufactured by Hub 01. It somewhat resembles an oversize radar gun, mounted on a rectangular frame of white sheet metal. It will temporarily stun robots, if you manage to hit their sensors with a clean shot.", - "price_postapoc": 15000, + "price_postapoc": "150 USD", "ranged_damage": { "damage_type": "pure", "amount": 1 }, "energy_drain": "20 kJ", "modes": [ [ "DEFAULT", "semi-auto", 1 ] ], @@ -192,8 +192,8 @@ "volume": "1 L", "longest_side": "233 mm", "//": "copy-from'd Glock 17, since this looks_like it", - "price": 720000, - "price_postapoc": 5500, + "price": "7 kUSD 200 USD", + "price_postapoc": "55 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", diff --git a/data/json/items/gunmod/accessories.json b/data/json/items/gunmod/accessories.json index 457c9ba622084..2afd6fe804a51 100644 --- a/data/json/items/gunmod/accessories.json +++ b/data/json/items/gunmod/accessories.json @@ -7,8 +7,8 @@ "weight": "16 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "install_time": "15 m", "material": [ "plastic", "aluminum" ], "symbol": ":", @@ -26,8 +26,8 @@ "weight": "100 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "install_time": "15 m", "material": [ "wood" ], "symbol": ":", @@ -44,8 +44,8 @@ "description": "A counterweight placed forward of the bow's grip allows for greater accuracy. Aside from increased weight and size, there are no drawbacks.", "weight": "88 g", "volume": "500 ml", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "install_time": "10 s", "material": [ "aluminum", "plastic" ], "symbol": ":", @@ -63,8 +63,8 @@ "description": "A set of stabilizing rods with dampeners and an adjustable mount. This system will significantly reduce shaking at full draw.", "weight": "300 g", "volume": "500 ml", - "price": 15000, - "price_postapoc": 750, + "price": "150 USD", + "price_postapoc": "7 USD 50 cent", "install_time": "2 m", "material": [ "aluminum", "plastic" ], "symbol": ":", @@ -82,8 +82,8 @@ "description": "A set of simple pads and rubber with adhesive backing, designed to stick on the limbs and string of a bow to absorb vibrations. This substantially reduces noise during firing and can help with accuracy.", "weight": "50 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "install_time": "5 m", "material": [ "rubber" ], "symbol": ":", @@ -102,8 +102,8 @@ "description": "A set of simple pads and strips of fur with adhesive backing, designed to stick on the limbs and string of a bow to absorb vibrations. This substantially reduces noise during firing and can help with accuracy.", "weight": "50 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "install_time": "5 m", "material": [ "fur" ], "symbol": ":", @@ -123,8 +123,8 @@ "weight": "40 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "install_time": "10 s", "material": [ "steel" ], "symbol": ":", diff --git a/data/json/items/gunmod/barrel.json b/data/json/items/gunmod/barrel.json index 27a1dd85030df..666482818c04e 100644 --- a/data/json/items/gunmod/barrel.json +++ b/data/json/items/gunmod/barrel.json @@ -8,8 +8,8 @@ "integral_weight": "0 g", "volume": "200 ml", "integral_volume": "0 ml", - "price": 72000, - "price_postapoc": 500, + "price": "720 USD", + "price_postapoc": "5 USD", "install_time": "5 m", "material": [ "steel" ], "symbol": ":", @@ -37,8 +37,8 @@ "name": { "str": "shortened barrel" }, "description": "A shortened barrel results in markedly reduced accuracy and a minor increase in noise, but also greatly improves the ease with which the weapon can be carried and wielded.", "volume": "0 ml", - "price": 12000, - "price_postapoc": 250, + "price": "120 USD", + "price_postapoc": "2 USD 50 cent", "install_time": "0 s", "material": [ "steel" ], "symbol": ":", @@ -56,8 +56,8 @@ "description": "Test mod for UPS drain on mods, this should never spawn, if you see this, it's a bug. 50x more UPS drain.", "weight": "450 g", "volume": "500 ml", - "price": 20000, - "price_postapoc": 0, + "price": "200 USD", + "price_postapoc": "0 cent", "install_time": "0 s", "material": [ "steel" ], "symbol": ":", diff --git a/data/json/items/gunmod/brass_catcher.json b/data/json/items/gunmod/brass_catcher.json index ee9ad940aeb06..7b6edd7c2cfc3 100644 --- a/data/json/items/gunmod/brass_catcher.json +++ b/data/json/items/gunmod/brass_catcher.json @@ -6,8 +6,8 @@ "description": "A bag that hangs off the side of your gun and catches ejected casings so you don't have to pick them up.", "weight": "114 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "install_time": "30 s", "material": [ "cotton" ], "symbol": ":", diff --git a/data/json/items/gunmod/conversions.json b/data/json/items/gunmod/conversions.json index b266a135eb92e..518a08efba93b 100644 --- a/data/json/items/gunmod/conversions.json +++ b/data/json/items/gunmod/conversions.json @@ -25,8 +25,8 @@ "integral_weight": "2268 g", "integral_longest_side": "41 cm", "barrel_length": "406 mm", - "price": 25999, - "price_postapoc": 1000, + "price": "259 USD 99 cent", + "price_postapoc": "10 USD", "material": [ "steel", "aluminum", "plastic" ], "symbol": ":", "color": "green", @@ -122,7 +122,7 @@ "integral_weight": "1819 g", "integral_longest_side": "262 mm", "barrel_length": "262 mm", - "price": 26999, + "price": "269 USD 99 cent", "add_mod": [ [ "brass catcher", 1 ], [ "rail", 2 ], [ "sights", 1 ], [ "underbarrel", 1 ], [ "muzzle", 1 ] ] }, { @@ -137,8 +137,8 @@ "integral_weight": "2308 g", "integral_longest_side": "41 cm", "barrel_length": "406 mm", - "price": 25999, - "price_postapoc": 1000, + "price": "259 USD 99 cent", + "price_postapoc": "10 USD", "material": [ "steel", "aluminum", "plastic" ], "symbol": ":", "color": "green", @@ -246,8 +246,8 @@ "integral_weight": "2495 g", "integral_longest_side": "457 mm", "barrel_length": "457 mm", - "price": 10199, - "price_postapoc": 1000, + "price": "101 USD 99 cent", + "price_postapoc": "10 USD", "material": [ "steel", "aluminum", "plastic" ], "symbol": ":", "color": "green", @@ -290,7 +290,7 @@ "integral_weight": "2341 g", "integral_longest_side": "41 cm", "barrel_length": "406 mm", - "price": 12299 + "price": "122 USD 99 cent" }, { "id": "retool_ar15_50beowulf_short", @@ -305,7 +305,7 @@ "integral_weight": "1615 g", "integral_longest_side": "191 mm", "barrel_length": "191 mm", - "price": 10999, + "price": "109 USD 99 cent", "add_mod": [ [ "brass catcher", 1 ], [ "rail", 2 ], [ "sights", 1 ], [ "underbarrel", 1 ], [ "muzzle", 1 ] ] }, { @@ -320,8 +320,8 @@ "integral_weight": "2722 g", "integral_longest_side": "457 mm", "barrel_length": "457 mm", - "price": 27999, - "price_postapoc": 1000, + "price": "279 USD 99 cent", + "price_postapoc": "10 USD", "material": [ "steel", "aluminum", "plastic" ], "symbol": ":", "color": "green", @@ -348,7 +348,7 @@ "integral_weight": "1900 g", "integral_longest_side": "267 mm", "barrel_length": "267 mm", - "price": 14299 + "price": "142 USD 99 cent" }, { "id": "retool_ar15_450_short", @@ -363,7 +363,7 @@ "integral_volume": "850 ml", "integral_longest_side": "191 mm", "barrel_length": "191 mm", - "price": 10699, + "price": "106 USD 99 cent", "add_mod": [ [ "brass catcher", 1 ], [ "rail", 2 ], [ "sights", 1 ], [ "underbarrel", 1 ], [ "muzzle", 1 ] ] }, { @@ -378,8 +378,8 @@ "integral_weight": "2268 g", "integral_longest_side": "41 cm", "barrel_length": "406 mm", - "price": 36999, - "price_postapoc": 1000, + "price": "369 USD 99 cent", + "price_postapoc": "10 USD", "material": [ "steel", "aluminum", "plastic" ], "symbol": ":", "color": "green", @@ -409,8 +409,8 @@ "integral_weight": "1000 g", "integral_longest_side": "304 mm", "barrel_length": "508 mm", - "price": 78000, - "price_postapoc": 1000, + "price": "780 USD", + "price_postapoc": "10 USD", "material": [ "steel", "aluminum", "plastic" ], "symbol": ":", "color": "green", @@ -488,7 +488,7 @@ "integral_weight": "840 g", "integral_longest_side": "203 mm", "barrel_length": "406 mm", - "price": 73000 + "price": "730 USD" }, { "id": "retool_mdrx_223rem_short", @@ -516,8 +516,8 @@ "integral_weight": "840 g", "integral_longest_side": "203 mm", "barrel_length": "406 mm", - "price": 86000, - "price_postapoc": 1000, + "price": "860 USD", + "price_postapoc": "10 USD", "material": [ "steel", "aluminum", "plastic" ], "symbol": ":", "color": "green", @@ -594,8 +594,8 @@ "integral_weight": "1000 g", "integral_longest_side": "304 mm", "barrel_length": "508 mm", - "price": 98000, - "price_postapoc": 1000, + "price": "980 USD", + "price_postapoc": "10 USD", "material": [ "steel", "aluminum", "plastic" ], "symbol": ":", "color": "green", @@ -630,7 +630,7 @@ "integral_weight": "840 g", "integral_longest_side": "203 mm", "barrel_length": "406 mm", - "price": 96000 + "price": "960 USD" }, { "id": "retool_axmc_338lapua", @@ -644,8 +644,8 @@ "integral_weight": "1000 g", "integral_longest_side": "686 mm", "barrel_length": "686 mm", - "price": 82500, - "price_postapoc": 1000, + "price": "825 USD", + "price_postapoc": "10 USD", "material": [ "steel" ], "symbol": ":", "color": "green", @@ -670,8 +670,8 @@ "integral_weight": "1000 g", "integral_longest_side": "610 mm", "barrel_length": "610 mm", - "price": 82500, - "price_postapoc": 1000, + "price": "825 USD", + "price_postapoc": "10 USD", "material": [ "steel" ], "symbol": ":", "color": "green", @@ -696,8 +696,8 @@ "integral_weight": "1000 g", "integral_longest_side": "610 mm", "barrel_length": "610 mm", - "price": 82500, - "price_postapoc": 1000, + "price": "825 USD", + "price_postapoc": "10 USD", "material": [ "steel" ], "symbol": ":", "color": "green", @@ -723,8 +723,8 @@ "integral_longest_side": "406 mm", "barrel_length": "406 mm", "//": "Couldn't find any information regarding weight and prices, so the numbers used here are broad guesses and are likely incorrect.", - "price": 25000, - "price_postapoc": 1000, + "price": "250 USD", + "price_postapoc": "10 USD", "material": [ "steel" ], "symbol": ":", "color": "green", @@ -798,8 +798,8 @@ "integral_longest_side": "406 mm", "barrel_length": "406 mm", "//": "Couldn't find any information regarding weight and prices, so the numbers used here are broad guesses and are likely incorrect.", - "price": 25000, - "price_postapoc": 1000, + "price": "250 USD", + "price_postapoc": "10 USD", "material": [ "steel" ], "symbol": ":", "color": "green", @@ -824,8 +824,8 @@ "integral_weight": "498 g", "integral_longest_side": "26 mm", "barrel_length": "152 mm", - "price": 80000, - "price_postapoc": 1000, + "price": "800 USD", + "price_postapoc": "10 USD", "material": [ "steel" ], "symbol": ":", "color": "yellow", @@ -851,8 +851,8 @@ "integral_weight": "498 g", "integral_longest_side": "26 mm", "barrel_length": "152 mm", - "price": 80000, - "price_postapoc": 1000, + "price": "800 USD", + "price_postapoc": "10 USD", "material": [ "steel" ], "symbol": ":", "color": "yellow", @@ -881,8 +881,8 @@ "integral_weight": "498 g", "integral_longest_side": "26 mm", "barrel_length": "152 mm", - "price": 80000, - "price_postapoc": 1000, + "price": "800 USD", + "price_postapoc": "10 USD", "material": [ "steel" ], "symbol": ":", "color": "yellow", @@ -911,8 +911,8 @@ "integral_weight": "1200 g", "integral_longest_side": "26 mm", "barrel_length": "200 mm", - "price": 100000, - "price_postapoc": 500, + "price": "1 kUSD", + "price_postapoc": "5 USD", "//": "This is presumed to be factory H&K parts installed in, or harvested from, a complete gun. This is not a commercial product offered by H&K to the best of my knowledge, only on specialist retailers like HKParts, so price is a placeholder.", "material": [ "steel" ], "symbol": ":", @@ -939,8 +939,8 @@ "integral_weight": "1200 g", "integral_longest_side": "26 mm", "barrel_length": "200 mm", - "price": 100000, - "price_postapoc": 500, + "price": "1 kUSD", + "price_postapoc": "5 USD", "//": "This is presumed to be factory H&K parts installed in, or harvested from, a complete gun. This is not a commercial product offered by H&K to the best of my knowledge, only on specialist retailers like HKParts, so price is a placeholder.", "material": [ "steel" ], "symbol": ":", @@ -967,8 +967,8 @@ "integral_weight": "1400 g", "integral_longest_side": "26 mm", "barrel_length": "200 mm", - "price": 100000, - "price_postapoc": 500, + "price": "1 kUSD", + "price_postapoc": "5 USD", "//": "This is presumed to be factory H&K parts installed in, or harvested from, a complete gun. This is not a commercial product offered by H&K to the best of my knowledge, only on specialist retailers like HKParts, so price is a placeholder.", "material": [ "steel" ], "symbol": ":", @@ -992,8 +992,8 @@ "volume": "250 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 150, - "price_postapoc": 250, + "price": "1 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "leather" ], "symbol": ":", "color": "brown", diff --git a/data/json/items/gunmod/grip.json b/data/json/items/gunmod/grip.json index 28a9d2beb0a83..82c2c1e260d3b 100644 --- a/data/json/items/gunmod/grip.json +++ b/data/json/items/gunmod/grip.json @@ -7,8 +7,8 @@ "weight": "140 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 48000, - "price_postapoc": 750, + "price": "480 USD", + "price_postapoc": "7 USD 50 cent", "install_time": "10 m", "material": [ "plastic" ], "symbol": ":", @@ -29,8 +29,8 @@ "volume": "250 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 38000, - "price_postapoc": 750, + "price": "380 USD", + "price_postapoc": "7 USD 50 cent", "install_time": "10 m", "material": [ "steel" ], "symbol": ":", @@ -49,8 +49,8 @@ "volume": "250 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 38000, - "price_postapoc": 500, + "price": "380 USD", + "price_postapoc": "5 USD", "install_time": "10 m", "material": [ "steel" ], "symbol": ":", diff --git a/data/json/items/gunmod/laser_gunmods.json b/data/json/items/gunmod/laser_gunmods.json index 1c77586aa45fa..fa9ff208dcca8 100644 --- a/data/json/items/gunmod/laser_gunmods.json +++ b/data/json/items/gunmod/laser_gunmods.json @@ -6,8 +6,8 @@ "description": "A set of optics made to fit on laser weapons, which will diffract the laser beam into several lower powered beams. This increases point-blank damage, but greatly reduces range.", "weight": "380 g", "volume": "250 ml", - "price": 84000, - "price_postapoc": 1000, + "price": "840 USD", + "price_postapoc": "10 USD", "install_time": "15 m", "material": [ "steel" ], "symbol": ":", @@ -26,8 +26,8 @@ "description": "A set of optics to concentrate the laser beam on a smaller focus point. This increases range and damage output, but complicates targeting.", "weight": "380 g", "volume": "250 ml", - "price": 84000, - "price_postapoc": 1000, + "price": "840 USD", + "price_postapoc": "10 USD", "install_time": "15 m", "material": [ "steel" ], "symbol": ":", @@ -46,8 +46,8 @@ "description": "A set of high-tech electronics and optics. Converts a laser pistol into a less-lethal electrolaser capable of stunning targets, at the cost of a decreased damage output and increased power consumption.", "weight": "380 g", "volume": "1 L", - "price": 84000, - "price_postapoc": 1000, + "price": "840 USD", + "price_postapoc": "10 USD", "install_time": "20 m", "material": [ "steel" ], "symbol": ":", @@ -68,8 +68,8 @@ "weight": "380 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 84000, - "price_postapoc": 1000, + "price": "840 USD", + "price_postapoc": "10 USD", "install_time": "20 m", "material": [ "steel" ], "symbol": ":", @@ -87,8 +87,8 @@ "weight": "380 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 84000, - "price_postapoc": 1000, + "price": "840 USD", + "price_postapoc": "10 USD", "install_time": "20 m", "material": [ "steel" ], "symbol": ":", diff --git a/data/json/items/gunmod/loading_port.json b/data/json/items/gunmod/loading_port.json index 8d28cb34380e2..35348ce1457ba 100644 --- a/data/json/items/gunmod/loading_port.json +++ b/data/json/items/gunmod/loading_port.json @@ -7,8 +7,8 @@ "weight": "135 g", "volume": "149 ml", "integral_volume": "149 ml", - "price": 15700, - "price_postapoc": 250, + "price": "157 USD", + "price_postapoc": "2 USD 50 cent", "install_time": "8 m", "material": [ "aluminum" ], "symbol": ":", diff --git a/data/json/items/gunmod/mechanism.json b/data/json/items/gunmod/mechanism.json index a37aea4c555cf..bff1d036b1178 100644 --- a/data/json/items/gunmod/mechanism.json +++ b/data/json/items/gunmod/mechanism.json @@ -8,8 +8,8 @@ "volume": "250 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 1500, - "price_postapoc": 500, + "price": "15 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": ":", "color": "dark_gray", @@ -28,8 +28,8 @@ "volume": "250 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 65000, - "price_postapoc": 500, + "price": "650 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": ":", "color": "red", @@ -50,8 +50,8 @@ "weight": "60 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 24000, - "price_postapoc": 500, + "price": "240 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": ":", "color": "red", @@ -74,8 +74,8 @@ "description": "A relatively simple switch or button mechanism that replaces the back plate of a Glock slide, allowing it to function as a select-fire machine pistol. A highly illegal modification, but the feds are zombie food anyway. This will fit any standard Glock pistol in 9mm, .40, .45, 10mm, or .357 caliber.", "weight": "55 g", "volume": "20 ml", - "price": 9500, - "price_postapoc": 300, + "price": "95 USD", + "price_postapoc": "3 USD", "material": [ "steel" ], "symbol": ":", "color": "red", @@ -94,8 +94,8 @@ "description": "A relatively simple modification of some of a TEC-9's internal fire-control components, converting it to a fully-automatic-only machine pistol. Calling this hilariously illegal would be an understatement, but anyone who'd care is probably long gone by now.", "weight": "55 g", "volume": "20 ml", - "price": 9500, - "price_postapoc": 300, + "price": "95 USD", + "price_postapoc": "3 USD", "material": [ "steel" ], "symbol": ":", "color": "red", @@ -115,8 +115,8 @@ "weight": "60 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 24000, - "price_postapoc": 500, + "price": "240 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": ":", "color": "red", @@ -135,8 +135,8 @@ "weight": "220 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 50000, - "price_postapoc": 750, + "price": "500 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "plastic" ], "symbol": ":", "color": "dark_gray", @@ -154,8 +154,8 @@ "weight": "60 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 24000, - "price_postapoc": 350, + "price": "240 USD", + "price_postapoc": "3 USD 50 cent", "material": [ "steel" ], "symbol": ":", "color": "red", @@ -178,8 +178,8 @@ "weight": "60 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 24000, - "price_postapoc": 350, + "price": "240 USD", + "price_postapoc": "3 USD 50 cent", "material": [ "steel" ], "symbol": ":", "color": "red", diff --git a/data/json/items/gunmod/mount.json b/data/json/items/gunmod/mount.json index 691e483eb3250..61a6ee2a8ccf5 100644 --- a/data/json/items/gunmod/mount.json +++ b/data/json/items/gunmod/mount.json @@ -7,8 +7,8 @@ "weight": "80 g", "volume": "50 ml", "integral_volume": "0 ml", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "material": [ "steel", "plastic" ], "symbol": ":", "color": "light_gray", @@ -26,8 +26,8 @@ "description": "A plastic mount for attaching a rail accessory, designed to be permanently installed onto almost any weapon, along with some fasteners. Ideal for bringing out your inner tacticool on older guns.", "weight": "10 g", "volume": "8 ml", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "material": [ "steel", "plastic" ], "symbol": ":", "color": "light_gray", @@ -45,8 +45,8 @@ "description": "A plastic mount for attaching a sight, designed to be permanently installed onto almost any weapon other than launchers and pistols, along with some fasteners. Ideal for bringing out your inner tacticool on older guns.", "weight": "10 g", "volume": "8 ml", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "material": [ "steel", "plastic" ], "symbol": ":", "color": "light_gray", @@ -64,8 +64,8 @@ "description": "A plastic mount for attaching a sight, designed to be permanently installed onto almost any launcher, along with some fasteners. Ideal for bringing out your inner tacticool on rocket launchers.", "weight": "60 g", "volume": "80 ml", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "material": [ "steel", "plastic" ], "symbol": ":", "color": "light_gray", @@ -83,8 +83,8 @@ "description": "A plastic mount for attaching a sight, designed to be permanently installed onto almost any pistol, along with some fasteners. Ideal for bringing out your inner tacticool on pocket pistols.", "weight": "60 g", "volume": "80 ml", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "material": [ "steel", "plastic" ], "symbol": ":", "color": "light_gray", @@ -103,8 +103,8 @@ "weight": "80 g", "volume": "50 ml", "integral_volume": "0 ml", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": ":", "color": "light_gray", @@ -122,8 +122,8 @@ "description": "A plastic mount for attaching an underbarrel accessory, designed to be permanently installed onto almost any weapon, along with some fasteners. Ideal for bringing out your inner tacticool on older guns.", "weight": "10 g", "volume": "8 ml", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "material": [ "steel", "plastic" ], "symbol": ":", "color": "light_gray", @@ -141,8 +141,8 @@ "description": "A one-piece mount for attaching a bayonet to a firearm's accessory rail, in case that was a thing you wanted. Ideal for making newer guns pointier.", "weight": "162 g", "volume": "40 ml", - "price": 15000, - "price_postapoc": 150, + "price": "150 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "steel" ], "symbol": ":", "color": "light_gray", diff --git a/data/json/items/gunmod/muzzle.json b/data/json/items/gunmod/muzzle.json index 28d20ac887b82..f63f18b42f843 100644 --- a/data/json/items/gunmod/muzzle.json +++ b/data/json/items/gunmod/muzzle.json @@ -9,8 +9,8 @@ "volume": "17 ml", "longest_side": "4 cm", "integral_longest_side": "2 cm", - "price": 2500, - "price_postapoc": 300, + "price": "25 USD", + "price_postapoc": "3 USD", "install_time": "1 m", "material": [ "steel" ], "symbol": ":", @@ -30,8 +30,8 @@ "volume": "250 ml", "longest_side": "5 cm", "integral_longest_side": "5 cm", - "price": 84000, - "price_postapoc": 500, + "price": "840 USD", + "price_postapoc": "5 USD", "install_time": "3 m", "material": [ "steel" ], "symbol": ":", @@ -60,8 +60,8 @@ "volume": "750 ml", "longest_side": "10 cm", "integral_longest_side": "10 cm", - "price": 480, - "price_postapoc": 250, + "price": "4 USD 80 cent", + "price_postapoc": "2 USD 50 cent", "install_time": "30 s", "to_hit": 1, "material": [ "steel" ], @@ -89,8 +89,8 @@ "//": "Wix 51333 + 4mm for the adapter. 4oz adapter + 1.42lb for the can", "longest_side": "182 mm", "integral_longest_side": "172 mm", - "price": 480, - "price_postapoc": 250, + "price": "4 USD 80 cent", + "price_postapoc": "2 USD 50 cent", "install_time": "1 m", "to_hit": 1, "material": [ "steel" ], @@ -117,8 +117,8 @@ "volume": "1286 ml", "longest_side": "318 mm", "integral_longest_side": "308 mm", - "price": 140000, - "price_postapoc": 2000, + "price": "1 kUSD 400 USD", + "price_postapoc": "20 USD", "install_time": "30 s", "to_hit": 1, "material": [ "steel" ], @@ -144,8 +144,8 @@ "volume": "247 ml", "longest_side": "198 mm", "integral_longest_side": "188 mm", - "price": 77000, - "price_postapoc": 1500, + "price": "770 USD", + "price_postapoc": "15 USD", "to_hit": 1, "material": [ "steel" ], "symbol": ":", @@ -189,8 +189,8 @@ "volume": "179 ml", "longest_side": "162 mm", "integral_longest_side": "152 mm", - "price": 78000, - "price_postapoc": 1500, + "price": "780 USD", + "price_postapoc": "15 USD", "material": [ "steel" ], "symbol": ":", "color": "dark_gray", @@ -213,8 +213,8 @@ "volume": "150 ml", "longest_side": "4 cm", "integral_longest_side": "0 cm", - "price": 78000, - "price_postapoc": 1500, + "price": "780 USD", + "price_postapoc": "15 USD", "material": [ "steel" ], "symbol": ":", "color": "dark_gray", diff --git a/data/json/items/gunmod/rail.json b/data/json/items/gunmod/rail.json index d3283b4bb98c9..cd439285f9e7c 100644 --- a/data/json/items/gunmod/rail.json +++ b/data/json/items/gunmod/rail.json @@ -6,8 +6,8 @@ "description": "A kit to attach a pair of crossbow arms and a firing rail to the barrel of a long firearm. It allows crossbow bolts to be fired.", "weight": "1450 g", "volume": "500 ml", - "price": 50000, - "price_postapoc": 1500, + "price": "500 USD", + "price_postapoc": "15 USD", "install_time": "30 m", "material": [ "steel", "wood" ], "symbol": ":", @@ -55,8 +55,8 @@ "description": "An additional rail set at 45° for attaching a secondary optic.", "weight": "40 g", "volume": "125ml", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "install_time": "2 m", "material": [ "steel" ], "symbol": ":", @@ -82,8 +82,8 @@ "weight": "120 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 12000, - "price_postapoc": 500, + "price": "120 USD", + "price_postapoc": "5 USD", "install_time": "5 m", "material": [ "plastic", "steel" ], "symbol": ":", @@ -104,8 +104,8 @@ "weight": "286 g", "volume": "750 ml", "integral_volume": "500 ml", - "price": 68000, - "price_postapoc": 750, + "price": "680 USD", + "price_postapoc": "7 USD 50 cent", "install_time": "10 m", "material": [ "aluminum", "plastic" ], "symbol": ":", diff --git a/data/json/items/gunmod/sights.json b/data/json/items/gunmod/sights.json index 7f96fcf4c4389..ed13299b2ff67 100644 --- a/data/json/items/gunmod/sights.json +++ b/data/json/items/gunmod/sights.json @@ -8,8 +8,8 @@ "weight": "240 g", "volume": "553 ml", "integral_volume": "553 ml", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "install_time": "60 m", "material": [ { "type": "aluminum", "portion": 90 }, { "type": "plastic", "portion": 10 } ], "symbol": ":", @@ -29,8 +29,8 @@ "weight": "80 g", "volume": "50 ml", "integral_volume": "0 ml", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "install_time": "20 m", "material": [ "aluminum", "plastic" ], "symbol": ":", @@ -49,8 +49,8 @@ "weight": "180 g", "volume": "250 ml", "integral_volume": "0 ml", - "price": 20000, - "price_postapoc": 750, + "price": "200 USD", + "price_postapoc": "7 USD 50 cent", "install_time": "20 m", "material": [ "aluminum", "plastic", "glass" ], "symbol": ":", @@ -70,8 +70,8 @@ "description": "An advanced optic with an adjustable circular hologram reticle superimposed on the field of view. Used extensively by military forces, it increases accuracy and weight. This is a step up from a red dot sight.", "weight": "255 g", "volume": "290 ml", - "price": 68000, - "price_postapoc": 750, + "price": "680 USD", + "price_postapoc": "7 USD 50 cent", "install_time": "5 m", "material": [ "plastic", "steel" ], "symbol": ":", @@ -94,8 +94,8 @@ "volume": "10 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 72000, - "price_postapoc": 250, + "price": "720 USD", + "price_postapoc": "2 USD 50 cent", "install_time": "10 m", "material": [ "steel" ], "symbol": ":", @@ -114,8 +114,8 @@ "description": "A small scope intended for use on a handgun. Increases weight but improves accuracy greatly.", "weight": "212 g", "volume": "200 ml", - "price": 54000, - "price_postapoc": 500, + "price": "540 USD", + "price_postapoc": "5 USD", "install_time": "5 m", "material": [ "aluminum", "glass" ], "symbol": ":", @@ -134,8 +134,8 @@ "description": "A red dot optic meant to be attached to the top of the weapon, replacing the iron sights. Increases accuracy and weight.", "weight": "150 g", "volume": "80 ml", - "price": 68000, - "price_postapoc": 500, + "price": "680 USD", + "price_postapoc": "5 USD", "install_time": "5 m", "material": [ "plastic", "steel" ], "symbol": ":", @@ -156,8 +156,8 @@ "description": "A 3-18x44 rifle scope. It is adjustable for windage and elevation in 1/10th mrad increments and is remarkably small and light for its magnification.", "weight": "669 g", "volume": "485 ml", - "price": 68000, - "price_postapoc": 750, + "price": "680 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "aluminum", "glass" ], "symbol": ":", "color": "dark_gray", @@ -178,8 +178,8 @@ "description": "A 3-18x44 rifle scope. It is adjustable for windage and elevation in 1/10th mrad increments and is remarkably small and light for its magnification. This one has an additional rail on the top of its ring mounts for an additional backup optic.", "weight": "700 g", "volume": "485 ml", - "price": 68000, - "price_postapoc": 750, + "price": "680 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "aluminum", "glass" ], "symbol": ":", "color": "dark_gray", @@ -208,8 +208,8 @@ "description": "A 4x32 TA01 Advanced Combat Optical Gunsight with a tritium illuminated crosshair.", "weight": "280 g", "volume": "112 ml", - "price": 68000, - "price_postapoc": 750, + "price": "680 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "aluminum", "glass" ], "symbol": ":", "color": "dark_gray", @@ -229,8 +229,8 @@ "description": "A sleek compact 3x magnifier designed to sit behind a modern holographic sight. Mounted on a lever to quickly flip in and out of the sights picture, the magnifier allows the full functionality of a high end close quarters sight while also allowing you to engage targets at range.", "weight": "320 g", "volume": "390 ml", - "price": 66900, - "price_postapoc": 750, + "price": "669 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "steel", "glass" ], "symbol": ":", "color": "dark_gray", @@ -268,7 +268,7 @@ "description": "An integral component of the RM11B rifle system, the RS1219 Accipiter digital scope provides auto-adjusting focal length, a user-selectable reticle, and an offset reflex sight for close objectives.", "weight": "0 g", "volume": "0 ml", - "price": 0, + "price": "0 cent", "material": [ "superalloy", "ceramic" ], "aim_speed_modifier": 0, "flags": [ "ZOOM", "IRREMOVABLE" ] @@ -280,8 +280,8 @@ "description": "A simple hand-crafted telescopic sight, essentially a small telescope with crosshairs. Not as good as the ones made before the Cataclysm. Increases weight but improves accuracy.", "weight": "300 g", "volume": "250 ml", - "price": 30000, - "price_postapoc": 250, + "price": "300 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic", "steel", "glass" ], "symbol": ":", "color": "dark_gray", @@ -303,8 +303,8 @@ "description": "A simple telescopic sight intended for use on a handgun. Increases weight but improves accuracy greatly.", "weight": "220 g", "volume": "150 ml", - "price": 27000, - "price_postapoc": 500, + "price": "270 USD", + "price_postapoc": "5 USD", "install_time": "10 m", "material": [ "plastic", "steel", "glass" ], "symbol": ":", diff --git a/data/json/items/gunmod/sling.json b/data/json/items/gunmod/sling.json index 71197c1afea17..1110593f31fee 100644 --- a/data/json/items/gunmod/sling.json +++ b/data/json/items/gunmod/sling.json @@ -7,8 +7,8 @@ "weight": "100 g", "volume": "250 ml", "integral_volume": "250 ml", - "price": 480, - "price_postapoc": 10, + "price": "4 USD 80 cent", + "price_postapoc": "10 cent", "install_time": "20 s", "material": [ "cotton" ], "symbol": ":", @@ -34,8 +34,8 @@ "name": { "str": "adjustable sling" }, "description": "An adjustable strap that allows the rifle to be worn over your shoulders like a piece of clothing. However, it offers no protection.", "copy-from": "shoulder_strap_simple", - "price": 3500, - "price_postapoc": 20, + "price": "35 USD", + "price_postapoc": "20 cent", "material": [ "nylon" ], "use_action": { "type": "transform", diff --git a/data/json/items/gunmod/stock.json b/data/json/items/gunmod/stock.json index 8f766f12cd89e..42db815e7887e 100644 --- a/data/json/items/gunmod/stock.json +++ b/data/json/items/gunmod/stock.json @@ -8,8 +8,8 @@ "volume": "500 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 38000, - "price_postapoc": 500, + "price": "380 USD", + "price_postapoc": "5 USD", "install_time": "10 m", "to_hit": 1, "material": [ "plastic", "steel" ], @@ -30,8 +30,8 @@ "volume": "500 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 42000, - "price_postapoc": 250, + "price": "420 USD", + "price_postapoc": "2 USD 50 cent", "install_time": "5 m", "material": [ "plastic", "steel" ], "symbol": ":", @@ -73,8 +73,8 @@ "volume": "500 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 42000, - "price_postapoc": 250, + "price": "420 USD", + "price_postapoc": "2 USD 50 cent", "install_time": "5 m", "material": [ "plastic", "steel" ], "symbol": ":", @@ -120,8 +120,8 @@ "volume": "250 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 30000, - "price_postapoc": 250, + "price": "300 USD", + "price_postapoc": "2 USD 50 cent", "install_time": "5 m", "material": [ "steel" ], "symbol": ":", @@ -181,8 +181,8 @@ "integral_longest_side": "30 cm", "integral_volume": "500 ml", "integral_weight": "350 g", - "price": 38000, - "price_postapoc": 500, + "price": "380 USD", + "price_postapoc": "5 USD", "install_time": "5 m", "material": [ "plastic", "steel" ], "symbol": ":", @@ -201,8 +201,8 @@ "volume": "500 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 400, - "price_postapoc": 500, + "price": "4 USD", + "price_postapoc": "5 USD", "install_time": "5 m", "to_hit": 1, "material": [ "plastic", "steel" ], @@ -223,8 +223,8 @@ "volume": "250 ml", "integral_volume": "0 ml", "integral_weight": "300 g", - "price": 4500, - "price_postapoc": 500, + "price": "45 USD", + "price_postapoc": "5 USD", "install_time": "3 m", "to_hit": 1, "material": [ "plastic", "steel" ], @@ -247,8 +247,8 @@ "integral_longest_side": "4 cm", "integral_volume": "100 ml", "integral_weight": "100 g", - "price": 4750, - "price_postapoc": 50, + "price": "47 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "aluminum" ], "symbol": ":", "color": "dark_gray", @@ -267,8 +267,8 @@ "weight": "150 g", "volume": "200 ml", "integral_volume": "0 L", - "price": 5000, - "price_postapoc": 300, + "price": "50 USD", + "price_postapoc": "3 USD", "material": [ "aluminum" ], "symbol": ":", "color": "dark_gray", @@ -290,8 +290,8 @@ "volume": "300 ml", "integral_volume": "100 ml", "integral_weight": "100 g", - "price": 42000, - "price_postapoc": 250, + "price": "420 USD", + "price_postapoc": "2 USD 50 cent", "install_time": "5 m", "material": [ "steel" ], "symbol": ":", @@ -334,8 +334,8 @@ "integral_longest_side": "35 cm", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "install_time": "5 m", "material": [ "plastic", "steel" ], "symbol": ":", @@ -362,8 +362,8 @@ "volume": "10 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "install_time": "5 m", "material": [ "plastic", "steel" ], "symbol": ":", @@ -390,8 +390,8 @@ "volume": "500 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 400, - "price_postapoc": 500, + "price": "4 USD", + "price_postapoc": "5 USD", "install_time": "5 m", "to_hit": 1, "material": [ "plastic", "steel" ], @@ -412,8 +412,8 @@ "volume": "500 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 400, - "price_postapoc": 500, + "price": "4 USD", + "price_postapoc": "5 USD", "install_time": "5 m", "to_hit": 1, "material": [ "plastic" ], diff --git a/data/json/items/gunmod/underbarrel.json b/data/json/items/gunmod/underbarrel.json index 0c51518da158a..58ae7d085c1d7 100644 --- a/data/json/items/gunmod/underbarrel.json +++ b/data/json/items/gunmod/underbarrel.json @@ -6,8 +6,8 @@ "description": "Bipods are commonly used on rifles and machine guns to provide a forward rest and reduce motion. Although they greatly improve handling of recoil, they are usable only on certain surfaces (or from the prone position), and are slow to equip.", "weight": "400 g", "volume": "500 ml", - "price": 68000, - "price_postapoc": 500, + "price": "680 USD", + "price_postapoc": "5 USD", "install_time": "1 m", "to_hit": -1, "material": [ "steel" ], @@ -39,8 +39,8 @@ "volume": "500 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 68000, - "price_postapoc": 500, + "price": "680 USD", + "price_postapoc": "5 USD", "install_time": "20 m", "to_hit": -1, "material": [ "aluminum" ], @@ -87,8 +87,8 @@ "volume": "500 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 68000, - "price_postapoc": 500, + "price": "680 USD", + "price_postapoc": "5 USD", "install_time": "20 m", "to_hit": -1, "material": [ "aluminum", "plastic" ], @@ -110,8 +110,8 @@ "description": "The integrated underbarrel shotgun of a combination gun which holds two shots. It's irremovable.", "weight": "2600 g", "volume": "0 ml", - "price": 95000, - "price_postapoc": 500, + "price": "950 USD", + "price_postapoc": "5 USD", "install_time": "0 s", "to_hit": -1, "material": [ "steel" ], @@ -138,7 +138,7 @@ "description": "A removable molded grip that comes standard on guns without rails. It's not as efficient as a proper forward grip or bipod at controlling recoil, but it's better than nothing.", "weight": "246 g", "volume": "568ml", - "price": 6000, + "price": "60 USD", "install_time": "5 m", "material": [ "plastic" ], "symbol": ":", @@ -156,8 +156,8 @@ "description": "A grip placed forward on the barrel allows for greater control. Not as effective as a bipod but usable under all conditions.", "weight": "68 g", "volume": "119 ml", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "install_time": "30 s", "material": [ "steel", "plastic" ], "symbol": ":", @@ -183,8 +183,8 @@ "description": "A wooden grip placed forward on the barrel allows for greater control. Not as effective as a bipod but usable under all conditions. This one was cleverly handmade by a desperate survivor or miserly enthusiast, it cannot be removed after installation.", "weight": "94 g", "volume": "119 ml", - "price": 200, - "price_postapoc": 250, + "price": "2 USD", + "price_postapoc": "2 USD 50 cent", "install_time": "15 m", "material": [ "wood" ], "symbol": ":", @@ -204,8 +204,8 @@ "volume": "92 ml", "longest_side": "22 cm", "integral_longest_side": "22 cm", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "install_time": "0 s", "to_hit": -1, "material": [ "steel" ], @@ -253,8 +253,8 @@ "description": "The integrated second tube magazine of the Kel-Tec KSG, which holds 7 shots. It's irremovable.", "weight": "1550 g", "volume": "1750 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "install_time": "0 s", "material": [ "steel" ], "symbol": ":", @@ -282,8 +282,8 @@ "description": "The integrated second tube magazine of the Kel-Tec KSG-25, which holds 12 shots. It's irremovable.", "weight": "1550 g", "volume": "1750 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "install_time": "0 s", "material": [ "steel" ], "symbol": ":", @@ -312,8 +312,8 @@ "weight": "100 g", "volume": "1750 ml", "integral_volume": "0 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "install_time": "0 s", "material": [ "steel" ], "symbol": ":", @@ -343,8 +343,8 @@ "weight": "100 g", "volume": "1750 ml", "integral_volume": "0 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "install_time": "0 s", "material": [ "steel" ], "symbol": ":", @@ -373,8 +373,8 @@ "weight": "70 g", "volume": "40 ml", "integral_volume": "0 ml", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "install_time": "5 m", "material": [ "plastic", "steel" ], "symbol": ":", @@ -395,8 +395,8 @@ "description": "The M203 was originally designed for use with M16 variants but today can be attached to almost any rifle. It allows a single 40mm grenade to be loaded and fired.", "weight": "1360 g", "volume": "500 ml", - "price": 65000, - "price_postapoc": 1000, + "price": "650 USD", + "price_postapoc": "10 USD", "install_time": "5 m", "material": [ "steel", "plastic" ], "symbol": ":", @@ -434,8 +434,8 @@ "description": "The M320 Grenade Launcher Module offers the functionality of larger launchers in a very small package at the cost of decreased accuracy. It can be either attached to a rifle or combined with a buttstock for standalone use.", "weight": "1500 g", "volume": "500 ml", - "price": 84000, - "price_postapoc": 1000, + "price": "840 USD", + "price_postapoc": "10 USD", "install_time": "5 m", "material": [ "steel" ], "symbol": ":", @@ -472,8 +472,8 @@ "name": { "str": "M6 Survival Gun shotgun" }, "description": "The integrated 12 gauge shotgun barrel of the Chiappa M6 Survival Gun. It's irremovable.", "volume": "0 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "install_time": "0 s", "material": [ "steel" ], "symbol": ":", @@ -517,8 +517,8 @@ "description": "A minimalist pump-action shotgun, which can be mounted under the barrel of many rifles. It allows a total of four shotgun shells to be loaded and fired.", "weight": "2600 g", "volume": "1068 ml", - "price": 95000, - "price_postapoc": 1000, + "price": "950 USD", + "price_postapoc": "10 USD", "install_time": "5 m", "material": [ "steel" ], "symbol": ":", @@ -548,8 +548,8 @@ "weight": "1220 g", "volume": "1068 ml", "longest_side": "419 mm", - "price": 95000, - "price_postapoc": 2041, + "price": "950 USD", + "price_postapoc": "20 USD 41 cent", "install_time": "5 m", "material": [ "steel" ], "symbol": ":", @@ -577,8 +577,8 @@ "description": "A home-built launcher tube that can be attached to almost any weapon except handguns. It allows a single 40mm grenade to be loaded and fired.", "weight": "2080 g", "volume": "750 ml", - "price": 25000, - "price_postapoc": 500, + "price": "250 USD", + "price_postapoc": "5 USD", "install_time": "10 m", "material": [ "steel", "plastic" ], "symbol": ":", @@ -607,8 +607,8 @@ "description": "A pistol bayonet is a stabbing weapon that can be attached to the front of a handgun, allowing a melee attack to deal piercing damage.", "weight": "122 g", "volume": "250 ml", - "price": 4000, - "price_postapoc": 1000, + "price": "40 USD", + "price_postapoc": "10 USD", "install_time": "5 m", "to_hit": -4, "material": [ "steel" ], @@ -631,8 +631,8 @@ "weight": "1140 g", "volume": "750 ml", "longest_side": "380 mm", - "price": 120000, - "price_postapoc": 5000, + "price": "1 kUSD 200 USD", + "price_postapoc": "50 USD", "install_time": "5 m", "material": [ "superalloy", "ceramic" ], "symbol": ":", @@ -661,8 +661,8 @@ "description": "A short shotgun with 2 barrels, which can be mounted under the barrel of many rifles. It allows two shotgun shells to be loaded and fired.", "weight": "1500 g", "volume": "750 ml", - "price": 65000, - "price_postapoc": 1000, + "price": "650 USD", + "price_postapoc": "10 USD", "install_time": "10 m", "material": [ "steel" ], "symbol": ":", @@ -692,8 +692,8 @@ "volume": "250 ml", "integral_volume": "0 ml", "integral_weight": "120 g", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "install_time": "2 m", "to_hit": -1, "material": [ "steel" ], @@ -736,8 +736,8 @@ "description": "The Steyr Scout's integral bipod is effectively part of the rifle's housing, causing its added weight to practically be zero. However, the polymer construction and awkward design prevent it from being as useful as a normal bipod.", "volume": "0 ml", "//": "The bipod is straight-up part of the rifle's housing, so it doesn't take up any space or weigh anything.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "install_time": "1 m", "material": [ "plastic" ], "symbol": ":", diff --git a/data/json/items/handloaded_bullets.json b/data/json/items/handloaded_bullets.json index e46b99bd0874a..4b538a0469946 100644 --- a/data/json/items/handloaded_bullets.json +++ b/data/json/items/handloaded_bullets.json @@ -2,8 +2,8 @@ { "type": "AMMO", "id": "blun_slug", - "price": 4500, - "price_postapoc": 50, + "price": "45 USD", + "price_postapoc": "50 cent", "name": { "str": "blunderbuss slug" }, "symbol": "=", "color": "red", @@ -22,8 +22,8 @@ { "type": "AMMO", "id": "blun_shot", - "price": 4500, - "price_postapoc": 50, + "price": "45 USD", + "price_postapoc": "50 cent", "name": { "str_sp": "blunderbuss scrap shot" }, "symbol": "=", "color": "red", @@ -44,8 +44,8 @@ { "type": "AMMO", "id": "blun_lead_shot", - "price": 4500, - "price_postapoc": 50, + "price": "45 USD", + "price_postapoc": "50 cent", "name": { "str_sp": "blunderbuss shot" }, "symbol": "=", "color": "red", @@ -66,8 +66,8 @@ { "type": "AMMO", "id": "blun_flechette", - "price": 4500, - "price_postapoc": 50, + "price": "45 USD", + "price_postapoc": "50 cent", "name": { "str_sp": "blunderbuss flechette" }, "symbol": "=", "color": "red", diff --git a/data/json/items/id_cards.json b/data/json/items/id_cards.json index 52ff5020c5712..4bc6ab539cfb0 100644 --- a/data/json/items/id_cards.json +++ b/data/json/items/id_cards.json @@ -6,9 +6,9 @@ "color": "blue", "name": { "str": "science ID card" }, "description": "An ID card that once belonged to a scientist. The reverse side describes the protocol for using it; this could grant access at one control panel, if you can find one.", - "price": 60000, + "price": "600 USD", "extend": { "flags": [ "SCIENCE_CARD" ] }, - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "category": "keys" }, { @@ -18,9 +18,9 @@ "color": "green", "name": { "str": "military ID card" }, "description": "An ID card that once belonged to a military officer. The reverse side describes the protocol for using it; this could grant access at one control panel, if you can find one.", - "price": 120000, + "price": "1 kUSD 200 USD", "extend": { "flags": [ "MILITARY_CARD" ] }, - "price_postapoc": 500, + "price_postapoc": "5 USD", "category": "keys" }, { @@ -31,9 +31,9 @@ "color": "green", "name": { "str": "industrial ID card" }, "description": "An ID card that once belonged to a high-level technician. The reverse side describes the protocol for using it; this could grant access at one control panel, if you can find one.", - "price": 120000, + "price": "1 kUSD 200 USD", "extend": { "flags": [ "INDUSTRIAL_CARD" ] }, - "price_postapoc": 100, + "price_postapoc": "1 USD", "category": "keys" }, { @@ -44,9 +44,9 @@ "color": "green", "name": { "str": "co-op badge" }, "description": "A manually-encoded badge giving you access to the artisans' workshop. It even has your name written on the back.", - "price": 120000, + "price": "1 kUSD 200 USD", "extend": { "flags": [ "COOP_CARD" ] }, - "price_postapoc": 100, + "price_postapoc": "1 USD", "category": "keys" }, { @@ -56,9 +56,9 @@ "color": "blue", "name": { "str": "visitor's pass", "str_pl": "visitor's passes" }, "description": "A visitor's pass to some sort of facility. The reverse side describes the protocol for using it; this could grant access at a card reader, if you can find one. It also lists the addresses of nearby facilities; activate it to add their locations to your map.", - "price": 60000, + "price": "600 USD", "extend": { "flags": [ "SCIENCE_CARD_VISITOR" ] }, - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "category": "keys", "use_action": { "type": "reveal_map", @@ -220,7 +220,7 @@ "name": { "str": "LIXA ID badge" }, "description": "An ID badge for the LIXA facility, with a photo of an awkwardly smiling scientist on the front. Instructions on the back explain that this will grant you access to the LIXA experiment floor.", "flags": [ "LIXA_SCIENCE_CARD", "PRESERVE_SPAWN_OMT", "CREDIT_CARD_SHAPED" ], - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "3 g", "volume": "5 ml", @@ -235,7 +235,7 @@ "name": { "str": "defaced LIXA ID badge" }, "description": "An ID badge for the LIXA facility, with a photo of an awkwardly smiling scientist on the front. It is heavily scratched, and there is a line on the back in black marker.", "flags": [ "LIXA_SCIENCE_CARD", "LIXA_SCIENCE_CARD_2", "PRESERVE_SPAWN_OMT", "CREDIT_CARD_SHAPED" ], - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "3 g", "volume": "5 ml", @@ -250,7 +250,7 @@ "name": { "str": "LIXA ID badge: Dr. Najma Saed", "str_pl": "LIXA ID badges: Dr. Najma Saed" }, "description": "An ID badge for the LIXA facility. The photo is of a pleasantly smiling woman in a hijab.", "flags": [ "LIXA_SCIENCE_CARD", "LIXA_SCIENCE_CARD_2", "LIXA_SCIENCE_CARD_3", "PRESERVE_SPAWN_OMT", "CREDIT_CARD_SHAPED" ], - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "3 g", "volume": "5 ml", @@ -265,7 +265,7 @@ "name": { "str": "LIXA ID badge: Dr. Jason Mitchell", "str_pl": "LIXA ID badges: Dr. Jason Mitchell" }, "description": "An ID badge for the LIXA facility. The photo is of a confidently smiling young man.", "flags": [ "LIXA_SCIENCE_CARD", "LIXA_SCIENCE_CARD_2", "LIXA_SCIENCE_CARD_3", "PRESERVE_SPAWN_OMT", "CREDIT_CARD_SHAPED" ], - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "3 g", "volume": "5 ml", @@ -280,7 +280,7 @@ "name": { "str": "LIXA ID badge: Dr. Kai-Mei Luo", "str_pl": "LIXA ID badges: Dr. Kai-Mei Luo" }, "description": "An ID badge for the LIXA facility. The photo is of an awkwardly smiling woman, who blinked during the picture.", "flags": [ "LIXA_SCIENCE_CARD", "LIXA_SCIENCE_CARD_2", "LIXA_SCIENCE_CARD_3", "PRESERVE_SPAWN_OMT", "CREDIT_CARD_SHAPED" ], - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "3 g", "volume": "5 ml", @@ -295,7 +295,7 @@ "name": { "str": "LIXA ID badge: Dr. Richard Raimes", "str_pl": "LIXA ID badges: Dr. Richard Raimes" }, "description": "An ID badge for the LIXA facility. The photo is of a gently smiling older man, with kind eyes.", "flags": [ "LIXA_SCIENCE_CARD", "LIXA_SCIENCE_CARD_2", "LIXA_SCIENCE_CARD_3", "PRESERVE_SPAWN_OMT", "CREDIT_CARD_SHAPED" ], - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "3 g", "volume": "5 ml", @@ -310,7 +310,7 @@ "name": { "str": "LIXA military police badge" }, "description": "An id card bearing the name, rank, and serial number of a soldier stationed at LIXA.", "flags": [ "LIXA_MILITARY_CARD", "LIXA_SCIENCE_CARD", "PRESERVE_SPAWN_OMT", "CREDIT_CARD_SHAPED" ], - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "3 g", "volume": "5 ml", @@ -324,12 +324,12 @@ "symbol": "%", "name": { "str": "Exodii comm rebooter" }, "description": "A small rectangular device that Rubik gave you. It is meant to be plugged in a locator antenna to reactivate it.", - "price": 0, + "price": "0 cent", "volume": "250 ml", "weight": "500 g", "material": [ "plastic", "steel" ], "flags": [ "TRADER_AVOID" ], - "price_postapoc": 0, + "price_postapoc": "0 cent", "category": "keys" } ] diff --git a/data/json/items/items_holiday.json b/data/json/items/items_holiday.json index a8dc85ccad69b..102d263a60602 100644 --- a/data/json/items/items_holiday.json +++ b/data/json/items/items_holiday.json @@ -6,8 +6,8 @@ "description": "A plastic lantern that is painted to look like a pumpkin with a face. It has a tiny LED light inside, which is currently off. It's mostly for seasonal decoration and doesn't provide very much light.", "weight": "113 g", "volume": "3964 ml", - "price": 100, - "price_postapoc": 0, + "price": "1 USD", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": "0", @@ -32,8 +32,8 @@ "description": "A plastic lantern that is painted to look like a pumpkin with a face. It has a tiny LED light inside which is currently on, to delightfully spooky effect. It doesn't provide very much light, but it can stay lit for a very long time.", "weight": "113 g", "volume": "3964 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": "0", @@ -60,8 +60,8 @@ "weight": "123 g", "color": "light_red", "volume": "3 L", - "price": 250, - "price_postapoc": 50, + "price": "2 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "veggy" ], "symbol": "%", "charges_per_use": 1, @@ -99,8 +99,8 @@ "description": "A decorative wreath that can be deployed as furniture to celebrate the winter holidays.", "weight": "1814 g", "volume": "4 L", - "price": 100, - "price_postapoc": 0, + "price": "1 USD", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "wood" ], "symbol": "0", @@ -115,7 +115,7 @@ "description": "A generic inflatable abstract to use for specific items.", "weight": "3 kg", "volume": "5 L", - "price": 5000, + "price": "50 USD", "material": [ "plastic" ], "symbol": "P", "color": "light_red", diff --git a/data/json/items/magazine/10mm.json b/data/json/items/magazine/10mm.json index 9debece1a1902..ca04aced7620a 100644 --- a/data/json/items/magazine/10mm.json +++ b/data/json/items/magazine/10mm.json @@ -8,8 +8,8 @@ "description": "This speedloader can hold 6 rounds of .40 S&W or 10mm Auto and quickly reload a compatible revolver.", "weight": "28 g", "volume": "25 ml", - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -26,8 +26,8 @@ "weight": "70 g", "volume": "103 ml", "longest_side": "114 mm", - "price": 2400, - "price_postapoc": 100, + "price": "24 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -52,8 +52,8 @@ "weight": "90 g", "volume": "99 ml", "longest_side": "112 mm", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -76,8 +76,8 @@ "description": "An 8-round single stack steel box magazine for use with 1911 pattern guns chambered in 10mm Auto." } ], - "price": 3500, - "price_postapoc": 100, + "price": "35 USD", + "price_postapoc": "1 USD", "material": "steel", "ammo_type": [ "10mm" ], "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "10mm": 8 } } ] @@ -99,8 +99,8 @@ "weight": "159 g", "volume": "231 ml", "longest_side": "227 mm", - "price": 4950, - "price_postapoc": 100, + "price": "49 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -125,8 +125,8 @@ "weight": "60 g", "volume": "58 ml", "longest_side": "141 mm", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": "steel", "symbol": "#", "color": "light_gray", @@ -151,8 +151,8 @@ "weight": "210 g", "volume": "194 ml", "longest_side": "256 mm", - "price": 1800, - "price_postapoc": 100, + "price": "18 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -169,8 +169,8 @@ "weight": "135 g", "volume": "84 ml", "longest_side": "134 mm", - "price": 2600, - "price_postapoc": 100, + "price": "26 USD", + "price_postapoc": "1 USD", "material": "steel", "symbol": "#", "color": "light_gray", @@ -187,8 +187,8 @@ "weight": "80 g", "volume": "81 ml", "longest_side": "124 mm", - "price": 2800, - "price_postapoc": 100, + "price": "28 USD", + "price_postapoc": "1 USD", "material": "steel", "symbol": "#", "color": "light_gray", @@ -205,8 +205,8 @@ "weight": "70 g", "volume": "110 ml", "longest_side": "140 mm", - "price": 10000, - "price_postapoc": 100, + "price": "100 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -223,8 +223,8 @@ "weight": "85 g", "volume": "125 ml", "longest_side": "170 mm", - "price": 10000, - "price_postapoc": 100, + "price": "100 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/12mm.json b/data/json/items/magazine/12mm.json index 30675034aa54a..2529f51456958 100644 --- a/data/json/items/magazine/12mm.json +++ b/data/json/items/magazine/12mm.json @@ -7,8 +7,8 @@ "description": "A magazine for the H&K G80 railgun which can hold up to 20 ferromagnetic projectiles.", "weight": "168 g", "volume": "250 ml", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/20x60mm.json b/data/json/items/magazine/20x60mm.json index fc7095a219f3d..297b23d5a834e 100644 --- a/data/json/items/magazine/20x60mm.json +++ b/data/json/items/magazine/20x60mm.json @@ -7,8 +7,8 @@ "description": "A 10-round box magazine for use with the RM228 PDW and RM121 auxiliary shotgun. Designated as RMSA10.", "weight": "210 g", "volume": "250 ml", - "price": 40000, - "price_postapoc": 250, + "price": "400 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", @@ -25,8 +25,8 @@ "description": "A 20-round box magazine for use with the RM20 caseless shotgun. Designated as RMSB20.", "weight": "280 g", "volume": "500 ml", - "price": 40000, - "price_postapoc": 500, + "price": "400 USD", + "price_postapoc": "5 USD", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", @@ -43,8 +43,8 @@ "description": "A 40-round box magazine for use with the RM20 caseless shotgun. Designated as RMSB40.", "weight": "280 g", "volume": "750 ml", - "price": 60000, - "price_postapoc": 1000, + "price": "600 USD", + "price_postapoc": "10 USD", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", diff --git a/data/json/items/magazine/22.json b/data/json/items/magazine/22.json index 6d20943c1ed1c..9b16a8ee90967 100644 --- a/data/json/items/magazine/22.json +++ b/data/json/items/magazine/22.json @@ -7,8 +7,8 @@ "description": "This speedloader can hold 8 rounds of .22 and quickly reload a compatible revolver.", "weight": "32 g", "volume": "47 ml", - "price": 600, - "price_postapoc": 100, + "price": "6 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -33,8 +33,8 @@ "weight": "1039 g", "volume": "892 ml", "longest_side": "14 cm", - "price": 7300, - "price_postapoc": 250, + "price": "73 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -60,8 +60,8 @@ "weight": "779 g", "volume": "892 ml", "longest_side": "14 cm", - "price": 7300, - "price_postapoc": 250, + "price": "73 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -87,8 +87,8 @@ "weight": "1133 g", "volume": "973 ml", "longest_side": "15 cm", - "price": 7500, - "price_postapoc": 300, + "price": "75 USD", + "price_postapoc": "3 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -114,8 +114,8 @@ "weight": "1258 g", "volume": "1081 ml", "longest_side": "16 cm", - "price": 8000, - "price_postapoc": 400, + "price": "80 USD", + "price_postapoc": "4 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -141,8 +141,8 @@ "weight": "1258 g", "volume": "1081 ml", "longest_side": "17 cm", - "price": 8000, - "price_postapoc": 400, + "price": "80 USD", + "price_postapoc": "4 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -168,8 +168,8 @@ "weight": "10 g", "volume": "14 ml", "longest_side": "49 cm", - "price": 1200, - "price_postapoc": 100, + "price": "12 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -194,8 +194,8 @@ "weight": "60 g", "volume": "72 ml", "longest_side": "9 cm", - "price": 1700, - "price_postapoc": 100, + "price": "17 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -220,8 +220,8 @@ "weight": "245 g", "volume": "159 ml", "longest_side": "185 mm", - "price": 7900, - "price_postapoc": 200, + "price": "79 USD", + "price_postapoc": "2 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -246,8 +246,8 @@ "weight": "57 g", "volume": "34 ml", "longest_side": "4 cm", - "price": 1400, - "price_postapoc": 100, + "price": "14 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -273,8 +273,8 @@ "weight": "60 g", "volume": "72 ml", "longest_side": "9 cm", - "price": 2100, - "price_postapoc": 100, + "price": "21 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -299,8 +299,8 @@ "weight": "55 g", "volume": "27ml", "longest_side": "7 cm", - "price": 2800, - "price_postapoc": 100, + "price": "28 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -325,8 +325,8 @@ "weight": "60 g", "volume": "44 ml", "longest_side": "10 cm", - "price": 3250, - "price_postapoc": 100, + "price": "32 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/223.json b/data/json/items/magazine/223.json index e0e40a3b75dde..ec95eb59ef336 100644 --- a/data/json/items/magazine/223.json +++ b/data/json/items/magazine/223.json @@ -29,8 +29,8 @@ "weight": "84 g", "volume": "134 ml", "longest_side": "91 mm", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -58,8 +58,8 @@ "weight": "104 g", "volume": "156 ml", "longest_side": "106 mm", - "price": 5100, - "price_postapoc": 110, + "price": "51 USD", + "price_postapoc": "1 USD 10 cent", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -125,8 +125,8 @@ "weight": "84 g", "volume": "134 ml", "longest_side": "91 mm", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -144,8 +144,8 @@ "weight": "104 g", "volume": "156 ml", "longest_side": "106 mm", - "price": 4100, - "price_postapoc": 60, + "price": "41 USD", + "price_postapoc": "60 cent", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -163,8 +163,8 @@ "weight": "113 g", "volume": "191 ml", "longest_side": "130 mm", - "price": 4000, - "price_postapoc": 170, + "price": "40 USD", + "price_postapoc": "1 USD 70 cent", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -188,8 +188,8 @@ "weight": "133 g", "volume": "213 ml", "longest_side": "145 mm", - "price": 4100, - "price_postapoc": 180, + "price": "41 USD", + "price_postapoc": "1 USD 80 cent", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -207,8 +207,8 @@ "volume": "283 ml", "longest_side": "192 mm", "//2": "Audit based on Magpul 30rd magazine, dimensions measured and weight from Magpul.", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -233,8 +233,8 @@ "weight": "161 g", "volume": "305 ml", "longest_side": "207 mm", - "price": 8100, - "price_postapoc": 260, + "price": "81 USD", + "price_postapoc": "2 USD 60 cent", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -252,8 +252,8 @@ "weight": "187 g", "volume": "363 ml", "longest_side": "246 mm", - "price": 8500, - "price_postapoc": 360, + "price": "85 USD", + "price_postapoc": "3 USD 60 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -278,8 +278,8 @@ "weight": "207 g", "volume": "385 ml", "longest_side": "261 mm", - "price": 8600, - "price_postapoc": 370, + "price": "86 USD", + "price_postapoc": "3 USD 70 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -297,8 +297,8 @@ "weight": "725 g", "volume": "663 ml", "longest_side": "175 mm", - "price": 9000, - "price_postapoc": 360, + "price": "90 USD", + "price_postapoc": "3 USD 60 cent", "to_hit": -2, "material": [ "aluminum", "steel" ], "symbol": "#", @@ -326,8 +326,8 @@ "weight": "181 g", "volume": "535 ml", "longest_side": "221 mm", - "price": 12000, - "price_postapoc": 750, + "price": "120 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "aluminum" ], "symbol": "#", "color": "light_gray", @@ -352,8 +352,8 @@ "weight": "581 g", "volume": "850 ml", "longest_side": "188 mm", - "price": 9250, - "price_postapoc": 500, + "price": "92 USD 50 cent", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "plastic" ], "symbol": "#", @@ -381,8 +381,8 @@ "weight": "800 g", "volume": "2000 ml", "longest_side": "197 mm", - "price": 9500, - "price_postapoc": 1000, + "price": "95 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "#", @@ -410,8 +410,8 @@ "weight": "272 g", "volume": "795 ml", "longest_side": "310 mm", - "price": 15000, - "price_postapoc": 1250, + "price": "150 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "aluminum" ], "symbol": "#", "color": "light_gray", @@ -436,8 +436,8 @@ "weight": "1000 g", "volume": "2340 ml", "longest_side": "25 cm", - "price": 14000, - "price_postapoc": 1000, + "price": "140 USD", + "price_postapoc": "10 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -462,8 +462,8 @@ "weight": "2223 g", "volume": "4675 ml", "longest_side": "343 mm", - "price": 18000, - "price_postapoc": 1250, + "price": "180 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -559,8 +559,8 @@ "weight": "120 g", "volume": "134 ml", "longest_side": "91 mm", - "price": 1200, - "price_postapoc": 50, + "price": "12 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -573,7 +573,7 @@ "id": "ruger_makeshiftmag", "copy-from": "survivor223mag", "type": "MAGAZINE", - "price_postapoc": 50, + "price_postapoc": "50 cent", "name": { "str": "Mini-14 5-round makeshift magazine" }, "description": "An improvised 5-round straight single-stack box magazine consisting of little more than a bent sheet of steel held together by duct tape and hope, for use with the Ruger Mini-14 rifle.", "ammo_type": [ "223" ], diff --git a/data/json/items/magazine/300.json b/data/json/items/magazine/300.json index 40311319a096b..cc8a1e83f20f1 100644 --- a/data/json/items/magazine/300.json +++ b/data/json/items/magazine/300.json @@ -9,8 +9,8 @@ "weight": "207 g", "volume": "186 ml", "longest_side": "102 mm", - "price": 3500, - "price_postapoc": 100, + "price": "35 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -28,8 +28,8 @@ "weight": "188 g", "volume": "169 ml", "longest_side": "101 mm", - "price": 9099, - "price_postapoc": 100, + "price": "90 USD 99 cent", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/3006.json b/data/json/items/magazine/3006.json index bddc300e74d3b..0b0849cfe2e21 100644 --- a/data/json/items/magazine/3006.json +++ b/data/json/items/magazine/3006.json @@ -9,8 +9,8 @@ "weight": "9 g", "volume": "3 ml", "longest_side": "74 mm", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -28,8 +28,8 @@ "weight": "226 g", "volume": "60 ml", "longest_side": "9 cm", - "price": 5600, - "price_postapoc": 100, + "price": "56 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -47,8 +47,8 @@ "weight": "30 g", "volume": "40 ml", "longest_side": "9 cm", - "price": 600, - "price_postapoc": 50, + "price": "6 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -66,8 +66,8 @@ "weight": "239 g", "volume": "415 ml", "longest_side": "188 mm", - "price": 8500, - "price_postapoc": 250, + "price": "85 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -86,8 +86,8 @@ "weight": "184 g", "volume": "319 ml", "longest_side": "145 mm", - "price": 3600, - "price_postapoc": 100, + "price": "36 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/303.json b/data/json/items/magazine/303.json index 75bff17f00b98..2fae472b7e471 100644 --- a/data/json/items/magazine/303.json +++ b/data/json/items/magazine/303.json @@ -9,8 +9,8 @@ "weight": "160 g", "volume": "138 ml", "longest_side": "85 mm", - "price": 6445, - "price_postapoc": 500, + "price": "64 USD 45 cent", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/308.json b/data/json/items/magazine/308.json index 08eb33ec25244..7fbf19b811a46 100644 --- a/data/json/items/magazine/308.json +++ b/data/json/items/magazine/308.json @@ -28,8 +28,8 @@ "weight": "340 g", "volume": "412 ml", "longest_side": "21 cm", - "price": 2100, - "price_postapoc": 500, + "price": "21 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -55,8 +55,8 @@ "weight": "240 g", "volume": "285 ml", "longest_side": "145 mm", - "price": 1200, - "price_postapoc": 250, + "price": "12 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -74,8 +74,8 @@ "weight": "115 g", "volume": "137 ml", "longest_side": "78 mm", - "price": 1200, - "price_postapoc": 100, + "price": "12 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -94,8 +94,8 @@ "weight": "975 g", "volume": "1124 ml", "longest_side": "175 mm", - "price": 7900, - "price_postapoc": 500, + "price": "79 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -114,8 +114,8 @@ "weight": "268 g", "volume": "295 ml", "longest_side": "14 cm", - "price": 1200, - "price_postapoc": 100, + "price": "12 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -160,8 +160,8 @@ "weight": "97 g", "volume": "131 ml", "longest_side": "79 mm", - "price": 2900, - "price_postapoc": 100, + "price": "29 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -174,7 +174,7 @@ "id": "m14_makeshiftmag", "copy-from": "fal_makeshiftmag", "type": "MAGAZINE", - "price_postapoc": 50, + "price_postapoc": "50 cent", "name": { "str": "M14 5-round makeshift magazine" }, "description": "An improvised 5-round straight single-stack box magazine consisting of little more than a bent sheet of steel held together by duct tape and hope, for use with M14 pattern rifles." }, @@ -188,8 +188,8 @@ "weight": "229 g", "volume": "309 ml", "longest_side": "158 mm", - "price": 1200, - "price_postapoc": 250, + "price": "12 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -207,8 +207,8 @@ "weight": "129 g", "volume": "174 ml", "longest_side": "89 mm", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -226,8 +226,8 @@ "weight": "1390 g", "volume": "2200 ml", "longest_side": "220 mm", - "price": 8900, - "price_postapoc": 750, + "price": "89 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -240,7 +240,7 @@ "id": "scarhmag_30rd", "copy-from": "falbigmag", "type": "MAGAZINE", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "name": { "str": "SCAR-H 30-round modified magazine" }, "description": "A 30-round steel box magazine for the FN SCAR-H rifle. This one actually seems to be a modified FN FAL magazine." }, @@ -254,8 +254,8 @@ "weight": "242 g", "volume": "354 ml", "longest_side": "165 mm", - "price": 5600, - "price_postapoc": 250, + "price": "56 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -267,7 +267,7 @@ "id": "scarh_makeshiftmag", "copy-from": "fal_makeshiftmag", "type": "MAGAZINE", - "price_postapoc": 50, + "price_postapoc": "50 cent", "name": { "str": "SCAR-H 5-round makeshift magazine" }, "description": "An improvised 5-round straight single-stack box magazine consisting of little more than a bent sheet of steel held together by duct tape and hope, for use with the FN SCAR-H rifle." }, @@ -281,8 +281,8 @@ "weight": "220 g", "volume": "343 ml", "longest_side": "162 mm", - "price": 5600, - "price_postapoc": 250, + "price": "56 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -300,8 +300,8 @@ "weight": "112 g", "volume": "206 ml", "longest_side": "97 mm", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -313,7 +313,7 @@ "id": "hk417_makeshiftmag", "copy-from": "fal_makeshiftmag", "type": "MAGAZINE", - "price_postapoc": 50, + "price_postapoc": "50 cent", "name": { "str": "HK417 5-round makeshift magazine" }, "description": "An improvised 5-round straight single-stack box magazine consisting of little more than a bent sheet of steel held together by duct tape and hope, for use with the HK417 rifle." }, @@ -327,8 +327,8 @@ "weight": "108 g", "volume": "221 ml", "longest_side": "104 mm", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -347,8 +347,8 @@ "weight": "162 g", "volume": "350 ml", "longest_side": "165 mm", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -367,8 +367,8 @@ "weight": "184 g", "volume": "417 ml", "longest_side": "197 mm", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -387,8 +387,8 @@ "weight": "771 g", "volume": "1211 ml", "longest_side": "211 mm", - "price": 15400, - "price_postapoc": 750, + "price": "154 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -401,7 +401,7 @@ "id": "ar10_makeshiftmag", "copy-from": "fal_makeshiftmag", "type": "MAGAZINE", - "price_postapoc": 50, + "price_postapoc": "50 cent", "name": { "str": "AR-10 5-round makeshift magazine" }, "description": "An improvised 5-round straight single-stack box magazine consisting of little more than a bent sheet of steel held together by duct tape and hope, for use with the AR-10 rifle." }, @@ -415,8 +415,8 @@ "weight": "125 g", "volume": "247 ml", "longest_side": "130 mm", - "price": 9253, - "price_postapoc": 100, + "price": "92 USD 53 cent", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -442,8 +442,8 @@ "weight": "60 g", "volume": "90 ml", "longest_side": "79 mm", - "price": 1200, - "price_postapoc": 250, + "price": "12 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -468,8 +468,8 @@ "weight": "50 g", "volume": "90 ml", "longest_side": "79 mm", - "price": 50, - "price_postapoc": 50, + "price": "50 cent", + "price_postapoc": "50 cent", "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "308": 3 } } ] } ] diff --git a/data/json/items/magazine/30carbine.json b/data/json/items/magazine/30carbine.json index e00dbfafd3eb1..e5cc97f517f3f 100644 --- a/data/json/items/magazine/30carbine.json +++ b/data/json/items/magazine/30carbine.json @@ -9,8 +9,8 @@ "weight": "127 g", "volume": "141 ml", "longest_side": "165 mm", - "price": 3500, - "price_postapoc": 750, + "price": "35 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -28,8 +28,8 @@ "weight": "78 g", "volume": "86 ml", "longest_side": "101 mm", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/32.json b/data/json/items/magazine/32.json index b2a72c58c0176..7c67d3127ec06 100644 --- a/data/json/items/magazine/32.json +++ b/data/json/items/magazine/32.json @@ -9,8 +9,8 @@ "weight": "43 g", "volume": "22 ml", "longest_side": "88 mm", - "price": 2600, - "price_postapoc": 100, + "price": "26 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -28,8 +28,8 @@ "weight": "51 g", "volume": "26 ml", "longest_side": "105 mm", - "price": 1900, - "price_postapoc": 100, + "price": "19 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -47,8 +47,8 @@ "weight": "35 g", "volume": "20 ml", "longest_side": "81 mm", - "price": 2600, - "price_postapoc": 100, + "price": "26 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/338lapua.json b/data/json/items/magazine/338lapua.json index 613502f9eddae..8b44754cebfa5 100644 --- a/data/json/items/magazine/338lapua.json +++ b/data/json/items/magazine/338lapua.json @@ -9,8 +9,8 @@ "weight": "215 g", "volume": "164 ml", "longest_side": "94 mm", - "price": 10614, - "price_postapoc": 150, + "price": "106 USD 14 cent", + "price_postapoc": "1 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -28,8 +28,8 @@ "weight": "298 g", "volume": "233 ml", "longest_side": "95 mm", - "price": 16856, - "price_postapoc": 150, + "price": "168 USD 56 cent", + "price_postapoc": "1 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -47,8 +47,8 @@ "weight": "195 g", "volume": "245 ml", "longest_side": "10 cm", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/357mag.json b/data/json/items/magazine/357mag.json index 5016fd3a90cf1..b50913be6da4b 100644 --- a/data/json/items/magazine/357mag.json +++ b/data/json/items/magazine/357mag.json @@ -9,8 +9,8 @@ "weight": "45 g", "volume": "80 ml", "longest_side": "128 mm", - "price": 6750, - "price_postapoc": 100, + "price": "67 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/357sig.json b/data/json/items/magazine/357sig.json index 143892415fe4b..1aa89b03633af 100644 --- a/data/json/items/magazine/357sig.json +++ b/data/json/items/magazine/357sig.json @@ -9,8 +9,8 @@ "weight": "95 g", "volume": "77 ml", "longest_side": "12 cm", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -28,8 +28,8 @@ "weight": "95 g", "volume": "77 ml", "longest_side": "12 cm", - "price": 2900, - "price_postapoc": 100, + "price": "29 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/38.json b/data/json/items/magazine/38.json index b71a335b816c5..95b3f64e14f2a 100644 --- a/data/json/items/magazine/38.json +++ b/data/json/items/magazine/38.json @@ -7,8 +7,8 @@ "description": "This speedloader can hold 7 rounds of .357 Magnum or .38 Special and quickly reload a compatible revolver.", "weight": "27 g", "volume": "18 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -25,8 +25,8 @@ "description": "This speedloader can hold 5 rounds of .357 Magnum or .38 Special and quickly reload a compatible revolver.", "weight": "23 g", "volume": "15 ml", - "price": 800, - "price_postapoc": 100, + "price": "8 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -43,8 +43,8 @@ "description": "This speedloader can hold 6 rounds of .357 Magnum or .38 Special and quickly reload a compatible revolver.", "weight": "25 g", "volume": "17 ml", - "price": 900, - "price_postapoc": 100, + "price": "9 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/380.json b/data/json/items/magazine/380.json index 37e4f4880c44d..23d0b186661d8 100644 --- a/data/json/items/magazine/380.json +++ b/data/json/items/magazine/380.json @@ -9,8 +9,8 @@ "weight": "60 g", "volume": "44 ml", "longest_side": "9 cm", - "price": 1900, - "price_postapoc": 100, + "price": "19 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -28,8 +28,8 @@ "weight": "40 g", "volume": "33 ml", "longest_side": "93 mm", - "price": 3500, - "price_postapoc": 100, + "price": "35 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -47,8 +47,8 @@ "weight": "35 g", "volume": "29 ml", "longest_side": "86 mm", - "price": 2200, - "price_postapoc": 100, + "price": "22 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -66,8 +66,8 @@ "weight": "221 g", "volume": "184 ml", "longest_side": "21 cm", - "price": 4500, - "price_postapoc": 100, + "price": "45 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -85,8 +85,8 @@ "weight": "40 g", "volume": "33 ml", "longest_side": "9 cm", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -104,8 +104,8 @@ "weight": "77 g", "volume": "64 ml", "longest_side": "12 cm", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -131,8 +131,8 @@ "weight": "36 g", "volume": "30 ml", "longest_side": "9 cm", - "price": 3400, - "price_postapoc": 100, + "price": "34 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/38super.json b/data/json/items/magazine/38super.json index 38af3664718b7..03a251d2c31a1 100644 --- a/data/json/items/magazine/38super.json +++ b/data/json/items/magazine/38super.json @@ -9,8 +9,8 @@ "weight": "113 g", "volume": "60 ml", "longest_side": "10 cm", - "price": 10000, - "price_postapoc": 100, + "price": "100 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -28,8 +28,8 @@ "weight": "62 g", "volume": "33 ml", "longest_side": "11 cm", - "price": 3400, - "price_postapoc": 100, + "price": "34 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/40.json b/data/json/items/magazine/40.json index b97c5eca58506..9fc841d427008 100644 --- a/data/json/items/magazine/40.json +++ b/data/json/items/magazine/40.json @@ -9,8 +9,8 @@ "weight": "95 g", "volume": "77 ml", "longest_side": "12 cm", - "price": 3200, - "price_postapoc": 100, + "price": "32 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -29,8 +29,8 @@ "weight": "97 g", "volume": "113 ml", "longest_side": "15 cm", - "price": 5900, - "price_postapoc": 250, + "price": "59 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -49,8 +49,8 @@ "weight": "78 g", "volume": "91 ml", "longest_side": "12 cm", - "price": 3200, - "price_postapoc": 100, + "price": "32 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -68,8 +68,8 @@ "weight": "100 g", "volume": "81 ml", "longest_side": "12 cm", - "price": 3200, - "price_postapoc": 100, + "price": "32 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -88,8 +88,8 @@ "weight": "95 g", "volume": "77 ml", "longest_side": "12 cm", - "price": 3900, - "price_postapoc": 100, + "price": "39 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -107,8 +107,8 @@ "weight": "207 g", "volume": "172 ml", "longest_side": "24 cm", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -127,8 +127,8 @@ "weight": "150 g", "volume": "206 ml", "longest_side": "22 cm", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -146,8 +146,8 @@ "weight": "100 g", "volume": "74 ml", "longest_side": "10 cm", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -165,8 +165,8 @@ "weight": "80 g", "volume": "105 ml", "longest_side": "128 mm", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -184,8 +184,8 @@ "weight": "88 g", "volume": "116 ml", "longest_side": "128 mm", - "price": 4400, - "price_postapoc": 100, + "price": "44 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -203,8 +203,8 @@ "weight": "96 g", "volume": "126 ml", "longest_side": "128 mm", - "price": 4800, - "price_postapoc": 100, + "price": "48 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -222,8 +222,8 @@ "weight": "110 g", "volume": "92 ml", "longest_side": "132 mm", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/40mm.json b/data/json/items/magazine/40mm.json index 08aa6a53b8802..8ce959fb13ca3 100644 --- a/data/json/items/magazine/40mm.json +++ b/data/json/items/magazine/40mm.json @@ -8,8 +8,8 @@ "description": "An ammo belt consisting of metal linkages which disintegrate upon firing. This one holds 40x53mm grenades and is too bulky to be worn like other ammo belts.", "volume": "200 ml", "weight": "200 g", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/410shot.json b/data/json/items/magazine/410shot.json index 3ceb7644ba066..78eb1a46892da 100644 --- a/data/json/items/magazine/410shot.json +++ b/data/json/items/magazine/410shot.json @@ -8,8 +8,8 @@ "description": "A removable plastic box magazine for the Saiga-410 shotgun. Holds 10 shells.", "weight": "178 g", "volume": "407 ml", - "price": 4500, - "price_postapoc": 100, + "price": "45 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "dark_gray", @@ -26,8 +26,8 @@ "description": "A removable plastic drum magazine for the Saiga-410 shotgun. Holds 30 shells.", "weight": "340 g", "volume": "777 ml", - "price": 11000, - "price_postapoc": 500, + "price": "110 USD", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "#", "color": "dark_gray", diff --git a/data/json/items/magazine/44.json b/data/json/items/magazine/44.json index cb6c741f162b7..6ffab8c78f2c6 100644 --- a/data/json/items/magazine/44.json +++ b/data/json/items/magazine/44.json @@ -8,8 +8,8 @@ "description": "This speedloader can hold 6 rounds of .44 and quickly reload a compatible revolver.", "weight": "28 g", "volume": "25 ml", - "price": 1600, - "price_postapoc": 100, + "price": "16 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -27,8 +27,8 @@ "weight": "45 g", "volume": "80 ml", "longest_side": "128 mm", - "price": 6750, - "price_postapoc": 100, + "price": "67 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/45.json b/data/json/items/magazine/45.json index 6fcd3602b05b5..a4db584a53f3e 100644 --- a/data/json/items/magazine/45.json +++ b/data/json/items/magazine/45.json @@ -9,8 +9,8 @@ "weight": "221 g", "volume": "184 ml", "longest_side": "21 cm", - "price": 1800, - "price_postapoc": 100, + "price": "18 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -27,8 +27,8 @@ "description": "An improvised 20-round straight single-stack box magazine consisting of little more than a bent sheet of steel held together by duct tape and hope, for use with the MAC-10 SMG.", "weight": "269 g", "volume": "224 ml", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -55,8 +55,8 @@ "weight": "124 g", "volume": "211 ml", "longest_side": "23 cm", - "price": 1800, - "price_postapoc": 100, + "price": "18 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -74,8 +74,8 @@ "weight": "226 g", "volume": "209 ml", "longest_side": "21 cm", - "price": 4000, - "price_postapoc": 200, + "price": "40 USD", + "price_postapoc": "2 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -94,8 +94,8 @@ "weight": "1110 g", "volume": "1385 ml", "longest_side": "21 cm", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -114,8 +114,8 @@ "weight": "182 g", "volume": "152 ml", "longest_side": "154 mm", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -133,8 +133,8 @@ "weight": "322 g", "volume": "268 ml", "longest_side": "268 mm", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -152,8 +152,8 @@ "weight": "150 g", "volume": "206 ml", "longest_side": "22 cm", - "price": 4950, - "price_postapoc": 100, + "price": "49 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -171,8 +171,8 @@ "weight": "302 g", "volume": "252 ml", "longest_side": "268 mm", - "price": 4950, - "price_postapoc": 50, + "price": "49 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -217,8 +217,8 @@ "weight": "123 g", "volume": "169 ml", "longest_side": "18 cm", - "price": 3399, - "price_postapoc": 100, + "price": "33 USD 99 cent", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -235,8 +235,8 @@ "weight": "217 g", "volume": "240 ml", "longest_side": "18 cm", - "price": 3699, - "price_postapoc": 150, + "price": "36 USD 99 cent", + "price_postapoc": "1 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -253,8 +253,8 @@ "weight": "290 g", "volume": "320 ml", "longest_side": "18 cm", - "price": 3999, - "price_postapoc": 200, + "price": "39 USD 99 cent", + "price_postapoc": "2 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -280,8 +280,8 @@ "weight": "80 g", "volume": "105 ml", "longest_side": "128 mm", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -299,8 +299,8 @@ "weight": "110 g", "volume": "92 ml", "longest_side": "132 mm", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -326,8 +326,8 @@ "weight": "85 g", "volume": "114 ml", "longest_side": "125 mm", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -353,8 +353,8 @@ "weight": "159 g", "volume": "205 ml", "longest_side": "225 mm", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -379,8 +379,8 @@ "weight": "340 g", "volume": "227 ml", "longest_side": "235 mm", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/450bushmaster.json b/data/json/items/magazine/450bushmaster.json index 7f32ea074fbf6..4a008b1c0379e 100644 --- a/data/json/items/magazine/450bushmaster.json +++ b/data/json/items/magazine/450bushmaster.json @@ -7,8 +7,8 @@ "weight": "226 g", "volume": "290 ml", "longest_side": "190 mm", - "price": 2999, - "price_postapoc": 250, + "price": "29 USD 99 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "aluminum" ], "symbol": "#", "color": "light_gray", @@ -24,8 +24,8 @@ "weight": "78 g", "volume": "220 ml", "longest_side": "100 mm", - "price": 2999, - "price_postapoc": 150, + "price": "29 USD 99 cent", + "price_postapoc": "1 USD 50 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/454.json b/data/json/items/magazine/454.json index 206c3bcb70fa3..bdcb876fb7a3f 100644 --- a/data/json/items/magazine/454.json +++ b/data/json/items/magazine/454.json @@ -8,8 +8,8 @@ "description": "This speedloader can hold 5 rounds of .454, .45 Colt or .410 bore and quickly reload a compatible revolver.", "weight": "28 g", "volume": "25 ml", - "price": 2200, - "price_postapoc": 100, + "price": "22 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/46.json b/data/json/items/magazine/46.json index 1c59e0eb03953..1ff4115b1c67f 100644 --- a/data/json/items/magazine/46.json +++ b/data/json/items/magazine/46.json @@ -9,8 +9,8 @@ "weight": "200 g", "volume": "144 ml", "longest_side": "20 cm", - "price": 6300, - "price_postapoc": 500, + "price": "63 USD", + "price_postapoc": "5 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -28,8 +28,8 @@ "weight": "100 g", "volume": "76 ml", "longest_side": "105 mm", - "price": 4700, - "price_postapoc": 100, + "price": "47 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/460.json b/data/json/items/magazine/460.json index 24155a9a3380f..966db0a04a679 100644 --- a/data/json/items/magazine/460.json +++ b/data/json/items/magazine/460.json @@ -8,8 +8,8 @@ "weight": "79 g", "volume": "74 ml", "longest_side": "155 mm", - "price": 3720, - "price_postapoc": 250, + "price": "37 USD 20 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -26,8 +26,8 @@ "weight": "70 g", "volume": "61 ml", "longest_side": "132 mm", - "price": 2980, - "price_postapoc": 100, + "price": "29 USD 80 cent", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/50.json b/data/json/items/magazine/50.json index 1d3521df9b4f1..363aa42c27952 100644 --- a/data/json/items/magazine/50.json +++ b/data/json/items/magazine/50.json @@ -21,8 +21,8 @@ "weight": "727 g", "volume": "858 ml", "longest_side": "15 cm", - "price": 10000, - "price_postapoc": 250, + "price": "100 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -41,8 +41,8 @@ "weight": "386 g", "volume": "455 ml", "longest_side": "133 mm", - "price": 12000, - "price_postapoc": 250, + "price": "120 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "dark_gray", @@ -61,8 +61,8 @@ "weight": "386 g", "volume": "455 ml", "longest_side": "133 mm", - "price": 15000, - "price_postapoc": 250, + "price": "150 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "dark_gray", diff --git a/data/json/items/magazine/500.json b/data/json/items/magazine/500.json index e4fbcadde1b77..43a71cff4f1f2 100644 --- a/data/json/items/magazine/500.json +++ b/data/json/items/magazine/500.json @@ -8,8 +8,8 @@ "description": "This speedloader can hold 5 rounds of .500 and quickly reload a compatible revolver.", "weight": "28 g", "volume": "25 ml", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/50ae.json b/data/json/items/magazine/50ae.json index 0e8a9b3a4d67f..92b1745894dd7 100644 --- a/data/json/items/magazine/50ae.json +++ b/data/json/items/magazine/50ae.json @@ -9,8 +9,8 @@ "weight": "45 g", "volume": "80 ml", "longest_side": "128 mm", - "price": 6750, - "price_postapoc": 100, + "price": "67 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/50beowulf.json b/data/json/items/magazine/50beowulf.json index f4360279107f4..d7c0113685a70 100644 --- a/data/json/items/magazine/50beowulf.json +++ b/data/json/items/magazine/50beowulf.json @@ -63,8 +63,8 @@ "weight": "226 g", "volume": "290 ml", "longest_side": "190 mm", - "price": 2999, - "price_postapoc": 250, + "price": "29 USD 99 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "aluminum" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/545x39.json b/data/json/items/magazine/545x39.json index d42ac4685031b..9b3035af1ec66 100644 --- a/data/json/items/magazine/545x39.json +++ b/data/json/items/magazine/545x39.json @@ -17,8 +17,8 @@ "weight": "170 g", "volume": "388 ml", "longest_side": "210 mm", - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -44,8 +44,8 @@ "weight": "230 g", "volume": "528 ml", "longest_side": "285 mm", - "price": 8500, - "price_postapoc": 250, + "price": "85 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -72,8 +72,8 @@ "weight": "264 g", "volume": "924 ml", "longest_side": "250 mm", - "price": 8500, - "price_postapoc": 250, + "price": "85 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/57.json b/data/json/items/magazine/57.json index 321bf060e05ec..35ea085f1e8fc 100644 --- a/data/json/items/magazine/57.json +++ b/data/json/items/magazine/57.json @@ -45,8 +45,8 @@ "weight": "143 g", "volume": "210 ml", "longest_side": "266 mm", - "price": 5400, - "price_postapoc": 100, + "price": "54 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -64,8 +64,8 @@ "weight": "30 g", "volume": "84 ml", "longest_side": "123 mm", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -83,8 +83,8 @@ "weight": "24 g", "volume": "84 ml", "longest_side": "123 mm", - "price": 3700, - "price_postapoc": 100, + "price": "37 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/66mm.json b/data/json/items/magazine/66mm.json index fa259390581b3..1b873b749c3ed 100644 --- a/data/json/items/magazine/66mm.json +++ b/data/json/items/magazine/66mm.json @@ -9,8 +9,8 @@ "weight": "500 g", "volume": "2097 ml", "longest_side": "20 cm", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/762.json b/data/json/items/magazine/762.json index 6e79761670d46..f87293e58ab94 100644 --- a/data/json/items/magazine/762.json +++ b/data/json/items/magazine/762.json @@ -9,8 +9,8 @@ "weight": "11 g", "volume": "4 ml", "longest_side": "90 mm", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -28,8 +28,8 @@ "weight": "113 g", "volume": "196 ml", "longest_side": "122 mm", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -47,8 +47,8 @@ "weight": "152 g", "volume": "287 ml", "longest_side": "178 mm", - "price": 3000, - "price_postapoc": 150, + "price": "30 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -66,8 +66,8 @@ "weight": "326 g", "volume": "379 ml", "longest_side": "235 mm", - "price": 2800, - "price_postapoc": 250, + "price": "28 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -85,8 +85,8 @@ "weight": "424 g", "volume": "493 ml", "longest_side": "294 mm", - "price": 4500, - "price_postapoc": 500, + "price": "45 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -104,8 +104,8 @@ "weight": "1020 g", "volume": "1142 ml", "longest_side": "197 mm", - "price": 12000, - "price_postapoc": 750, + "price": "120 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -123,8 +123,8 @@ "weight": "188 g", "volume": "370 ml", "longest_side": "235 mm", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": [ "aluminum" ], "symbol": "#", "color": "light_gray", @@ -142,8 +142,8 @@ "weight": "188 g", "volume": "370 ml", "longest_side": "235 mm", - "price": 3299, - "price_postapoc": 250, + "price": "32 USD 99 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "aluminum" ], "symbol": "#", "color": "light_gray", @@ -161,8 +161,8 @@ "weight": "172 g", "volume": "297 ml", "longest_side": "200 mm", - "price": 3199, - "price_postapoc": 250, + "price": "31 USD 99 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -180,8 +180,8 @@ "weight": "69 g", "volume": "119 ml", "longest_side": "80 mm", - "price": 2250, - "price_postapoc": 100, + "price": "22 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -199,8 +199,8 @@ "weight": "210 g", "volume": "228 ml", "longest_side": "101 mm", - "price": 3000, - "price_postapoc": 40, + "price": "30 USD", + "price_postapoc": "40 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -217,8 +217,8 @@ "description": "Engineered to allow the tapered 7.62x39mm cartridge to reliably cycle into the chamber of an appropriately converted firearm, this compact 10-round steel box magazine is compatible with AR-15-style rifles.", "weight": "130 g", "volume": "151 ml", - "price": 3000, - "price_postapoc": 60, + "price": "30 USD", + "price_postapoc": "60 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -235,8 +235,8 @@ "description": "Engineered to allow the tapered 7.62x39mm cartridge to reliably cycle into the chamber of an appropriately converted firearm, this 20-round steel box magazine is compatible with AR-15-style rifles.", "weight": "283 g", "volume": "265 ml", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -253,8 +253,8 @@ "description": " Engineered to allow the tapered 7.62x39mm cartridge to reliably cycle into the chamber of an appropriately converted firearm and possessing a dramatic curve that looks laughably goofy, this 30-round steel box magazine is compatible with AR-15-style rifles.", "weight": "326 g", "volume": "379 ml", - "price": 3000, - "price_postapoc": 120, + "price": "30 USD", + "price_postapoc": "1 USD 20 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/762R.json b/data/json/items/magazine/762R.json index 3fcc4da6c5021..5ec0c099cd001 100644 --- a/data/json/items/magazine/762R.json +++ b/data/json/items/magazine/762R.json @@ -9,8 +9,8 @@ "weight": "9 g", "volume": "3 ml", "longest_side": "74 mm", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -28,8 +28,8 @@ "weight": "122 g", "volume": "131 ml", "longest_side": "64 mm", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -47,8 +47,8 @@ "weight": "204 g", "volume": "218 ml", "longest_side": "107 mm", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/762x25.json b/data/json/items/magazine/762x25.json index 03080382bc5d7..b71ae44eaa91e 100644 --- a/data/json/items/magazine/762x25.json +++ b/data/json/items/magazine/762x25.json @@ -9,8 +9,8 @@ "weight": "1760 g", "volume": "911 ml", "longest_side": "14 cm", - "price": 7000, - "price_postapoc": 500, + "price": "70 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -29,8 +29,8 @@ "weight": "312 g", "volume": "184 ml", "longest_side": "230 mm", - "price": 2200, - "price_postapoc": 250, + "price": "22 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -56,8 +56,8 @@ "weight": "56 g", "volume": "55 ml", "longest_side": "106 mm", - "price": 1300, - "price_postapoc": 100, + "price": "13 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/77mm_jap.json b/data/json/items/magazine/77mm_jap.json index af098309eaccf..66bf6c7398064 100644 --- a/data/json/items/magazine/77mm_jap.json +++ b/data/json/items/magazine/77mm_jap.json @@ -9,8 +9,8 @@ "weight": "9 g", "volume": "3 ml", "longest_side": "65 mm", - "price": 399, - "price_postapoc": 50, + "price": "3 USD 99 cent", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/8x40mm.json b/data/json/items/magazine/8x40mm.json index f8bfd76fd72a5..d34b932f42455 100644 --- a/data/json/items/magazine/8x40mm.json +++ b/data/json/items/magazine/8x40mm.json @@ -7,8 +7,8 @@ "description": "A 100-round box magazine for use with Rivtech 8x40mm caseless firearms. Designated as RMGB100.", "weight": "150 g", "volume": "750 ml", - "price": 40000, - "price_postapoc": 750, + "price": "400 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", @@ -25,8 +25,8 @@ "description": "A 10-round stick magazine for use with Rivtech 8x40mm caseless firearms. Designated as RMGP10.", "weight": "60 g", "volume": "250 ml", - "price": 9000, - "price_postapoc": 250, + "price": "90 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", @@ -43,8 +43,8 @@ "description": "A 250-round drum magazine for use with Rivtech 8x40mm caseless firearms. Designated as RMGD250.", "weight": "340 g", "volume": "2 L", - "price": 70000, - "price_postapoc": 1000, + "price": "700 USD", + "price_postapoc": "10 USD", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", @@ -60,8 +60,8 @@ "description": "A 25-round stick magazine for use with Rivtech 8x40mm caseless firearms. Designated as RMGP25.", "weight": "90 g", "volume": "500 ml", - "price": 12500, - "price_postapoc": 500, + "price": "125 USD", + "price_postapoc": "5 USD", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", @@ -78,8 +78,8 @@ "description": "A 500-round drum magazine for use with Rivtech 8x40mm caseless firearms. Designated as RMGD500.", "weight": "1400 g", "volume": "4 L", - "price": 100000, - "price_postapoc": 1000, + "price": "1 kUSD", + "price_postapoc": "10 USD", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", @@ -94,8 +94,8 @@ "description": "A 50-round box magazine for use with Rivtech 8x40mm caseless firearms. Designated as RMGB50.", "weight": "110 g", "volume": "500 ml", - "price": 25000, - "price_postapoc": 500, + "price": "250 USD", + "price_postapoc": "5 USD", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", diff --git a/data/json/items/magazine/9mm.json b/data/json/items/magazine/9mm.json index 68a197a593950..a41f887e607cc 100644 --- a/data/json/items/magazine/9mm.json +++ b/data/json/items/magazine/9mm.json @@ -28,8 +28,8 @@ "weight": "431 g", "volume": "1034 ml", "longest_side": "356 mm", - "price": 12000, - "price_postapoc": 700, + "price": "120 USD", + "price_postapoc": "7 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -47,8 +47,8 @@ "weight": "124 g", "volume": "145 ml", "longest_side": "211 mm", - "price": 4700, - "price_postapoc": 500, + "price": "47 USD", + "price_postapoc": "5 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -66,8 +66,8 @@ "weight": "70 g", "volume": "76 ml", "longest_side": "111 mm", - "price": 2900, - "price_postapoc": 100, + "price": "29 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -84,8 +84,8 @@ "weight": "80 g", "volume": "83 ml", "longest_side": "121 mm", - "price": 2900, - "price_postapoc": 100, + "price": "29 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -103,8 +103,8 @@ "weight": "108 g", "volume": "96 ml", "longest_side": "140 mm", - "price": 3500, - "price_postapoc": 200, + "price": "35 USD", + "price_postapoc": "2 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -121,8 +121,8 @@ "weight": "491 g", "volume": "1159 ml", "longest_side": "221 mm", - "price": 2000, - "price_postapoc": 750, + "price": "20 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -139,8 +139,8 @@ "weight": "1000 g", "volume": "1274 ml", "longest_side": "289 mm", - "price": 3100, - "price_postapoc": 750, + "price": "31 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -157,8 +157,8 @@ "weight": "167 g", "volume": "134 ml", "longest_side": "216 mm", - "price": 3800, - "price_postapoc": 540, + "price": "38 USD", + "price_postapoc": "5 USD 40 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -176,8 +176,8 @@ "weight": "142 g", "volume": "146 ml", "longest_side": "235 mm", - "price": 3600, - "price_postapoc": 520, + "price": "36 USD", + "price_postapoc": "5 USD 20 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -195,8 +195,8 @@ "weight": "136 g", "volume": "130 ml", "longest_side": "203 mm", - "price": 3500, - "price_postapoc": 500, + "price": "35 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -214,8 +214,8 @@ "weight": "122 g", "volume": "84 ml", "longest_side": "134 mm", - "price": 2800, - "price_postapoc": 130, + "price": "28 USD", + "price_postapoc": "1 USD 30 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -232,8 +232,8 @@ "weight": "90 g", "volume": "76 ml", "longest_side": "134 mm", - "price": 2550, - "price_postapoc": 115, + "price": "25 USD 50 cent", + "price_postapoc": "1 USD 15 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -250,8 +250,8 @@ "weight": "90 g", "volume": "78 ml", "longest_side": "122 mm", - "price": 2500, - "price_postapoc": 110, + "price": "25 USD", + "price_postapoc": "1 USD 10 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -287,8 +287,8 @@ "weight": "45 g", "volume": "78 ml", "longest_side": "127 mm", - "price": 2300, - "price_postapoc": 80, + "price": "23 USD", + "price_postapoc": "80 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -305,8 +305,8 @@ "weight": "1 kg", "volume": "1274 ml", "longest_side": "289 mm", - "price": 7000, - "price_postapoc": 700, + "price": "70 USD", + "price_postapoc": "7 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -324,8 +324,8 @@ "weight": "454 g", "volume": "896 ml", "longest_side": "178 mm", - "price": 6920, - "price_postapoc": 500, + "price": "69 USD 20 cent", + "price_postapoc": "5 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -343,8 +343,8 @@ "weight": "139 g", "volume": "239 ml", "longest_side": "300 mm", - "price": 4550, - "price_postapoc": 360, + "price": "45 USD 50 cent", + "price_postapoc": "3 USD 60 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -361,8 +361,8 @@ "weight": "195 g", "volume": "216 ml", "longest_side": "284 mm", - "price": 4500, - "price_postapoc": 350, + "price": "45 USD", + "price_postapoc": "3 USD 50 cent", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -379,8 +379,8 @@ "weight": "160 g", "volume": "152 ml", "longest_side": "200 mm", - "price": 4100, - "price_postapoc": 250, + "price": "41 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -397,8 +397,8 @@ "weight": "136 g", "volume": "113 ml", "longest_side": "149 mm", - "price": 3500, - "price_postapoc": 200, + "price": "35 USD", + "price_postapoc": "2 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -415,8 +415,8 @@ "weight": "120 g", "volume": "85 ml", "longest_side": "112 mm", - "price": 3000, - "price_postapoc": 150, + "price": "30 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -433,8 +433,8 @@ "weight": "80 g", "volume": "57 ml", "longest_side": "75 mm", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -451,8 +451,8 @@ "weight": "181 g", "volume": "239 ml", "longest_side": "216 mm", - "price": 4950, - "price_postapoc": 100, + "price": "49 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -469,8 +469,8 @@ "weight": "57 g", "volume": "27 ml", "longest_side": "107 mm", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": "steel", "symbol": "#", "color": "light_gray", @@ -488,8 +488,8 @@ "weight": "643 g", "volume": "197 ml", "longest_side": "23 cm", - "price": 9000, - "price_postapoc": 200, + "price": "90 USD", + "price_postapoc": "2 USD", "material": "steel", "symbol": "#", "color": "light_gray", @@ -517,8 +517,8 @@ "weight": "64 g", "volume": "86 ml", "longest_side": "15 cm", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -535,8 +535,8 @@ "weight": "82 g", "volume": "168 ml", "longest_side": "22 cm", - "price": 5000, - "price_postapoc": 150, + "price": "50 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -553,8 +553,8 @@ "weight": "295 g", "volume": "209 ml", "longest_side": "24 cm", - "price": 5700, - "price_postapoc": 100, + "price": "57 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -571,8 +571,8 @@ "weight": "45 g", "volume": "78 ml", "longest_side": "127 mm", - "price": 3000, - "price_postapoc": 80, + "price": "30 USD", + "price_postapoc": "80 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -589,8 +589,8 @@ "weight": "90 g", "volume": "78 ml", "longest_side": "127 mm", - "price": 3500, - "price_postapoc": 90, + "price": "35 USD", + "price_postapoc": "90 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -607,8 +607,8 @@ "weight": "90 g", "volume": "78 ml", "longest_side": "127 mm", - "price": 3600, - "price_postapoc": 100, + "price": "36 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -625,8 +625,8 @@ "weight": "122 g", "volume": "84 ml", "longest_side": "134 mm", - "price": 2800, - "price_postapoc": 130, + "price": "28 USD", + "price_postapoc": "1 USD 30 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -643,8 +643,8 @@ "weight": "295 g", "volume": "209 ml", "longest_side": "240 mm", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -661,8 +661,8 @@ "weight": "184 g", "volume": "131 ml", "longest_side": "210 mm", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -680,8 +680,8 @@ "weight": "69 g", "volume": "60 ml", "longest_side": "83 mm", - "price": 2800, - "price_postapoc": 80, + "price": "28 USD", + "price_postapoc": "80 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -698,8 +698,8 @@ "weight": "106 g", "volume": "92 ml", "longest_side": "128 mm", - "price": 3300, - "price_postapoc": 100, + "price": "33 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -716,8 +716,8 @@ "description": "A 30-round steel box magazine for use with the TEC-9 SMG, made as a more reliable alternative to 32-round magazines.", "weight": "210 g", "volume": "480 ml", - "price": 3600, - "price_postapoc": 100, + "price": "36 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -734,8 +734,8 @@ "weight": "191 g", "volume": "151 ml", "longest_side": "210 mm", - "price": 3100, - "price_postapoc": 100, + "price": "31 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -752,8 +752,8 @@ "description": "An extended 36-round steel box magazine for use with the TEC-9 SMG.", "weight": "250 g", "volume": "540 ml", - "price": 3300, - "price_postapoc": 130, + "price": "33 USD", + "price_postapoc": "1 USD 30 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -770,8 +770,8 @@ "description": "An extended 50-round steel box magazine for use with the TEC-9 SMG.", "weight": "320 g", "volume": "650 ml", - "price": 3700, - "price_postapoc": 160, + "price": "37 USD", + "price_postapoc": "1 USD 60 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -788,8 +788,8 @@ "description": "A bulky 72-round steel drum magazine for use with the TEC-9 SMG.", "weight": "450 g", "volume": "700 ml", - "price": 4300, - "price_postapoc": 250, + "price": "43 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -807,8 +807,8 @@ "weight": "99 g", "volume": "102 ml", "longest_side": "130 mm", - "price": 3850, - "price_postapoc": 80, + "price": "38 USD 50 cent", + "price_postapoc": "80 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -825,8 +825,8 @@ "weight": "99 g", "volume": "102 ml", "longest_side": "130 mm", - "price": 3850, - "price_postapoc": 100, + "price": "38 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -843,8 +843,8 @@ "weight": "113 g", "volume": "117 ml", "longest_side": "149 mm", - "price": 4000, - "price_postapoc": 120, + "price": "40 USD", + "price_postapoc": "1 USD 20 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -861,8 +861,8 @@ "description": "An extended 20-round box magazine for use with the H&K USP 9x19mm pistol.", "weight": "98 g", "volume": "280 ml", - "price": 4200, - "price_postapoc": 130, + "price": "42 USD", + "price_postapoc": "1 USD 30 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -879,8 +879,8 @@ "weight": "145 g", "volume": "184 ml", "longest_side": "235 mm", - "price": 4800, - "price_postapoc": 180, + "price": "48 USD", + "price_postapoc": "1 USD 80 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -897,8 +897,8 @@ "weight": "110 g", "volume": "82 ml", "longest_side": "120 mm", - "price": 2600, - "price_postapoc": 120, + "price": "26 USD", + "price_postapoc": "1 USD 20 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -915,8 +915,8 @@ "weight": "136 g", "volume": "102 ml", "longest_side": "151 mm", - "price": 2800, - "price_postapoc": 130, + "price": "28 USD", + "price_postapoc": "1 USD 30 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -933,8 +933,8 @@ "weight": "174 g", "volume": "131 ml", "longest_side": "193 mm", - "price": 4100, - "price_postapoc": 100, + "price": "41 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -951,8 +951,8 @@ "weight": "218 g", "volume": "164 ml", "longest_side": "241 mm", - "price": 4550, - "price_postapoc": 360, + "price": "45 USD 50 cent", + "price_postapoc": "3 USD 60 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -969,8 +969,8 @@ "weight": "273 g", "volume": "205 ml", "longest_side": "302 mm", - "price": 5000, - "price_postapoc": 400, + "price": "50 USD", + "price_postapoc": "4 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -987,8 +987,8 @@ "weight": "1 kg", "volume": "1274 ml", "longest_side": "289 mm", - "price": 7000, - "price_postapoc": 700, + "price": "70 USD", + "price_postapoc": "7 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -1006,8 +1006,8 @@ "weight": "59 g", "volume": "32 ml", "longest_side": "95 mm", - "price": 1900, - "price_postapoc": 100, + "price": "19 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -1024,8 +1024,8 @@ "weight": "70 g", "volume": "38 ml", "longest_side": "105 mm", - "price": 2000, - "price_postapoc": 110, + "price": "20 USD", + "price_postapoc": "1 USD 10 cent", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -1041,8 +1041,8 @@ "weight": "82 g", "volume": "122 ml", "longest_side": "130 mm", - "price": 4999, - "price_postapoc": 100, + "price": "49 USD 99 cent", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -1059,8 +1059,8 @@ "weight": "82 g", "volume": "122 ml", "longest_side": "130 mm", - "price": 4999, - "price_postapoc": 100, + "price": "49 USD 99 cent", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -1076,8 +1076,8 @@ "description": "A 13-round double stack box magazine for the SIG Sauer P228 (also known as the M11) or P229.", "weight": "91 g", "volume": "128 ml", - "price": 4999, - "price_postapoc": 100, + "price": "49 USD 99 cent", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": "#", "color": "light_gray", @@ -1181,8 +1181,8 @@ "weight": "142 g", "volume": "73 ml", "longest_side": "115 mm", - "price": 2900, - "price_postapoc": 100, + "price": "29 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1200,8 +1200,8 @@ "description": "A 12-round box magazine for the SIG Sauer SP2022, 2340, and 2009.", "weight": "90 g", "volume": "250 ml", - "price": 2900, - "price_postapoc": 100, + "price": "29 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1219,8 +1219,8 @@ "weight": "142 g", "volume": "73 ml", "longest_side": "115 mm", - "price": 2900, - "price_postapoc": 100, + "price": "29 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1238,8 +1238,8 @@ "weight": "136 g", "volume": "67 ml", "longest_side": "109 mm", - "price": 2400, - "price_postapoc": 100, + "price": "24 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1256,8 +1256,8 @@ "weight": "122 g", "volume": "67 ml", "longest_side": "109 mm", - "price": 2700, - "price_postapoc": 100, + "price": "27 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1274,8 +1274,8 @@ "weight": "66 g", "volume": "44 ml", "longest_side": "121 mm", - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1292,8 +1292,8 @@ "weight": "82 g", "volume": "133 ml", "longest_side": "115 mm", - "price": 2200, - "price_postapoc": 100, + "price": "22 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1310,8 +1310,8 @@ "weight": "82 g", "volume": "133 ml", "longest_side": "115 mm", - "price": 2800, - "price_postapoc": 100, + "price": "28 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1328,8 +1328,8 @@ "weight": "100 g", "volume": "152 ml", "longest_side": "130 mm", - "price": 3200, - "price_postapoc": 100, + "price": "32 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1346,8 +1346,8 @@ "weight": "78 g", "volume": "67 ml", "longest_side": "115 mm", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1364,8 +1364,8 @@ "weight": "86 g", "volume": "74 ml", "longest_side": "125 mm", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1382,8 +1382,8 @@ "weight": "97 g", "volume": "87 ml", "longest_side": "220 mm", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1400,8 +1400,8 @@ "weight": "93 g", "volume": "53 ml", "longest_side": "110 mm", - "price": 7500, - "price_postapoc": 100, + "price": "75 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1418,8 +1418,8 @@ "weight": "120 g", "volume": "79 ml", "longest_side": "165 mm", - "price": 7500, - "price_postapoc": 100, + "price": "75 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1436,8 +1436,8 @@ "weight": "151 g", "volume": "85 ml", "longest_side": "180 mm", - "price": 7500, - "price_postapoc": 250, + "price": "75 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1454,8 +1454,8 @@ "weight": "78 g", "volume": "67 ml", "longest_side": "115 mm", - "price": 7500, - "price_postapoc": 100, + "price": "75 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1472,8 +1472,8 @@ "weight": "87 g", "volume": "72 ml", "longest_side": "125 mm", - "price": 7800, - "price_postapoc": 110, + "price": "78 USD", + "price_postapoc": "1 USD 10 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -1490,8 +1490,8 @@ "weight": "55 g", "volume": "170 ml", "longest_side": "152 mm", - "price": 4100, - "price_postapoc": 180, + "price": "41 USD", + "price_postapoc": "1 USD 80 cent", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -1508,8 +1508,8 @@ "weight": "55 g", "volume": "170 ml", "longest_side": "152 mm", - "price": 4550, - "price_postapoc": 200, + "price": "45 USD 50 cent", + "price_postapoc": "2 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -1535,7 +1535,7 @@ "weight": "69 g", "volume": "198 ml", "longest_side": "178 mm", - "price": 4170, + "price": "41 USD 70 cent", "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "9mm": 25 } } ] }, { @@ -1547,7 +1547,7 @@ "weight": "82 g", "volume": "226 ml", "longest_side": "203 mm", - "price": 4170, + "price": "41 USD 70 cent", "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "9mm": 30 } } ] }, { @@ -1557,8 +1557,8 @@ "type": "MAGAZINE", "name": { "str": "APC9 50-round drum magazine" }, "description": "A bulky 50-round aluminum drum magazine for use with the Brügger & Thomet MP9 and compatible guns.", - "price": 6920, - "price_postapoc": 500, + "price": "69 USD 20 cent", + "price_postapoc": "5 USD", "material": [ "steel", "aluminum" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/9x18.json b/data/json/items/magazine/9x18.json index a78ff72000192..ac76eb56c21c9 100644 --- a/data/json/items/magazine/9x18.json +++ b/data/json/items/magazine/9x18.json @@ -17,8 +17,8 @@ "weight": "32 g", "volume": "34 ml", "longest_side": "10 cm", - "price": 2300, - "price_postapoc": 100, + "price": "23 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/chemical_spray.json b/data/json/items/magazine/chemical_spray.json index 6daedd3c8172e..1bc43d0d335a3 100644 --- a/data/json/items/magazine/chemical_spray.json +++ b/data/json/items/magazine/chemical_spray.json @@ -7,8 +7,8 @@ "description": "A makeshift pressurized 2 L canister designed to feed a makeshift chemical thrower.", "weight": "800 g", "volume": "2 L", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/exodii.json b/data/json/items/magazine/exodii.json index 492e48672d059..bec1763fb489e 100644 --- a/data/json/items/magazine/exodii.json +++ b/data/json/items/magazine/exodii.json @@ -9,8 +9,8 @@ "volume": "250 ml", "//": "just 10 shots stacked on top of one another as a clip", "longest_side": "120 mm", - "price": 600, - "price_postapoc": 50, + "price": "6 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -28,8 +28,8 @@ "weight": "600 g", "volume": "1250 ml", "longest_side": "255 mm", - "price": 10500, - "price_postapoc": 450, + "price": "105 USD", + "price_postapoc": "4 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -47,8 +47,8 @@ "weight": "710 g", "volume": "449 ml", "longest_side": "132 mm", - "price": 13500, - "price_postapoc": 470, + "price": "135 USD", + "price_postapoc": "4 USD 70 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/filter.json b/data/json/items/magazine/filter.json index c65fad87ae55a..20efc30a29452 100644 --- a/data/json/items/magazine/filter.json +++ b/data/json/items/magazine/filter.json @@ -7,7 +7,7 @@ "description": "A small-sized, replaceable filter cartridge for an air filtration mask.", "weight": "2 g", "volume": "250 ml", - "price_postapoc": 375, + "price_postapoc": "3 USD 75 cent", "material": [ "plastic", "rubber", "charcoal" ], "symbol": "=", "color": "yellow", @@ -25,7 +25,7 @@ "description": "A medium-sized, replaceable filter cartridge for an air filtration mask.", "weight": "2 g", "volume": "250 ml", - "price_postapoc": 375, + "price_postapoc": "3 USD 75 cent", "material": [ "plastic", "rubber", "charcoal" ], "symbol": "=", "color": "yellow", @@ -40,8 +40,8 @@ "type": "MAGAZINE", "category": "tool_magazine", "name": { "str": "rebreather scrubber cartridge, air tank", "str_pl": "rebreather scrubber cartridges, air tanks" }, - "price": 8500, - "price_postapoc": 1000, + "price": "85 USD", + "price_postapoc": "10 USD", "symbol": "=", "color": "light_gray", "description": "A replaceable CO2 scrubber cartridge for a rebreather, coupled with a 3 L pressurized tank. This one has its tank filled with atmospheric air.", @@ -57,8 +57,8 @@ "type": "MAGAZINE", "category": "tool_magazine", "name": { "str": "rebreather scrubber cartridge, oxygen tank", "str_pl": "rebreather scrubber cartridges, oxygen tanks" }, - "price": 8500, - "price_postapoc": 1000, + "price": "85 USD", + "price_postapoc": "10 USD", "symbol": "=", "color": "light_gray", "description": "A replaceable CO2 scrubber cartridge for a rebreather, coupled with a 3 L pressurized tank. This one has its tank filled with oxygen.", @@ -74,8 +74,8 @@ "type": "MAGAZINE", "category": "tool_magazine", "name": { "str": "rebreather oxygen regenerator cartridge" }, - "price": 8500, - "price_postapoc": 1000, + "price": "85 USD", + "price_postapoc": "10 USD", "symbol": "=", "color": "light_gray", "description": "A replaceable oxygen regenerator cartridge for a rebreather.", diff --git a/data/json/items/magazine/liquid.json b/data/json/items/magazine/liquid.json index a80d1ff4c04ea..5350fd9cd779c 100644 --- a/data/json/items/magazine/liquid.json +++ b/data/json/items/magazine/liquid.json @@ -8,8 +8,8 @@ "weight": "11600 g", "volume": "13935 ml", "longest_side": "630 mm", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "aluminum" ], "symbol": "#", "color": "light_green", @@ -26,8 +26,8 @@ "weight": "9800 g", "volume": "15677 ml", "longest_side": "630 mm", - "price": 20000, - "price_postapoc": 750, + "price": "200 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "carbonfiber" ], "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/methanol_fuelcell.json b/data/json/items/magazine/methanol_fuelcell.json index 5a1d20543669c..1028e356bdd3d 100644 --- a/data/json/items/magazine/methanol_fuelcell.json +++ b/data/json/items/magazine/methanol_fuelcell.json @@ -8,8 +8,8 @@ "weight": "4300 g", "volume": "5250 ml", "longest_side": "283 mm", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "material": [ "plastic" ], "symbol": "=", "color": "yellow", @@ -27,8 +27,8 @@ "weight": "8400 g", "volume": "10500 ml", "longest_side": "318 mm", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "material": [ "plastic" ], "symbol": "=", "color": "yellow", @@ -46,8 +46,8 @@ "weight": "23400 g", "volume": "29500 ml", "longest_side": "395 mm", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "material": [ "plastic" ], "symbol": "=", "color": "yellow", @@ -67,8 +67,8 @@ "weight": "55 kg", "volume": "72 L", "longest_side": "670 mm", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "material": [ "plastic" ], "symbol": "=", "color": "yellow", diff --git a/data/json/items/magazine/nail.json b/data/json/items/magazine/nail.json index bc3e06ecdf880..9aa4a40806955 100644 --- a/data/json/items/magazine/nail.json +++ b/data/json/items/magazine/nail.json @@ -7,7 +7,7 @@ "description": "An improvised magazine for use with a coilgun. Little more than a metal box, a spring, and some duct tape, it is awkward to reload.", "weight": "60 g", "volume": "250 ml", - "price": 1920, + "price": "19 USD 20 cent", "material": "steel", "symbol": "#", "color": "light_gray", diff --git a/data/json/items/magazine/shot.json b/data/json/items/magazine/shot.json index 12558360a3300..4c61adda40d9a 100644 --- a/data/json/items/magazine/shot.json +++ b/data/json/items/magazine/shot.json @@ -17,8 +17,8 @@ "weight": "340 g", "volume": "682 ml", "longest_side": "298 mm", - "price": 4500, - "price_postapoc": 100, + "price": "45 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "dark_gray", @@ -44,8 +44,8 @@ "weight": "1070 g", "volume": "2036 ml", "longest_side": "218 mm", - "price": 11000, - "price_postapoc": 500, + "price": "110 USD", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "#", "color": "dark_gray", @@ -63,8 +63,8 @@ "description": "A non-disintegrating cloth ammo belt which can hold up to 20 shotgun shells. Notably less reliable than metal ammo belts.", "weight": "41 g", "volume": "35 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "#", "color": "light_gray", @@ -93,8 +93,8 @@ "weight": "13 g", "volume": "129 ml", "longest_side": "352 mm", - "price": 3200, - "price_postapoc": 50, + "price": "32 USD", + "price_postapoc": "50 cent", "material": [ "plastic" ], "symbol": "/", "color": "light_gray", @@ -113,8 +113,8 @@ "weight": "17 g", "volume": "171 ml", "longest_side": "47 cm", - "price": 3250, - "price_postapoc": 50, + "price": "32 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "plastic" ], "symbol": "/", "color": "light_gray", @@ -133,8 +133,8 @@ "weight": "112 g", "volume": "255 ml", "longest_side": "118 mm", - "price": 1400, - "price_postapoc": 100, + "price": "14 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "dark_gray", @@ -152,8 +152,8 @@ "weight": "150 g", "volume": "342 ml", "longest_side": "158 mm", - "price": 1700, - "price_postapoc": 100, + "price": "17 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "dark_gray", diff --git a/data/json/items/magazine/weldgas.json b/data/json/items/magazine/weldgas.json index 64f6a03fb60fc..3869cf3f19dec 100644 --- a/data/json/items/magazine/weldgas.json +++ b/data/json/items/magazine/weldgas.json @@ -10,8 +10,8 @@ "weight": "3640 g", "volume": "3 L", "longest_side": "39 cm", - "price": 15790, - "price_postapoc": 100, + "price": "157 USD 90 cent", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "brown", @@ -32,8 +32,8 @@ "weight": "11360 g", "volume": "18 L", "longest_side": "60 cm", - "price": 16990, - "price_postapoc": 100, + "price": "169 USD 90 cent", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "brown", diff --git a/data/json/items/melee/bludgeons.json b/data/json/items/melee/bludgeons.json index 3d707e615a1e5..4d84241814cfd 100644 --- a/data/json/items/melee/bludgeons.json +++ b/data/json/items/melee/bludgeons.json @@ -8,8 +8,8 @@ "weight": "3550 g", "longest_side": "160 cm", "volume": "2250 ml", - "price": 25000, - "price_postapoc": 3000, + "price": "250 USD", + "price_postapoc": "30 USD", "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "uneven" }, "material": [ "wood", "steel" ], "symbol": "\\", @@ -28,8 +28,8 @@ "weight": "1700 g", "longest_side": "160 cm", "volume": "2250 ml", - "price": 4000, - "price_postapoc": 1000, + "price": "40 USD", + "price_postapoc": "10 USD", "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "uneven" }, "material": [ "wood" ], "symbol": "\\", @@ -56,8 +56,8 @@ "qualities": [ [ "HAMMER", 1 ] ], "flags": [ "DURABLE_MELEE", "SHEATH_SPEAR", "ALWAYS_TWOHAND", "NONCONDUCTIVE" ], "volume": "2700 ml", - "price": 50000, - "price_postapoc": 2000, + "price": "500 USD", + "price_postapoc": "20 USD", "melee_damage": { "bash": 44 } }, { @@ -77,14 +77,14 @@ "weight": "1133 g", "longest_side": "90 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, - "price_postapoc": 750, + "price_postapoc": "7 USD 50 cent", "color": "brown", "symbol": "/", "material": [ "wood" ], "techniques": [ "WBLOCK_1", "BRUTAL" ], "flags": [ "DURABLE_MELEE", "BELT_CLIP", "NONCONDUCTIVE" ], "volume": "1750 ml", - "price": 16000, + "price": "160 USD", "melee_damage": { "bash": 22 }, "weapon_category": [ "MACES" ] }, @@ -98,13 +98,13 @@ "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "color": "light_gray", "symbol": "/", - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", "material": [ "aluminum" ], "techniques": [ "WBLOCK_1", "BRUTAL" ], "qualities": [ [ "HAMMER", 1 ] ], "flags": [ "DURABLE_MELEE", "BELT_CLIP" ], "volume": "1750 ml", - "price": 16000, + "price": "160 USD", "melee_damage": { "bash": 22 }, "weapon_category": [ "MACES" ] }, @@ -136,13 +136,13 @@ "volume": "140 ml", "longest_side": "24 cm", "color": "dark_gray", - "price_postapoc": 750, + "price_postapoc": "7 USD 50 cent", "symbol": "/", "material": [ { "type": "steel", "portion": 7 }, { "type": "plastic", "portion": 3 } ], "flags": [ "DURABLE_MELEE", "BELT_CLIP" ], "use_action": { "menu_text": "Expand", "type": "transform", "target": "baton-extended", "msg": "You snap open your baton." }, "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "neutral" }, - "price": 22900, + "price": "229 USD", "melee_damage": { "bash": 4 } }, { @@ -155,7 +155,7 @@ "volume": "260 ml", "longest_side": "60 cm", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, - "price_postapoc": 750, + "price_postapoc": "7 USD 50 cent", "color": "dark_gray", "symbol": "/", "material": [ { "type": "steel", "portion": 7 }, { "type": "plastic", "portion": 3 } ], @@ -163,7 +163,7 @@ "flags": [ "DURABLE_MELEE", "BELT_CLIP" ], "weapon_category": [ "BATONS" ], "use_action": { "menu_text": "Collapse", "type": "transform", "target": "baton", "msg": "You collapse your baton." }, - "price": 22900, + "price": "229 USD", "melee_damage": { "bash": 10 } }, { @@ -174,8 +174,8 @@ "weight": "2002 g", "volume": "2500 ml", "longest_side": "100 cm", - "price": 40000, - "price_postapoc": 12000, + "price": "400 USD", + "price_postapoc": "120 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "steel", "wood" ], "symbol": "/", @@ -199,8 +199,8 @@ "material": [ "aluminum", "wood" ], "weight": "2068 g", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "uneven" }, - "price": 1050, - "price_postapoc": 500 + "price": "10 USD 50 cent", + "price_postapoc": "5 USD" }, { "id": "battleaxe_inferior", @@ -212,8 +212,8 @@ "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "budget_steel", "wood" ], - "price": 40000, - "price_postapoc": 2000 + "price": "400 USD", + "price_postapoc": "20 USD" }, { "id": "lc_battleaxe", @@ -223,8 +223,8 @@ "weight": "2002 g", "volume": "2500 ml", "longest_side": "100 cm", - "price": 40000, - "price_postapoc": 12000, + "price": "400 USD", + "price_postapoc": "120 USD", "to_hit": { "grip": "bad", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "lc_steel", "wood" ], "symbol": "/", @@ -245,8 +245,8 @@ "weight": "2202 g", "volume": "2500 ml", "longest_side": "100 cm", - "price": 40000, - "price_postapoc": 12000, + "price": "400 USD", + "price_postapoc": "120 USD", "to_hit": { "grip": "solid", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "mc_steel", "wood" ], "symbol": "/", @@ -267,8 +267,8 @@ "weight": "2202 g", "volume": "2500 ml", "longest_side": "100 cm", - "price": 40000, - "price_postapoc": 12000, + "price": "400 USD", + "price_postapoc": "120 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "hc_steel", "wood" ], "symbol": "/", @@ -289,8 +289,8 @@ "weight": "2102 g", "volume": "2500 ml", "longest_side": "100 cm", - "price": 40000, - "price_postapoc": 12000, + "price": "400 USD", + "price_postapoc": "120 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "ch_steel", "wood" ], "symbol": "/", @@ -311,8 +311,8 @@ "weight": "2102 g", "volume": "2500 ml", "longest_side": "100 cm", - "price": 40000, - "price_postapoc": 12000, + "price": "400 USD", + "price_postapoc": "120 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "material": [ "qt_steel", "wood" ], "symbol": "/", @@ -332,8 +332,8 @@ "color": "dark_gray", "name": { "str": "blackjack" }, "description": "A short, easily concealed bludgeoning weapon consisting of a weight embedded at the end of a short leather shaft. Formerly used by law enforcement, this weapon is meant to stun or knock out the subject, although head strikes have a high risk of causing a permanent, disabling brain injury or being fatal.", - "price": 17500, - "price_postapoc": 500, + "price": "175 USD", + "price_postapoc": "5 USD", "material": [ "leather", "lead" ], "techniques": [ "PRECISE", "RAPID" ], "flags": [ "BELT_CLIP", "NONCONDUCTIVE" ], @@ -351,8 +351,8 @@ "color": "brown", "name": { "str_sp": "bokken" }, "description": "A solid wood 'training' katana, exactingly crafted to mimic the weight and balance of the real thing. Despite its lack of a sharp metal edge, it's still quite capable of inflicting deadly wounds.", - "price": 55000, - "price_postapoc": 2500, + "price": "550 USD", + "price_postapoc": "25 USD", "material": [ "wood" ], "ascii_picture": "bokken", "techniques": [ "RAPID", "WBLOCK_2" ], @@ -381,8 +381,8 @@ "material": [ "wood" ], "weight": "480 g", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "neutral" }, - "price": 12500, - "price_postapoc": 500 + "price": "125 USD", + "price_postapoc": "5 USD" }, { "id": "bokken_inferior", @@ -398,8 +398,8 @@ "material": [ "wood" ], "weight": "580 g", "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "good" }, - "price": 12500, - "price_postapoc": 750 + "price": "125 USD", + "price_postapoc": "7 USD 50 cent" }, { "type": "GENERIC", @@ -407,8 +407,8 @@ "name": { "str": "The 7-10 Split", "str_pl": "7-10 Splits" }, "description": "An improvised weapon made from a bowling pin with two spikes attached in the shape of a 'T'.", "weight": "2433 g", - "price": 18000, - "price_postapoc": 50, + "price": "180 USD", + "price_postapoc": "50 cent", "color": "brown", "symbol": "/", "material": [ "wood", "steel" ], @@ -425,7 +425,7 @@ "name": { "str": "bowling pin" }, "description": "A standard bowling pin. Makes a decent melee weapon, if somewhat short.", "weight": "1530 g", - "price_postapoc": 50, + "price_postapoc": "50 cent", "color": "brown", "symbol": "/", "material": [ "wood" ], @@ -434,7 +434,7 @@ "volume": "2250 ml", "longest_side": "40 cm", "to_hit": { "grip": "none", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 1000, + "price": "10 USD", "melee_damage": { "bash": 11 } }, { @@ -443,7 +443,7 @@ "name": { "str": "barbed wire bat" }, "description": "A baseball bat wrapped with barbed wire. A brutal melee weapon.", "weight": "1420 g", - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", "color": "brown", "symbol": "/", "material": [ "wood", "steel" ], @@ -452,7 +452,7 @@ "volume": "2 L", "longest_side": "90 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, - "price": 20000, + "price": "200 USD", "melee_damage": { "bash": 22, "cut": 8 }, "weapon_category": [ "MACES" ] }, @@ -471,8 +471,8 @@ "volume": "1 L", "longest_side": "80 cm", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, - "price": 16000, - "price_postapoc": 100, + "price": "160 USD", + "price_postapoc": "1 USD", "melee_damage": { "bash": 10 } }, { @@ -486,7 +486,7 @@ "symbol": "/", "material": [ "plastic" ], "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, - "price_postapoc": 10, + "price_postapoc": "10 cent", "extend": { "flags": [ "FRAGILE_MELEE" ] }, "melee_damage": { "bash": 2 } }, @@ -501,7 +501,7 @@ "symbol": "/", "material": [ "plastic" ], "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, - "price_postapoc": 20, + "price_postapoc": "20 cent", "extend": { "flags": [ "FRAGILE_MELEE", "WATER_BREAK_ACTIVE" ] }, "charges_per_use": 1, "ammo": [ "battery" ], @@ -552,7 +552,7 @@ "symbol": "/", "material": [ "wood", "aluminum" ], "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, - "price_postapoc": 150, + "price_postapoc": "1 USD 50 cent", "extend": { "flags": [ "WATER_BREAK_ACTIVE" ] }, "charges_per_use": 1, "ammo": [ "battery" ], @@ -607,8 +607,8 @@ "volume": "1 L", "longest_side": "80 cm", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 1600, - "price_postapoc": 10, + "price": "16 USD", + "price_postapoc": "10 cent", "melee_damage": { "bash": 7 } }, { @@ -617,7 +617,7 @@ "name": { "str": "wooden club" }, "description": "A plank of wood that's been snapped in half, with a crude handle whittled into one end. It looks like a poorly-made cricket bat.", "weight": "1200 g", - "price_postapoc": 10, + "price_postapoc": "10 cent", "color": "brown", "symbol": "/", "looks_like": "cudgel", @@ -627,7 +627,7 @@ "volume": "2200 ml", "longest_side": "65 cm", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 100, + "price": "1 USD", "melee_damage": { "bash": 12 } }, { @@ -636,7 +636,7 @@ "name": { "str": "large wooden club" }, "description": "A long plank of wood with a crude handle whittled into one end. It's barely an improvement, but at least it is slightly easier to wield than just the plank on its own.", "weight": "2400 g", - "price_postapoc": 10, + "price_postapoc": "10 cent", "color": "brown", "symbol": "/", "looks_like": "2x4", @@ -647,7 +647,7 @@ "volume": "4300 ml", "longest_side": "130 cm", "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "uneven" }, - "price": 100, + "price": "1 USD", "melee_damage": { "bash": 16 } }, { @@ -657,7 +657,7 @@ "color": "dark_gray", "name": { "str": "crutches", "str_pl": "pairs of crutches" }, "description": "A pair of crutches.", - "price": 2500, + "price": "25 USD", "material": [ "aluminum" ], "techniques": [ "WBLOCK_1", "SWEEP" ], "flags": [ "FRAGILE_MELEE", "CRUTCHES" ], @@ -665,7 +665,7 @@ "volume": "1500 ml", "longest_side": "150 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", "category": "weapons", "melee_damage": { "bash": 20 } }, @@ -676,7 +676,7 @@ "color": "dark_gray", "name": { "str": "makeshift crutches", "str_pl": "pairs of makeshift crutches" }, "description": "A pair of wooden makeshift crutches.", - "price": 250, + "price": "2 USD 50 cent", "material": [ "wood" ], "techniques": [ "WBLOCK_1", "SWEEP" ], "flags": [ "FRAGILE_MELEE", "NONCONDUCTIVE", "CRUTCHES" ], @@ -684,7 +684,7 @@ "volume": "1500 ml", "longest_side": "150 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "clumsy" }, - "price_postapoc": 125, + "price_postapoc": "1 USD 25 cent", "category": "weapons", "melee_damage": { "bash": 10 } }, @@ -695,7 +695,7 @@ "name": { "str": "cudgel" }, "description": "A long, slender wooden rod. While traditionally intended as a training tool, it still makes a good melee weapon in a pinch.", "weight": "425 g", - "price_postapoc": 50, + "price_postapoc": "50 cent", "color": "brown", "symbol": "/", "material": [ "wood" ], @@ -705,7 +705,7 @@ "volume": "600 ml", "longest_side": "60 cm", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, - "price": 1000, + "price": "10 USD", "melee_damage": { "bash": 10 } }, { @@ -717,7 +717,7 @@ "description": "A glass shard with wrapping at one end so it can be safely wielded.", "material": [ { "type": "glass", "portion": 13 }, { "type": "cotton", "portion": 1 } ], "weight": "193 g", - "price_postapoc": 10, + "price_postapoc": "10 cent", "volume": "82 ml", "longest_side": "15 cm", "to_hit": { "grip": "none", "length": "hand", "surface": "line", "balance": "good" }, @@ -733,8 +733,8 @@ "color": "light_gray", "name": { "str": "golf club" }, "description": "A long handle with a big metal head, flat on one side, for driving golf balls. Fore!", - "price": 13000, - "price_postapoc": 50, + "price": "130 USD", + "price_postapoc": "50 cent", "material": [ "aluminum" ], "techniques": [ "WBLOCK_1" ], "weight": "300 g", @@ -759,8 +759,8 @@ "volume": "1250 ml", "longest_side": "80 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "uneven" }, - "price": 12000, - "price_postapoc": 500, + "price": "120 USD", + "price_postapoc": "5 USD", "qualities": [ [ "HAMMER", 1 ] ], "melee_damage": { "bash": 50 } }, @@ -780,8 +780,8 @@ "volume": "900 ml", "longest_side": "60 cm", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "uneven" }, - "price": 12000, - "price_postapoc": 250, + "price": "120 USD", + "price_postapoc": "2 USD 50 cent", "qualities": [ [ "HAMMER", 1 ] ], "melee_damage": { "bash": 35 } }, @@ -799,8 +799,8 @@ "volume": "600 ml", "longest_side": "40 cm", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "uneven" }, - "price": 6000, - "price_postapoc": 250, + "price": "60 USD", + "price_postapoc": "2 USD 50 cent", "qualities": [ [ "HAMMER", 2 ] ], "melee_damage": { "bash": 25 } }, @@ -820,8 +820,8 @@ "volume": "1700 ml", "longest_side": "100 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "clumsy" }, - "price": 24000, - "price_postapoc": 750, + "price": "240 USD", + "price_postapoc": "7 USD 50 cent", "qualities": [ [ "HAMMER", 1 ] ], "melee_damage": { "bash": 80 } }, @@ -832,8 +832,8 @@ "color": "white", "name": { "str": "hockey stick" }, "description": "A curved wooden stick with a wide and flat end. Commonly used by hockey players.", - "price": 11000, - "price_postapoc": 50, + "price": "110 USD", + "price_postapoc": "50 cent", "material": [ "wood", "plastic" ], "techniques": [ "WBLOCK_1", "SWEEP", "WIDE" ], "weapon_category": [ "HOOKING_WEAPONRY", "POLEARMS" ], @@ -860,8 +860,8 @@ "qualities": [ [ "HAMMER", 1 ] ], "weapon_category": [ "GREAT_HAMMERS" ], "flags": [ "NONCONDUCTIVE", "FRAGILE_MELEE" ], - "price": 8000, - "price_postapoc": 50, + "price": "80 USD", + "price_postapoc": "50 cent", "melee_damage": { "bash": 35, "stab": 2 } }, { @@ -871,8 +871,8 @@ "description": "A flat wooden club with sharpened pieces of glass stuck to both sides. Somewhat accurate to the actual thing.", "weight": "2000 g", "volume": "3800 ml", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "color": "brown", "symbol": "/", "material": [ "wood", "glass" ], @@ -890,8 +890,8 @@ "description": "A flat wooden club with impossibly-sharp teeth stuck to both sides. Fragile yet very sharp.", "weight": "2000 g", "volume": "3800 ml", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "color": "brown", "symbol": "/", "material": [ "wood", "bone" ], @@ -909,8 +909,8 @@ "description": "An improvised version of the close combat weapon that was mainly used by Aztecs. It's not very sturdy, but it will break someone's skull open and give them a good cut.", "weight": "2050 g", "volume": "3800 ml", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "symbol": "/", "color": "brown", "material": [ "wood", "stone" ], @@ -928,8 +928,8 @@ "description": "A poor imitation of the close combat weapon affiliated with Aztec warriors, made with a large wooden club and carefully hammered razors. Although not very sturdy, it delivers some nasty cuts and bruises.", "weight": "2050 g", "volume": "3800 ml", - "price": 1500, - "price_postapoc": 250, + "price": "15 USD", + "price_postapoc": "2 USD 50 cent", "symbol": "/", "color": "brown", "material": [ "wood" ], @@ -947,8 +947,8 @@ "description": "A modern reimagining of the large close combat weapon affiliated with Aztec warriors, made of a sturdy wooden club and sharp blades forged from mild steel. Blades are definitely sturdier than obsidian ones. Not great, not terrible.", "weight": "3600 g", "volume": "4500 ml", - "price": 4000, - "price_postapoc": 1500, + "price": "40 USD", + "price_postapoc": "15 USD", "symbol": "/", "color": "brown", "material": [ "wood", "lc_steel" ], @@ -965,8 +965,8 @@ "name": { "str": "medium steel bladed macuahuitl" }, "description": "A modern reimagining of the large close combat weapon affiliated with Aztec warriors, made of a sturdy wooden club and sharp blades forged from medium steel. Blades are definitely sturdier than obsidian ones.", "copy-from": "lc_aztec_sword", - "price": 5000, - "price_postapoc": 1750, + "price": "50 USD", + "price_postapoc": "17 USD 50 cent", "material": [ "wood", "mc_steel" ], "melee_damage": { "bash": 24, "cut": 18 } }, @@ -976,8 +976,8 @@ "name": { "str": "high steel bladed macuahuitl" }, "description": "A modern reimagining of the large close combat weapon affiliated with Aztec warriors, made of a sturdy wooden club and sharp blades forged from high steel. Blades are definitely sturdier than obsidian ones.", "copy-from": "lc_aztec_sword", - "price": 7000, - "price_postapoc": 2000, + "price": "70 USD", + "price_postapoc": "20 USD", "material": [ "wood", "hc_steel" ], "melee_damage": { "bash": 24, "cut": 22 } }, @@ -987,8 +987,8 @@ "name": { "str": "hardened steel bladed macuahuitl" }, "description": "A modern reimagining of the large close combat weapon affiliated with Aztec warriors, made of a sturdy wooden club and sharp blades forged from hardened steel. Blades are definitely sturdier than obsidian ones.", "copy-from": "lc_aztec_sword", - "price": 9000, - "price_postapoc": 2500, + "price": "90 USD", + "price_postapoc": "25 USD", "material": [ "wood", "ch_steel" ], "melee_damage": { "bash": 24, "cut": 26 } }, @@ -998,8 +998,8 @@ "name": { "str": "tempered steel bladed macuahuitl" }, "description": "A modern reimagining of the large close combat weapon affiliated with Aztec warriors, made of a sturdy wooden club and sharp blades forged from tempered steel. You can single-handedly avenge the fallen nations of Mesoamerica with this one.", "copy-from": "lc_aztec_sword", - "price": 12000, - "price_postapoc": 3000, + "price": "120 USD", + "price_postapoc": "30 USD", "material": [ "wood", "qt_steel" ], "melee_damage": { "bash": 24, "cut": 30 } }, @@ -1011,8 +1011,8 @@ "looks_like": "q_staff", "name": { "str": "ironshod quarterstaff", "str_pl": "ironshod quarterstaves" }, "description": "A long wooden staff reinforced with metal bands and caps.", - "price": 6000, - "price_postapoc": 1500, + "price": "60 USD", + "price_postapoc": "15 USD", "material": [ "wood", "iron" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "flags": [ "NONCONDUCTIVE", "SHEATH_SPEAR", "ALWAYS_TWOHAND", "DURABLE_MELEE" ], @@ -1033,8 +1033,8 @@ "looks_like": "q_staff", "name": { "str": "mild steelshod quarterstaff", "str_pl": "mild steelshod quarterstaves" }, "description": "A long wooden staff reinforced with metal bands and caps. This one has been forged with mild steel rather than the traditional iron, and so hits just that little bit harder.", - "price": 6000, - "price_postapoc": 1500, + "price": "60 USD", + "price_postapoc": "15 USD", "material": [ "wood", "lc_steel" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "flags": [ "NONCONDUCTIVE", "SHEATH_SPEAR", "ALWAYS_TWOHAND", "DURABLE_MELEE" ], @@ -1055,8 +1055,8 @@ "looks_like": "q_staff", "name": { "str": "medium steelshod quarterstaff", "str_pl": "medium steelshod quarterstaves" }, "description": "A long wooden staff reinforced with metal bands and caps. This one has been forged with medium steel rather than the traditional iron, and so hits just that little bit harder.", - "price": 6000, - "price_postapoc": 1500, + "price": "60 USD", + "price_postapoc": "15 USD", "material": [ "wood", "mc_steel" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "flags": [ "NONCONDUCTIVE", "SHEATH_SPEAR", "ALWAYS_TWOHAND", "DURABLE_MELEE" ], @@ -1077,8 +1077,8 @@ "looks_like": "q_staff", "name": { "str": "high steelshod quarterstaff", "str_pl": "high steelshod quarterstaves" }, "description": "A long wooden staff reinforced with metal bands and caps. This one has been forged with high steel rather than the traditional iron, and so hits just that little bit harder.", - "price": 6000, - "price_postapoc": 1500, + "price": "60 USD", + "price_postapoc": "15 USD", "material": [ "wood", "hc_steel" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "flags": [ "NONCONDUCTIVE", "SHEATH_SPEAR", "ALWAYS_TWOHAND", "DURABLE_MELEE" ], @@ -1099,8 +1099,8 @@ "looks_like": "q_staff", "name": { "str": "hardened steelshod quarterstaff", "str_pl": "hardened steelshod quarterstaves" }, "description": "A long wooden staff reinforced with metal bands and caps. This one has been forged with hardened steel rather than the traditional iron, and so hits just that little bit harder.", - "price": 6000, - "price_postapoc": 1500, + "price": "60 USD", + "price_postapoc": "15 USD", "material": [ "wood", "ch_steel" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "flags": [ "NONCONDUCTIVE", "SHEATH_SPEAR", "ALWAYS_TWOHAND", "DURABLE_MELEE" ], @@ -1121,8 +1121,8 @@ "looks_like": "q_staff", "name": { "str": "tempered steelshod quarterstaff", "str_pl": "tempered steelshod quarterstaves" }, "description": "A long wooden staff reinforced with metal bands and caps. This one has been forged with tempered steel rather than the traditional iron, and so hits just that little bit harder.", - "price": 6000, - "price_postapoc": 1500, + "price": "60 USD", + "price_postapoc": "15 USD", "material": [ "wood", "qt_steel" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "flags": [ "NONCONDUCTIVE", "SHEATH_SPEAR", "ALWAYS_TWOHAND", "DURABLE_MELEE" ], @@ -1143,7 +1143,7 @@ "name": { "str": "lucerne hammer" }, "description": "A versatile polearm with a spiked hammer head, a spike, and a hook attached to a beefy wooden pole.", "weapon_category": [ "HOOKING_WEAPONRY", "POLEARMS" ], - "price": 50000, + "price": "500 USD", "material": [ "wood", "steel" ], "flags": [ "DURABLE_MELEE", "REACH_ATTACK", "NONCONDUCTIVE", "POLEARM", "SHEATH_SPEAR", "SPEAR", "ALWAYS_TWOHAND" ], "techniques": [ "WBLOCK_1", "WIDE", "SWEEP" ], @@ -1151,7 +1151,7 @@ "volume": "3750 ml", "longest_side": "200 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "uneven" }, - "price_postapoc": 10000, + "price_postapoc": "100 USD", "qualities": [ [ "COOK", 1 ] ], "category": "weapons", "melee_damage": { "bash": 44, "stab": 33 } @@ -1167,8 +1167,8 @@ "extend": { "flags": [ "FRAGILE_MELEE" ] }, "material": [ "wood", "aluminum" ], "weight": "2700 g", - "price": 4000, - "price_postapoc": 500 + "price": "40 USD", + "price_postapoc": "5 USD" }, { "type": "GENERIC", @@ -1186,8 +1186,8 @@ "longest_side": "80 cm", "//": "Same total damage and slightly higher weight than a morningstar - exchanged.", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 100000, - "price_postapoc": 6000, + "price": "1 kUSD", + "price_postapoc": "60 USD", "qualities": [ [ "HAMMER", 1 ] ], "category": "weapons", "melee_damage": { "bash": 40 } @@ -1203,8 +1203,8 @@ "extend": { "flags": [ "FRAGILE_MELEE" ] }, "material": [ "wood", "aluminum" ], "weight": "750 g", - "price": 10000, - "price_postapoc": 500 + "price": "100 USD", + "price_postapoc": "5 USD" }, { "id": "mace_inferior", @@ -1216,8 +1216,8 @@ "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "budget_steel", "wood" ], "weight": "1000 g", - "price": 10000, - "price_postapoc": 1000 + "price": "100 USD", + "price_postapoc": "10 USD" }, { "type": "GENERIC", @@ -1236,8 +1236,8 @@ "longest_side": "80 cm", "//": "Same total damage and slightly higher weight than a morningstar - exchanged.", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 100000, - "price_postapoc": 6000, + "price": "1 kUSD", + "price_postapoc": "60 USD", "qualities": [ [ "HAMMER", 1 ] ], "category": "weapons", "melee_damage": { "bash": 38 } @@ -1259,8 +1259,8 @@ "longest_side": "80 cm", "//": "Same total damage and slightly higher weight than a morningstar - exchanged.", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 100000, - "price_postapoc": 6000, + "price": "1 kUSD", + "price_postapoc": "60 USD", "qualities": [ [ "HAMMER", 1 ] ], "category": "weapons", "melee_damage": { "bash": 40 } @@ -1282,8 +1282,8 @@ "longest_side": "80 cm", "//": "Same total damage and slightly higher weight than a morningstar - exchanged.", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 100000, - "price_postapoc": 6000, + "price": "1 kUSD", + "price_postapoc": "60 USD", "qualities": [ [ "HAMMER", 1 ] ], "category": "weapons", "melee_damage": { "bash": 41 } @@ -1305,8 +1305,8 @@ "longest_side": "80 cm", "//": "Same total damage and slightly higher weight than a morningstar - exchanged.", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 100000, - "price_postapoc": 6000, + "price": "1 kUSD", + "price_postapoc": "60 USD", "qualities": [ [ "HAMMER", 1 ] ], "category": "weapons", "melee_damage": { "bash": 42 } @@ -1328,8 +1328,8 @@ "longest_side": "80 cm", "//": "Same total damage and slightly higher weight than a morningstar - exchanged.", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, - "price": 100000, - "price_postapoc": 6000, + "price": "1 kUSD", + "price_postapoc": "60 USD", "qualities": [ [ "HAMMER", 1 ] ], "category": "weapons", "melee_damage": { "bash": 43 } @@ -1340,8 +1340,8 @@ "name": { "str": "simple mace" }, "copy-from": "mace_trench", "description": "A stick with a circular lump of metal tied to it in a facsimile of a mace. You could probably improve it by finding a way to pin the head to the handle.", - "price": 10, - "price_postapoc": 75, + "price": "10 cent", + "price_postapoc": "75 cent", "qualities": [ [ "HAMMER", 1 ] ], "extend": { "flags": [ "FRAGILE_MELEE" ] } }, @@ -1361,8 +1361,8 @@ "volume": "1250 ml", "longest_side": "60 cm", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 10000, - "price_postapoc": 400, + "price": "100 USD", + "price_postapoc": "4 USD", "qualities": [ [ "HAMMER", 1 ] ], "melee_damage": { "bash": 22 } }, @@ -1382,8 +1382,8 @@ "volume": "1250 ml", "longest_side": "65 cm", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 7500, - "price_postapoc": 400, + "price": "75 USD", + "price_postapoc": "4 USD", "qualities": [ [ "HAMMER", 1 ] ], "melee_damage": { "bash": 20 } }, @@ -1403,8 +1403,8 @@ "volume": "1750 ml", "longest_side": "120 cm", "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "uneven" }, - "price": 7500, - "price_postapoc": 400, + "price": "75 USD", + "price_postapoc": "4 USD", "melee_damage": { "bash": 28 } }, { @@ -1423,8 +1423,8 @@ "volume": "2000 ml", "longest_side": "190 cm", "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "uneven" }, - "price": 7500, - "price_postapoc": 400, + "price": "75 USD", + "price_postapoc": "4 USD", "melee_damage": { "bash": 21 } }, { @@ -1443,8 +1443,8 @@ "volume": "1250 ml", "longest_side": "60 cm", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 11000, - "price_postapoc": 2000, + "price": "110 USD", + "price_postapoc": "20 USD", "qualities": [ [ "HAMMER", 1 ] ], "melee_damage": { "bash": 30 } }, @@ -1455,7 +1455,7 @@ "color": "dark_gray", "name": { "str": "makeshift sap" }, "description": "An improvised sap, also known as a cosh, slapjack and slapper. A short, flat bludgeoning weapon consisting of a weight embedded between two patches of leather.", - "price": 5000, + "price": "50 USD", "material": [ "leather", "steel" ], "techniques": [ "PRECISE", "RAPID" ], "flags": [ "BELT_CLIP", "NONCONDUCTIVE" ], @@ -1463,7 +1463,7 @@ "volume": "350 ml", "longest_side": "20 cm", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "good" }, - "price_postapoc": 50, + "price_postapoc": "50 cent", "category": "weapons", "melee_damage": { "bash": 12 } }, @@ -1481,8 +1481,8 @@ "volume": "2500 ml", "longest_side": "60 cm", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 12000, - "price_postapoc": 50000, + "price": "120 USD", + "price_postapoc": "500 USD", "qualities": [ [ "HAMMER", 1 ] ], "melee_damage": { "bash": 9999 } }, @@ -1502,8 +1502,8 @@ "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, "flags": [ "DURABLE_MELEE", "SPEAR", "NONCONDUCTIVE", "BELT_CLIP" ], "weapon_category": [ "MACES" ], - "price": 120000, - "price_postapoc": 8000, + "price": "1 kUSD 200 USD", + "price_postapoc": "80 USD", "qualities": [ [ "HAMMER", 1 ] ], "category": "weapons", "melee_damage": { "bash": 38, "stab": 8 } @@ -1520,8 +1520,8 @@ "material": [ "aluminum", "wood" ], "weight": "700 g", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 12000, - "price_postapoc": 500 + "price": "120 USD", + "price_postapoc": "5 USD" }, { "id": "morningstar_inferior", @@ -1534,8 +1534,8 @@ "material": [ "budget_steel", "wood" ], "weight": "1000 g", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 12000, - "price_postapoc": 1000 + "price": "120 USD", + "price_postapoc": "10 USD" }, { "type": "GENERIC", @@ -1551,8 +1551,8 @@ "longest_side": "90 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, "flags": [ "BELT_CLIP", "NONCONDUCTIVE" ], - "price": 16000, - "price_postapoc": 1750, + "price": "160 USD", + "price_postapoc": "17 USD 50 cent", "melee_damage": { "bash": 22, "stab": 4 }, "weapon_category": [ "MACES" ] }, @@ -1571,8 +1571,8 @@ "longest_side": "65 cm", "to_hit": { "grip": "none", "length": "short", "surface": "line", "balance": "neutral" }, "flags": [ ], - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "melee_damage": { "bash": 12, "stab": 3 } }, { @@ -1591,7 +1591,7 @@ "weapon_category": [ "QUARTERSTAVES" ], "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "neutral" }, "price": "15 USD", - "price_postapoc": 50, + "price_postapoc": "50 cent", "flags": [ "FRAGILE_MELEE" ], "melee_damage": { "bash": 8 }, "//2": "Based on https://www.amazon.com/dp/B08183YH7Q" @@ -1613,8 +1613,8 @@ "volume": "2 L", "longest_side": "60 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, - "price": 30000, - "price_postapoc": 750, + "price": "300 USD", + "price_postapoc": "7 USD 50 cent", "melee_damage": { "bash": 14 } }, { @@ -1633,8 +1633,8 @@ "volume": "1 L", "longest_side": "20 cm", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "neutral" }, - "price": 30000, - "price_postapoc": 750, + "price": "300 USD", + "price_postapoc": "7 USD 50 cent", "melee_damage": { "bash": 5 } }, { @@ -1644,7 +1644,7 @@ "color": "brown", "name": { "str": "quarterstaff", "str_pl": "quarterstaves" }, "description": "A sturdy staff carved out of wood. Lightweight and long, it is surprisingly easy to handle.", - "price": 2000, + "price": "20 USD", "material": [ "wood" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "flags": [ "SHEATH_SPEAR", "ALWAYS_TWOHAND" ], @@ -1654,7 +1654,7 @@ "longest_side": "183 cm", "category": "weapons", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, - "price_postapoc": 1000, + "price_postapoc": "10 USD", "melee_damage": { "bash": 16 } }, { @@ -1665,7 +1665,7 @@ "name": { "str_sp": "bō" }, "looks_like": "q_staff", "description": "A wooden staff weapon used in Okinawan martial arts. Finely sanded and treated with oil for integrity.", - "price": 4000, + "price": "40 USD", "material": [ "wood" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "flags": [ "DURABLE_MELEE", "SHEATH_SPEAR", "ALWAYS_TWOHAND" ], @@ -1675,7 +1675,7 @@ "longest_side": "180 cm", "category": "weapons", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, - "price_postapoc": 1000, + "price_postapoc": "10 USD", "melee_damage": { "bash": 19 } }, { @@ -1685,8 +1685,8 @@ "color": "white", "name": { "str": "rock in a sock", "str_pl": "rocks in socks" }, "description": "A pair of nested socks with a stone tied inside. A true weapon of desperation.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "cotton", "stone" ], "weight": "1007 g", "volume": "500 ml", @@ -1703,8 +1703,8 @@ "name": { "str": "plastic shank" }, "description": "An oblong plastic object with the far end ground down into a stabbing point.", "category": "weapons", - "price": 400, - "price_postapoc": 0, + "price": "4 USD", + "price_postapoc": "0 cent", "material": [ "plastic" ], "weight": "49 g", "volume": "250 ml", @@ -1721,7 +1721,7 @@ "color": "brown", "name": { "str": "shillelagh" }, "description": "A stout, knotty stick with a large knob at the top that has been left to cure in a chimney. A traditional Irish weapon, the shillelagh was originally used for settling disputes in a gentlemanly manner.", - "price": 25000, + "price": "250 USD", "material": [ "wood" ], "techniques": [ "WBLOCK_1", "SWEEP" ], "flags": [ "DURABLE_MELEE", "BELT_CLIP" ], @@ -1730,7 +1730,7 @@ "volume": "1500 ml", "longest_side": "90 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", "category": "weapons", "melee_damage": { "bash": 24 } }, @@ -1742,7 +1742,7 @@ "color": "brown", "name": { "str": "loaded stick" }, "description": "A stout knotty stick with a large knob at the top that has been left to cure in a chimney. A traditional Irish weapon, the shillelagh was originally used for settling disputes in a gentlemanly manner. The knob has been hollowed and filled with molten heavy metal to pack more of a punch.", - "price": 30000, + "price": "300 USD", "material": [ "lead", "wood" ], "techniques": [ "WBLOCK_1", "SWEEP" ], "flags": [ "DURABLE_MELEE", "NONCONDUCTIVE", "BELT_CLIP" ], @@ -1751,7 +1751,7 @@ "volume": "1500 ml", "longest_side": "90 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, - "price_postapoc": 1750, + "price_postapoc": "17 USD 50 cent", "category": "weapons", "melee_damage": { "bash": 27 } }, @@ -1763,7 +1763,7 @@ "color": "brown", "name": { "str": "shillelagh" }, "description": "A fake shillelagh massproduced as a souvenir for tourists. This knotty stick has not been cured in a chimney like a traditional shillelagh, but instead has had fake black soot painted on.", - "price": 2500, + "price": "25 USD", "material": [ "wood" ], "techniques": [ "WBLOCK_1", "SWEEP" ], "flags": [ "FRAGILE_MELEE", "BELT_CLIP" ], @@ -1772,7 +1772,7 @@ "volume": "1500 ml", "longest_side": "90 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, - "price_postapoc": 50, + "price_postapoc": "50 cent", "category": "weapons", "melee_damage": { "bash": 12 } }, @@ -1785,8 +1785,8 @@ "weight": "1910 g", "volume": "1800 ml", "longest_side": "180 cm", - "price": 8000, - "price_postapoc": 4500, + "price": "80 USD", + "price_postapoc": "45 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "neutral" }, "material": [ "wood", "iron" ], "symbol": "/", @@ -1817,8 +1817,8 @@ "weight": "726 g", "volume": "2250 ml", "longest_side": "50 cm", - "price": 17000, - "price_postapoc": 2500, + "price": "170 USD", + "price_postapoc": "25 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, "material": [ "plastic", "steel" ], "symbol": "/", @@ -1859,7 +1859,7 @@ "description": "A hard plastic truncheon commonly employed by police. Originally an Okinawan weapon, it consists of a stick with a perpendicular handle attached a third of the way down its length.", "weight": "575 g", "longest_side": "50 cm", - "price_postapoc": 750, + "price_postapoc": "7 USD 50 cent", "color": "dark_gray", "symbol": "/", "material": [ "plastic" ], @@ -1868,7 +1868,7 @@ "weapon_category": [ "BATONS" ], "volume": "2 L", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, - "price": 19500, + "price": "195 USD", "melee_damage": { "bash": 14 } }, { @@ -1878,7 +1878,7 @@ "description": "A stout wooden truncheon of the sort commonly employed by police. Originally an Okinawan weapon, it consists of a stick with a perpendicular handle attached a third of the way down its length.", "weight": "921 g", "longest_side": "50 cm", - "price_postapoc": 750, + "price_postapoc": "7 USD 50 cent", "color": "brown", "symbol": "/", "material": [ "wood" ], @@ -1887,7 +1887,7 @@ "weapon_category": [ "BATONS" ], "volume": "2 L", "to_hit": { "grip": "weapon", "length": "short", "surface": "any", "balance": "good" }, - "price": 19500, + "price": "195 USD", "melee_damage": { "bash": 14 } }, { @@ -1899,7 +1899,7 @@ "weight": "2212 g", "volume": "2500 ml", "longest_side": "105 cm", - "price_postapoc": 500, + "price_postapoc": "5 USD", "to_hit": { "grip": "solid", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "lc_steel" ], "symbol": "/", @@ -1923,7 +1923,7 @@ "name": { "str": "war hammer" }, "description": "A medieval hammer with a spike on one end, made for battle. Its odd shape and balance make it an excellent weapon, but an ineffective tool.", "weight": "1337 g", - "price_postapoc": 6000, + "price_postapoc": "60 USD", "color": "brown", "symbol": "/", "//": "Craftable from steel, shouldn't be silver. A warhammer is essentially one end of a pickaxe with balancing weight on the other and crushes/pierces the armor.", @@ -1934,7 +1934,7 @@ "volume": "1250 ml", "longest_side": "120 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, - "price": 16000, + "price": "160 USD", "qualities": [ [ "HAMMER", 1 ] ], "melee_damage": { "bash": 22, "stab": 23 } } diff --git a/data/json/items/melee/knives_kitchen.json b/data/json/items/melee/knives_kitchen.json index b8e966eb21221..18c6daf5f8db6 100644 --- a/data/json/items/melee/knives_kitchen.json +++ b/data/json/items/melee/knives_kitchen.json @@ -19,8 +19,8 @@ "weight": "380 g", "volume": "300 ml", "longest_side": "35 cm", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "short", "surface": "point", "balance": "neutral" }, "qualities": [ [ "CUT", 2 ], [ "BUTCHER", 25 ] ], "flags": [ "SHEATH_KNIFE", "ALLOWS_BODY_BLOCK" ], @@ -38,8 +38,8 @@ "weight": "112 g", "volume": "100 ml", "longest_side": "25 cm", - "price": 250, - "price_postapoc": 50, + "price": "2 USD 50 cent", + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "neutral" }, "qualities": [ [ "CUT", 2 ], [ "CUT_FINE", 1 ], [ "BUTCHER", 15 ] ], "flags": [ "SHEATH_KNIFE", "ALLOWS_BODY_BLOCK" ], @@ -58,8 +58,8 @@ "weight": "50 g", "volume": "30 ml", "longest_side": "15 cm", - "price": 250, - "price_postapoc": 50, + "price": "2 USD 50 cent", + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "neutral" }, "qualities": [ [ "CUT", 2 ], [ "CUT_FINE", 1 ], [ "BUTCHER", 10 ] ], "flags": [ "SHEATH_KNIFE", "ALLOWS_BODY_BLOCK" ], @@ -78,8 +78,8 @@ "weight": "280 g", "volume": "200 ml", "longest_side": "30 cm", - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "point", "balance": "neutral" }, "qualities": [ [ "CUT", 2 ], [ "CUT_FINE", 1 ], [ "BUTCHER", 10 ] ], "flags": [ "SHEATH_KNIFE", "ALLOWS_BODY_BLOCK" ], @@ -99,7 +99,7 @@ "volume": "80 ml", "longest_side": "30 cm", "price": "17 USD", - "price_postapoc": 50, + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "short", "surface": "point", "balance": "neutral" }, "qualities": [ [ "CUT", 2 ], [ "CUT_FINE", 1 ], [ "BUTCHER", 22 ] ], "flags": [ "SHEATH_KNIFE", "ALLOWS_BODY_BLOCK" ], @@ -119,8 +119,8 @@ "weight": "280 g", "volume": "200 ml", "longest_side": "35 cm", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "qualities": [ [ "CUT", 2 ], [ "CUT_FINE", 1 ], [ "BUTCHER", 8 ] ], "flags": [ "SHEATH_KNIFE", "ALLOWS_BODY_BLOCK" ], @@ -141,7 +141,7 @@ "//1": "Volume calculated by proportions from the attached image - 8in blade = proportionally calculated 12.8in total length and 3.41in total height at the widest point. Width taken from package dimensions.", "longest_side": "33 cm", "price": "22 USD", - "price_postapoc": 50, + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "qualities": [ [ "CUT", 2 ], [ "BUTCHER", 15 ] ], "flags": [ "SHEATH_KNIFE", "ALLOWS_BODY_BLOCK" ], @@ -160,8 +160,8 @@ "weight": "450 g", "volume": "1 L", "longest_side": "30 cm", - "price": 3500, - "price_postapoc": 50, + "price": "35 USD", + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "qualities": [ [ "CUT", 2 ], [ "BUTCHER", 25 ] ], "flags": [ "SHEATH_KNIFE", "ALLOWS_BODY_BLOCK" ], diff --git a/data/json/items/melee/misc.json b/data/json/items/melee/misc.json index ab0527bae835f..b92ea9b6ec521 100644 --- a/data/json/items/melee/misc.json +++ b/data/json/items/melee/misc.json @@ -8,8 +8,8 @@ "description": "A long strip of braided leather with a handle on one end. Originally developed to settle disagreements with cattle, it's better used now for flaying the rotten flesh off of walking corpses. Great for when a problem comes along.", "weight": "3460 g", "volume": "2 L", - "price": 3500, - "price_postapoc": 500, + "price": "35 USD", + "price_postapoc": "5 USD", "material": [ "leather" ], "flags": [ "REACH_ATTACK", "REACH3", "WHIP" ], "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, @@ -26,8 +26,8 @@ "color": "brown", "weight": "3496 g", "volume": "2250 ml", - "price": 4800, - "price_postapoc": 5200, + "price": "48 USD", + "price_postapoc": "52 USD", "//": "There's no way you can swing this thing without hitting SOMETHING.", "to_hit": { "grip": "none", "length": "long", "surface": "every", "balance": "uneven" }, "material": [ "leather", "steel" ], @@ -42,8 +42,8 @@ "description": "A high-powered stun gun. Use this item to attempt to electrocute an adjacent enemy, temporarily paralyzing them.", "weight": "151 g", "volume": "250 ml", - "price": 14000, - "price_postapoc": 1500, + "price": "140 USD", + "price_postapoc": "15 USD", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "//": "Yes, this is smaller than its magazine well. Go with it.", "material": [ "plastic", "aluminum" ], diff --git a/data/json/items/melee/spears_and_polearms.json b/data/json/items/melee/spears_and_polearms.json index 0dbdefda78198..98e139b0814a9 100644 --- a/data/json/items/melee/spears_and_polearms.json +++ b/data/json/items/melee/spears_and_polearms.json @@ -16,8 +16,8 @@ "qualities": [ [ "COOK", 1 ] ], "flags": [ "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "melee_damage": { "bash": 5, "stab": 18 } }, { @@ -32,7 +32,7 @@ "longest_side": "80 cm", "weight": "900 g", "to_hit": { "grip": "solid", "length": "short", "surface": "point", "balance": "neutral" }, - "price_postapoc": 10, + "price_postapoc": "10 cent", "flags": [ "SPEAR" ], "techniques": [ "WBLOCK_1" ], "qualities": [ [ "COOK", 1 ] ], @@ -44,7 +44,7 @@ "name": { "str": "long pointy stick" }, "description": "A stout pole with one end sharpened to a point.", "weight": "1551 g", - "price_postapoc": 10, + "price_postapoc": "10 cent", "color": "brown", "looks_like": "spear_wood", "symbol": "/", @@ -64,7 +64,7 @@ "name": { "str": "fire-hardened wooden spear" }, "description": "A stout wooden pole with a fire-hardened point.", "weight": "1200 g", - "price_postapoc": 50, + "price_postapoc": "50 cent", "color": "brown", "symbol": "/", "material": [ "wood" ], @@ -74,7 +74,7 @@ "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "neutral" }, "flags": [ "SPEAR", "REACH_ATTACK", "NPC_THROWN", "SHEATH_SPEAR" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 400, + "price": "4 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 4, "stab": 18 } }, @@ -91,7 +91,7 @@ "name": { "str": "sharpened spear shaft" }, "description": "You've gone through the effort of making a proper spear shaft, but instead of attaching something sharp to the end you just whittled a point into the wood. The peak of pointy stick technology.", "weight": "1000 g", - "price_postapoc": 50, + "price_postapoc": "50 cent", "color": "brown", "symbol": "/", "looks_like": "spear_wood", @@ -102,7 +102,7 @@ "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "flags": [ "SPEAR", "REACH_ATTACK", "NPC_THROWN", "SHEATH_SPEAR" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 4000, + "price": "40 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 4, "stab": 18 } }, @@ -115,8 +115,8 @@ "weight": "3013 g", "volume": "3250 ml", "longest_side": "180 cm", - "price": 16000, - "price_postapoc": 50, + "price": "160 USD", + "price_postapoc": "50 cent", "to_hit": { "grip": "solid", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "steel", "wood" ], "symbol": "/", @@ -136,8 +136,8 @@ "weight": "1800 g", "volume": "3 L", "longest_side": "180 cm", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "solid", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "steel", "wood" ], "symbol": "/", @@ -154,7 +154,7 @@ "copy-from": "makeshift_halberd", "name": { "str": "makeshift glaive" }, "description": "A stout tree branch that has been carefully split and reinforced. At the split point, a sharp blade has been bolted into place and reinforced with layers of sturdy wrapped bindings.", - "price_postapoc": 400, + "price_postapoc": "4 USD", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", -28 ] ], "delete": { "flags": [ "FRAGILE_MELEE" ] } }, @@ -167,8 +167,8 @@ "weight": "1600 g", "volume": "1750 ml", "longest_side": "180 cm", - "price": 400, - "price_postapoc": 50, + "price": "4 USD", + "price_postapoc": "50 cent", "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "wood", "iron" ], "symbol": "/", @@ -186,8 +186,8 @@ "name": { "str": "simple knife spear" }, "copy-from": "spear_knife_superior", "description": "A flimsy pole made of wood with a knife bound to the end. It's long enough to slice from a distance, but the knife isn't that well attached. You could take a bit more time to carefully split the shaft and attach the knife blade more permanently.", - "price": 700, - "price_postapoc": 150, + "price": "7 USD", + "price_postapoc": "1 USD 50 cent", "qualities": [ [ "CUT", 1 ], [ "COOK", 1 ], [ "BUTCHER", -42 ] ], "extend": { "flags": [ "FRAGILE_MELEE" ] } }, @@ -200,8 +200,8 @@ "weight": "1600 g", "volume": "1750 ml", "longest_side": "180 cm", - "price": 12000, - "price_postapoc": 500, + "price": "120 USD", + "price_postapoc": "5 USD", "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "wood", "iron" ], "symbol": "/", @@ -219,7 +219,7 @@ "name": { "str": "knife spear" }, "description": "A stout wooden pole with the blade of a knife bolted into place at the end. The shape of a knife blade isn't ideal for a spear, but it's still very sharp and effective.", "weight": "1500 g", - "price_postapoc": 3000, + "price_postapoc": "30 USD", "color": "light_gray", "symbol": "/", "looks_like": "spear_steel", @@ -230,7 +230,7 @@ "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "flags": [ "DURABLE_MELEE", "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 16000, + "price": "160 USD", "qualities": [ [ "CUT", 1 ], [ "COOK", 1 ], [ "BUTCHER", -28 ] ], "melee_damage": { "bash": 4, "stab": 26 } }, @@ -243,8 +243,8 @@ "weight": "1600 g", "volume": "1750 ml", "longest_side": "180 cm", - "price": 1400, - "price_postapoc": 750, + "price": "14 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "wood", "iron" ], "symbol": "/", @@ -262,7 +262,7 @@ "name": { "str": "crude steel spear" }, "description": "A stout wooden pole with a misshapen metal spike seated into the end and bolted into place.", "weight": "1500 g", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "color": "light_gray", "symbol": "/", "looks_like": "spear_steel", @@ -273,7 +273,7 @@ "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "flags": [ "DURABLE_MELEE", "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 16000, + "price": "160 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 4, "stab": 24 } }, @@ -284,7 +284,7 @@ "description": "A wooden pole with three spikes tied to it. It's specialized for catching weapons, and not intended for extended use in combat.", "weight": "1650 g", "//": "Block 2 until we re-implement defensive-disarm, I'm afraid.", - "price_postapoc": 750, + "price_postapoc": "7 USD 50 cent", "color": "brown", "symbol": "/", "material": [ "wood", "steel" ], @@ -294,7 +294,7 @@ "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "flags": [ "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "FRAGILE_MELEE", "SHEATH_SPEAR" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 4900, + "price": "49 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 6, "stab": 18 } }, @@ -304,7 +304,7 @@ "name": { "str": "copper spear" }, "description": "A stout wooden pole with a spearhead worked from copper.", "weight": "1500 g", - "price_postapoc": 3000, + "price_postapoc": "30 USD", "color": "light_red", "symbol": "/", "material": [ "copper", "wood" ], @@ -314,7 +314,7 @@ "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "flags": [ "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 1400, + "price": "14 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 4, "stab": 28 } }, @@ -324,7 +324,7 @@ "name": { "str": "steel spear" }, "description": "A stout wooden pole with a hand-forged steel spearhead.", "weight": "1500 g", - "price_postapoc": 5500, + "price_postapoc": "55 USD", "color": "light_gray", "symbol": "/", "material": [ "steel", "wood" ], @@ -334,7 +334,7 @@ "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "flags": [ "DURABLE_MELEE", "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 16000, + "price": "160 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 6, "stab": 30 } }, @@ -350,8 +350,8 @@ "longest_side": "60 cm", "weight": "585 g", "to_hit": { "grip": "solid", "length": "short", "surface": "point", "balance": "neutral" }, - "price": 200, - "price_postapoc": 10, + "price": "2 USD", + "price_postapoc": "10 cent", "flags": [ "SPEAR" ], "weapon_category": [ "FENCING_WEAPONRY" ], "techniques": [ "WBLOCK_1" ], @@ -364,7 +364,7 @@ "name": { "str": "basic pipe spear" }, "description": "Three pipes tightly fit together with one end cut down to a point.", "weight": "1800 g", - "price_postapoc": 150, + "price_postapoc": "1 USD 50 cent", "color": "light_gray", "looks_like": "spear_pipe", "symbol": "/", @@ -375,7 +375,7 @@ "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "neutral" }, "flags": [ "SPEAR", "REACH_ATTACK", "SHEATH_SPEAR" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 8000, + "price": "80 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 6, "stab": 18 } }, @@ -385,7 +385,7 @@ "name": { "str": "pipe spear" }, "description": "Three pipes tightly fit together with some wrappings for a handle around one end and a sharp tip on the other.", "weight": "2122 g", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "color": "light_gray", "symbol": "/", "material": [ "steel" ], @@ -395,7 +395,7 @@ "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "neutral" }, "flags": [ "SPEAR", "REACH_ATTACK", "SHEATH_SPEAR" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 8000, + "price": "80 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 7, "stab": 24 } }, @@ -406,8 +406,8 @@ "color": "dark_gray", "name": { "str": "pointed rebar" }, "description": "A rod of rebar that's been crudely hammered into a point.", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "weight": "1233 g", "volume": "157 ml", @@ -426,8 +426,8 @@ "color": "dark_gray", "name": { "str": "sharpened rebar" }, "description": "A rod of rebar that's been cut and sharpened to a point.", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "weight": "1100 g", "volume": "150 ml", @@ -446,8 +446,8 @@ "color": "dark_gray", "name": { "str": "rebar spear" }, "description": "Two rods of rebar welded together with a pointed tip.", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "weight": "2600 g", "volume": "450 ml", @@ -465,7 +465,7 @@ "name": { "str_sp": "qiang" }, "description": "An ancient Chinese spear, typically with a tassel just below the spearhead and larger than most European spears. One of the four major weapons in folklore, alongside the dao sabre, jian sword, and gun staff.", "weight": "2200 g", - "price_postapoc": 5500, + "price_postapoc": "55 USD", "color": "light_gray", "symbol": "/", "looks_like": "spear_steel", @@ -476,7 +476,7 @@ "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "flags": [ "DURABLE_MELEE", "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR", "POLEARM" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 80000, + "price": "800 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 8, "stab": 43 } }, @@ -487,7 +487,7 @@ "color": "light_gray", "name": { "str": "halberd" }, "description": "A versatile polearm with an axe blade, a spike, and other fun things attached to a long, sturdy stick.", - "price": 50000, + "price": "500 USD", "material": [ "wood", "steel" ], "ascii_picture": "halberd", "flags": [ "DURABLE_MELEE", "REACH_ATTACK", "NONCONDUCTIVE", "POLEARM", "SHEATH_SPEAR", "ALWAYS_TWOHAND" ], @@ -497,7 +497,7 @@ "volume": "3750 ml", "longest_side": "180 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, - "price_postapoc": 10000, + "price_postapoc": "100 USD", "qualities": [ [ "COOK", 1 ], [ "BUTCHER", -70 ] ], "category": "weapons", "melee_damage": { "bash": 15, "cut": 49 } @@ -514,8 +514,8 @@ "material": [ "aluminum", "wood" ], "weight": "1644 g", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, - "price": 5000, - "price_postapoc": 500 + "price": "50 USD", + "price_postapoc": "5 USD" }, { "id": "glaive", @@ -524,7 +524,7 @@ "color": "light_gray", "name": { "str": "glaive" }, "description": "A sturdy polearm with a sizable single-edged blade on the end.", - "price": 50000, + "price": "500 USD", "material": [ "steel", "wood" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", -28 ] ], "flags": [ "DURABLE_MELEE", "REACH_ATTACK", "NONCONDUCTIVE", "POLEARM", "SHEATH_SPEAR", "ALWAYS_TWOHAND" ], @@ -534,7 +534,7 @@ "volume": "2500 ml", "longest_side": "180 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, - "price_postapoc": 8000, + "price_postapoc": "80 USD", "melee_damage": { "bash": 10, "cut": 40 } }, { @@ -553,8 +553,8 @@ "qualities": [ [ "CUT", 1 ], [ "BUTCHER", -24 ] ], "flags": [ "DURABLE_MELEE", "REACH_ATTACK", "NONCONDUCTIVE", "POLEARM", "SHEATH_SPEAR", "ALWAYS_TWOHAND" ], "weapon_category": [ "POLEARMS" ], - "price": 80000, - "price_postapoc": 9500, + "price": "800 USD", + "price_postapoc": "95 USD", "category": "weapons", "melee_damage": { "bash": 5, "cut": 41 } }, @@ -567,8 +567,8 @@ "proportional": { "melee_damage": { "bash": 4.14, "cut": 0.25 } }, "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "budget_steel", "wood" ], - "price": 8000, - "price_postapoc": 1500 + "price": "80 USD", + "price_postapoc": "15 USD" }, { "id": "naginata_fake", @@ -582,8 +582,8 @@ "material": [ "aluminum", "wood" ], "weight": "1400 g", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, - "price": 8000, - "price_postapoc": 500 + "price": "80 USD", + "price_postapoc": "5 USD" }, { "type": "GENERIC", @@ -601,8 +601,8 @@ "flags": [ "POLEARM", "REACH_ATTACK", "SHEATH_SPEAR" ], "weapon_category": [ "HOOKING_WEAPONRY", "POLEARMS" ], "//": "Description says it can slash. STAB currently doesn't slash, but at least it doesn't give the spear bonus", - "price": 8000, - "price_postapoc": 4500, + "price": "80 USD", + "price_postapoc": "45 USD", "qualities": [ [ "COOK", 1 ], [ "CUT", 1 ], [ "BUTCHER", -24 ] ], "melee_damage": { "bash": 4, "cut": 36 } }, @@ -622,8 +622,8 @@ "thrown_damage": [ { "damage_type": "bash", "amount": 5 }, { "damage_type": "stab", "amount": 11 } ], "flags": [ "SPEAR", "SHEATH_SPEAR", "JAVELIN" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "stab": 11 } }, @@ -643,8 +643,8 @@ "thrown_damage": [ { "damage_type": "bash", "amount": 5 }, { "damage_type": "stab", "amount": 17 } ], "flags": [ "SPEAR", "NONCONDUCTIVE", "SHEATH_SPEAR", "JAVELIN" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 9000, - "price_postapoc": 500, + "price": "90 USD", + "price_postapoc": "5 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 5, "stab": 19 } }, @@ -657,8 +657,8 @@ "weight": "2300 g", "volume": "3500 ml", "longest_side": "300 cm", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "wood" ], "symbol": "/", @@ -679,8 +679,8 @@ "weight": "2500 g", "volume": "3500 ml", "longest_side": "300 cm", - "price": 15000, - "price_postapoc": 1000, + "price": "150 USD", + "price_postapoc": "10 USD", "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "copper", "wood" ], "symbol": "/", @@ -700,8 +700,8 @@ "weight": "2500 g", "volume": "3500 ml", "longest_side": "300 cm", - "price": 40000, - "price_postapoc": 5000, + "price": "400 USD", + "price_postapoc": "50 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "steel", "wood" ], "symbol": "/", @@ -725,8 +725,8 @@ "material": [ "aluminum", "wood" ], "weight": "2000 g", "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, - "price": 4000, - "price_postapoc": 500 + "price": "40 USD", + "price_postapoc": "5 USD" }, { "id": "pike_inferior", @@ -737,8 +737,8 @@ "proportional": { "melee_damage": { "bash": 2.7, "stab": 0.25 } }, "delete": { "flags": [ "DURABLE_MELEE" ] }, "material": [ "budget_steel", "wood" ], - "price": 40000, - "price_postapoc": 1250 + "price": "400 USD", + "price_postapoc": "12 USD 50 cent" }, { "type": "GENERIC", @@ -748,8 +748,8 @@ "weight": "3013 g", "volume": "3250 ml", "longest_side": "150 cm", - "price": 16000, - "price_postapoc": 2500, + "price": "160 USD", + "price_postapoc": "25 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "material": [ "steel", "wood" ], "symbol": "/", @@ -768,8 +768,8 @@ "weight": "2200 g", "volume": "3 L", "longest_side": "250 cm", - "price": 10000, - "price_postapoc": 3500, + "price": "100 USD", + "price_postapoc": "35 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "bronze", "wood" ], "symbol": "/", @@ -788,8 +788,8 @@ "weight": "1500 g", "volume": "1350 ml", "longest_side": "180 cm", - "price": 9000, - "price_postapoc": 2500, + "price": "90 USD", + "price_postapoc": "25 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "material": [ "bronze", "wood" ], "symbol": "/", @@ -808,7 +808,7 @@ "color": "light_gray", "name": { "str": "poleaxe" }, "description": "A polearm with an axe head, a small hammer on the back, and a short dagger-like spike on top. It's less heavy than most polearms and has a smaller head, making it slightly quicker.", - "price": 40000, + "price": "400 USD", "material": [ "wood", "steel" ], "ascii_picture": "halberd", "flags": [ "DURABLE_MELEE", "REACH_ATTACK", "NONCONDUCTIVE", "POLEARM", "SHEATH_SPEAR", "ALWAYS_TWOHAND" ], @@ -818,7 +818,7 @@ "volume": "3000 ml", "longest_side": "160 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, - "price_postapoc": 5000, + "price_postapoc": "50 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 28, "cut": 31 } }, @@ -831,8 +831,8 @@ "weight": "3175 g", "volume": "3750 ml", "longest_side": "180 cm", - "price": 50000, - "price_postapoc": 3500, + "price": "500 USD", + "price_postapoc": "35 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "material": [ "wood", "bronze" ], "symbol": "/", @@ -850,8 +850,8 @@ "weight": "1500 g", "volume": "1350 ml", "longest_side": "180 cm", - "price": 1300, - "price_postapoc": 50, + "price": "13 USD", + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "material": [ "wood", "stone" ], "ascii_picture": "spear_stone", @@ -871,8 +871,8 @@ "weight": "1600 g", "volume": "1750 ml", "longest_side": "180 cm", - "price": 1300, - "price_postapoc": 50, + "price": "13 USD", + "price_postapoc": "50 cent", "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "wood", "stone" ], "ascii_picture": "spear_stone", @@ -892,8 +892,8 @@ "description": "This is a long polearm with an oar-like oval head covered with razors. Its shape make it suitable for both thrusting and slashing. It resembles the Mesoamerican Tepoztopili, though the shaft is not very sturdy.", "weight": "1900 g", "volume": "3 L", - "price": 1500, - "price_postapoc": 250, + "price": "15 USD", + "price_postapoc": "2 USD 50 cent", "symbol": "/", "color": "brown", "material": [ "wood" ], @@ -911,8 +911,8 @@ "description": "This is a long polearm with an oar-like oval head covered with glass. Its shape make it suitable for both thrusting and slashing. It resembles the Mesoamerican Tepoztopili, though the shaft is not very sturdy.", "weight": "1850 g", "volume": "3 L", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "symbol": "/", "color": "brown", "material": [ "wood", "glass" ], @@ -930,8 +930,8 @@ "description": "This is a long polearm with an oar-like oval head covered with stones. Its shape make it suitable for both thrusting and slashing. It resembles the Mesoamerican Tepoztopili, though the shaft is not very sturdy.", "weight": "2000 g", "volume": "3 L", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "symbol": "/", "color": "brown", "material": [ "wood", "stone" ], @@ -949,8 +949,8 @@ "description": "This is a redesigned version of the Mesoamerican tepoztopili. It's an elliptical piece of carved wood lined with sharp mild steel blades, firmly attached to a stout spear shaft.", "weight": "2950 g", "volume": "3 L", - "price": 4000, - "price_postapoc": 1500, + "price": "40 USD", + "price_postapoc": "15 USD", "symbol": "/", "color": "brown", "material": [ "wood", "lc_steel" ], @@ -967,8 +967,8 @@ "name": { "str": "medium steel bladed tepoztopili" }, "description": "This is a redesigned version of the Mesoamerican tepoztopili. It has an elliptical piece of carved wood lined with sharp medium steel blades, firmly attached to a stout spear shaft.", "copy-from": "lc_aztec_spear", - "price": 5000, - "price_postapoc": 1750, + "price": "50 USD", + "price_postapoc": "17 USD 50 cent", "material": [ "wood", "mc_steel" ], "melee_damage": { "bash": 18, "cut": 15 } }, @@ -978,8 +978,8 @@ "name": { "str": "high steel bladed tepoztopili" }, "description": "This is a redesigned version of the Mesoamerican tepoztopili. It has an elliptical piece of carved wood lined with sharp high steel blades, firmly attached to a stout spear shaft.", "copy-from": "lc_aztec_spear", - "price": 7000, - "price_postapoc": 2000, + "price": "70 USD", + "price_postapoc": "20 USD", "material": [ "wood", "hc_steel" ], "melee_damage": { "bash": 18, "cut": 18 } }, @@ -989,8 +989,8 @@ "name": { "str": "hardened steel bladed tepoztopili" }, "description": "This is a redesigned version of the Mesoamerican tepoztopili. It has an elliptical piece of carved wood lined with sharp hardened steel blades, firmly attached to a stout spear shaft.", "copy-from": "lc_aztec_spear", - "price": 9000, - "price_postapoc": 2500, + "price": "90 USD", + "price_postapoc": "25 USD", "material": [ "wood", "ch_steel" ], "melee_damage": { "bash": 18, "cut": 22 } }, @@ -1000,8 +1000,8 @@ "name": { "str": "tempered steel bladed tepoztopili" }, "description": "This is a redesigned version of the Mesoamerican tepoztopili. It has an elliptical piece of carved wood lined with sharp tempered steel blades, firmly attached to a stout spear shaft. It's a weapon worthy of being wielded by Huitzilopochtli himself.", "copy-from": "lc_aztec_spear", - "price": 12000, - "price_postapoc": 3000, + "price": "120 USD", + "price_postapoc": "30 USD", "material": [ "wood", "qt_steel" ], "melee_damage": { "bash": 18, "cut": 26 } } diff --git a/data/json/items/melee/swords_and_blades.json b/data/json/items/melee/swords_and_blades.json index c131fb55d66bf..ee54fcbf3b860 100644 --- a/data/json/items/melee/swords_and_blades.json +++ b/data/json/items/melee/swords_and_blades.json @@ -11,7 +11,7 @@ "weight": "1000 g", "longest_side": "100 cm", "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "neutral" }, - "price_postapoc": 50, + "price_postapoc": "50 cent", "flags": [ "BELT_CLIP" ], "weapon_category": [ "MEDIUM_SWORDS" ], "techniques": [ "WBLOCK_1" ], @@ -30,7 +30,7 @@ "weight": "1600 g", "longest_side": "130 cm", "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "uneven" }, - "price_postapoc": 50, + "price_postapoc": "50 cent", "flags": [ "BELT_CLIP", "ALWAYS_TWOHAND" ], "weapon_category": [ "GREAT_SWORDS" ], "techniques": [ "WBLOCK_1", "SWEEP", "BRUTAL" ], @@ -48,7 +48,7 @@ "weight": "1010 g", "longest_side": "100 cm", "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "neutral" }, - "price_postapoc": 100, + "price_postapoc": "1 USD", "techniques": [ "WBLOCK_1" ], "weapon_category": [ "MEDIUM_SWORDS" ], "flags": [ "FRAGILE_MELEE", "BELT_CLIP" ], @@ -66,7 +66,7 @@ "weight": "1044 g", "longest_side": "100 cm", "to_hit": { "grip": "solid", "length": "long", "surface": "line", "balance": "uneven" }, - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "flags": [ "BELT_CLIP", "NONCONDUCTIVE" ], "weapon_category": [ "MEDIUM_SWORDS" ], "qualities": [ [ "BUTCHER", -50 ] ], @@ -86,7 +86,7 @@ "weight": "1700 g", "longest_side": "130 cm", "to_hit": { "grip": "solid", "length": "long", "surface": "line", "balance": "clumsy" }, - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "flags": [ "BELT_CLIP", "ALWAYS_TWOHAND" ], "weapon_category": [ "GREAT_SWORDS" ], "qualities": [ [ "BUTCHER", -50 ] ], @@ -119,7 +119,7 @@ "weight": "1300 g", "longest_side": "100 cm", "to_hit": { "grip": "solid", "length": "long", "surface": "line", "balance": "neutral" }, - "price_postapoc": 500, + "price_postapoc": "5 USD", "flags": [ "SHEATH_SWORD" ], "weapon_category": [ "MEDIUM_SWORDS" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", -5 ] ], @@ -152,7 +152,7 @@ "weight": "2800 g", "longest_side": "150 cm", "to_hit": { "grip": "solid", "length": "long", "surface": "line", "balance": "neutral" }, - "price_postapoc": 500, + "price_postapoc": "5 USD", "flags": [ "SHEATH_SWORD" ], "weapon_category": [ "GREAT_SWORDS" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", -20 ] ], @@ -172,7 +172,7 @@ "weight": "1200 g", "longest_side": "100 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, - "price_postapoc": 500, + "price_postapoc": "5 USD", "flags": [ "SHEATH_SWORD", "DURABLE_MELEE" ], "weapon_category": [ "MEDIUM_SWORDS" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 2 ] ], @@ -188,7 +188,7 @@ "weight": "3300 g", "volume": "3250 ml", "longest_side": "150 cm", - "price_postapoc": 500, + "price_postapoc": "5 USD", "//": "It's not razor-sharp and most of the damage is coming from the heavy weight, hence the high bash-to-cut ratio.", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "budget_steel" ], @@ -210,7 +210,7 @@ "weight": "1200 g", "volume": "1750 ml", "longest_side": "100 cm", - "price_postapoc": 500, + "price_postapoc": "5 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "budget_steel" ], "symbol": "/", @@ -231,8 +231,8 @@ "weight": "100 g", "volume": "50 ml", "longest_side": "15 cm", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "neutral" }, "material": [ "steel", "plastic" ], "symbol": ";", @@ -265,8 +265,8 @@ "weight": "80 g", "volume": "40 ml", "longest_side": "10 cm", - "price": 1500, - "price_postapoc": 50, + "price": "15 USD", + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "neutral" }, "material": [ "steel", "plastic" ], "symbol": ";", @@ -285,8 +285,8 @@ "weight": "155 g", "volume": "40 ml", "longest_side": "10 cm", - "price": 2500, - "price_postapoc": 150, + "price": "25 USD", + "price_postapoc": "1 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "neutral" }, "material": [ "steel", "plastic" ], "symbol": ";", @@ -306,8 +306,8 @@ "weight": "405 g", "volume": "260 ml", "longest_side": "34 cm", - "price": 10000, - "price_postapoc": 1250, + "price": "100 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "material": [ "hc_steel", "plastic" ], "symbol": ";", @@ -377,8 +377,8 @@ "weight": "450 g", "volume": "209 ml", "longest_side": "30 cm", - "price": 10000, - "price_postapoc": 1250, + "price": "100 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "material": [ "steel", "plastic" ], "symbol": ";", @@ -436,8 +436,8 @@ "weight": "270 g", "volume": "184 ml", "longest_side": "30 cm", - "price": 10000, - "price_postapoc": 1250, + "price": "100 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "material": [ "hc_steel", "plastic" ], "symbol": ";", @@ -495,8 +495,8 @@ "weight": "121 g", "volume": "100 ml", "longest_side": "20 cm", - "price": 4000, - "price_postapoc": 750, + "price": "40 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "material": [ "steel", "leather" ], "repairs_with": [ "steel" ], @@ -516,8 +516,8 @@ "weight": "320 g", "volume": "255 ml", "longest_side": "30 cm", - "price": 7000, - "price_postapoc": 1400, + "price": "70 USD", + "price_postapoc": "14 USD", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "material": [ "hc_steel", "leather" ], "repairs_with": [ "steel" ], @@ -560,8 +560,8 @@ "weight": "422 g", "volume": "344 ml", "longest_side": "36 cm", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "material": [ { "type": "plastic", "portion": 1 }, { "type": "mc_steel", "portion": 48 } ], "repairs_with": [ "mc_steel" ], @@ -626,8 +626,8 @@ "weight": "173 g", "volume": "80 ml", "longest_side": "29 cm", - "price": 720000, - "price_postapoc": 5000, + "price": "7 kUSD 200 USD", + "price_postapoc": "50 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "point", "balance": "good" }, "material": [ "qt_steel" ], "symbol": "/", @@ -649,8 +649,8 @@ "weight": "120 g", "volume": "60 ml", "longest_side": "9 cm", - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "to_hit": { "grip": "solid", "length": "hand", "surface": "point", "balance": "neutral" }, "material": [ "steel", "plastic" ], "symbol": ";", @@ -691,8 +691,8 @@ "weight": "530 g", "volume": "206 ml", "longest_side": "29 cm", - "price": 11000, - "price_postapoc": 1250, + "price": "110 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "material": [ { "type": "wood", "portion": 0.85 }, { "type": "mc_steel", "portion": 48 } ], "repairs_with": [ "mc_steel" ], @@ -745,8 +745,8 @@ "weight": "575 g", "volume": "260 ml", "longest_side": "7 cm", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "to_hit": { "grip": "solid", "length": "hand", "surface": "point", "balance": "neutral" }, "material": [ "steel" ], "symbol": ";", @@ -767,8 +767,8 @@ "//": "literally 75% of a bone.", "volume": "188 ml", "longest_side": "20 cm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": { "grip": "solid", "length": "hand", "surface": "point", "balance": "neutral" }, "material": [ "bone" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 12 ] ], @@ -784,7 +784,7 @@ "weight": "380 g", "volume": "187 ml", "longest_side": "36 cm", - "price": 19590, + "price": "195 USD 90 cent", "to_hit": { "grip": "weapon", "length": "short", "surface": "point", "balance": "good" }, "material": [ "iron" ], "symbol": ";", @@ -803,8 +803,8 @@ "weight": "581 g", "volume": "2 L", "longest_side": "50 cm", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "solid", "length": "short", "surface": "line", "balance": "neutral" }, "material": [ "steel" ], "symbol": "/", @@ -827,8 +827,8 @@ "longest_side": "61 cm", "symbol": "/", "color": "dark_gray", - "price": 2800, - "price_postapoc": 1500, + "price": "28 USD", + "price_postapoc": "15 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ { "type": "wood", "portion": 0.85 }, { "type": "steel", "portion": 80 } ], "repairs_with": [ "steel" ], @@ -848,7 +848,7 @@ "relative": { "melee_damage": { "bash": 1, "cut": 2 }, "qualities": [ [ "BUTCHER", -5 ] ], - "price_postapoc": 1000, + "price_postapoc": "10 USD", "weight": "27 g" } }, @@ -879,7 +879,7 @@ "looks_like": "survivor_machete", "replace_materials": { "steel": "qt_steel", "wood": "kevlar" }, "proportional": { "price_postapoc": 1.15, "price": 1.15 }, - "relative": { "melee_damage": { "cut": 5 }, "qualities": [ [ "BUTCHER", 4 ] ], "price_postapoc": 2000 } + "relative": { "melee_damage": { "cut": 5 }, "qualities": [ [ "BUTCHER", 4 ] ], "price_postapoc": "20 USD" } }, { "id": "machete_gimmick", @@ -891,8 +891,8 @@ "color": "green", "weight": "386 g", "volume": "276 ml", - "price": 2300, - "price_postapoc": 1800, + "price": "23 USD", + "price_postapoc": "18 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "material": [ "budget_steel" ], "qualities": [ [ "CUT", 2 ], [ "BUTCHER", 8 ], [ "SAW_W", 1 ], [ "DIG", 1 ], [ "PRY", 1 ] ], @@ -931,8 +931,8 @@ "weight": "1 kg", "volume": "1250 ml", "longest_side": "100 cm", - "price": 97000, - "price_postapoc": 4000, + "price": "970 USD", + "price_postapoc": "40 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 192 } ], "repairs_with": [ "mc_steel" ], @@ -996,8 +996,8 @@ "longest_side": "50 cm", "symbol": "/", "color": "dark_gray", - "price": 9000, - "price_postapoc": 500, + "price": "90 USD", + "price_postapoc": "5 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "point", "balance": "good" }, "material": [ "steel" ], "//": "Should be split into a preexisting iron version and a craftable steel version", @@ -1047,8 +1047,8 @@ "weight": "454 g", "volume": "450 ml", "longest_side": "46 cm", - "price": 8000, - "price_postapoc": 1250, + "price": "80 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ { "type": "wood", "portion": 0.85 }, { "type": "mc_steel", "portion": 80 } ], "repairs_with": [ "mc_steel" ], @@ -1124,8 +1124,8 @@ "longest_side": "90 cm", "symbol": "/", "color": "light_gray", - "price": 100000, - "price_postapoc": 4000, + "price": "1 kUSD", + "price_postapoc": "40 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 96 } ], "repairs_with": [ "mc_steel" ], "flags": [ "SHEATH_SWORD", "CONDUCTIVE", "DURABLE_MELEE" ], @@ -1224,8 +1224,8 @@ "looks_like": "scimitar", "symbol": "/", "color": "light_gray", - "price": 93000, - "price_postapoc": 3500, + "price": "930 USD", + "price_postapoc": "35 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 160 } ], "repairs_with": [ "mc_steel" ], "flags": [ "SHEATH_SWORD", "CONDUCTIVE", "DURABLE_MELEE" ], @@ -1318,8 +1318,8 @@ "symbol": "/", "color": "light_gray", "looks_like": "estoc", - "price": 135000, - "price_postapoc": 5000, + "price": "1 kUSD 350 USD", + "price_postapoc": "50 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 112 } ], "repairs_with": [ "mc_steel" ], "techniques": [ "WBLOCK_2", "PRECISE" ], @@ -1414,8 +1414,8 @@ "symbol": "/", "color": "light_gray", "looks_like": "longsword", - "price": 130000, - "price_postapoc": 6000, + "price": "1 kUSD 300 USD", + "price_postapoc": "60 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 112 } ], "repairs_with": [ "mc_steel" ], "flags": [ "DURABLE_MELEE", "CONDUCTIVE", "SHEATH_SWORD" ], @@ -1508,8 +1508,8 @@ "symbol": "/", "color": "light_gray", "looks_like": "arming_sword", - "price": 100000, - "price_postapoc": 4500, + "price": "1 kUSD", + "price_postapoc": "45 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 128 } ], "repairs_with": [ "mc_steel" ], "flags": [ "DURABLE_MELEE", "CONDUCTIVE", "SHEATH_SWORD" ], @@ -1579,8 +1579,8 @@ "weight": "800 g", "volume": "2 L", "longest_side": "50 cm", - "price": 12000, - "price_postapoc": 2500, + "price": "120 USD", + "price_postapoc": "25 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ "bronze" ], "symbol": "!", @@ -1600,8 +1600,8 @@ "weight": "750 g", "volume": "1750 ml", "longest_side": "50 cm", - "price": 12000, - "price_postapoc": 3000, + "price": "120 USD", + "price_postapoc": "30 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ "bronze" ], "symbol": "/", @@ -1621,8 +1621,8 @@ "weight": "850 g", "volume": "1750 ml", "longest_side": "95 cm", - "price": 12500, - "price_postapoc": 3500, + "price": "125 USD", + "price_postapoc": "35 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "material": [ "bronze" ], "symbol": "/", @@ -1642,8 +1642,8 @@ "weight": "800 g", "volume": "2 L", "longest_side": "50 cm", - "price": 11000, - "price_postapoc": 2000, + "price": "110 USD", + "price_postapoc": "20 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "neutral" }, "material": [ "bronze" ], "symbol": "!", @@ -1665,8 +1665,8 @@ "weight": "923 g", "volume": "293 ml", "longest_side": "56 cm", - "price": 25000, - "price_postapoc": 4000, + "price": "250 USD", + "price_postapoc": "40 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ "steel" ], "symbol": "/", @@ -1717,8 +1717,8 @@ "longest_side": "53 cm", "symbol": "/", "color": "dark_gray", - "price": 18000, - "price_postapoc": 1500, + "price": "180 USD", + "price_postapoc": "15 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "point", "balance": "good" }, "material": [ { "type": "leather", "portion": 1.1 }, { "type": "steel", "portion": 48 } ], "repairs_with": [ "steel" ], @@ -1780,8 +1780,8 @@ "symbol": "/", "color": "light_gray", "looks_like": "wakizashi", - "price": 17800, - "price_postapoc": 2750, + "price": "178 USD", + "price_postapoc": "27 USD 50 cent", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 64 } ], "repairs_with": [ "mc_steel" ], "flags": [ "DURABLE_MELEE", "CONDUCTIVE", "SHEATH_SWORD" ], @@ -1874,8 +1874,8 @@ "symbol": "/", "color": "light_gray", "looks_like": "zweihander", - "price": 160000, - "price_postapoc": 9500, + "price": "1 kUSD 600 USD", + "price_postapoc": "95 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 160 } ], "repairs_with": [ "mc_steel" ], "flags": [ "ALWAYS_TWOHAND", "DURABLE_MELEE", "CONDUCTIVE", "SHEATH_SWORD", "REACH_ATTACK" ], @@ -1945,8 +1945,8 @@ "weight": "142 g", "volume": "95 ml", "longest_side": "22 cm", - "price": 6400, - "price_postapoc": 50, + "price": "64 USD", + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "material": [ "steel" ], "symbol": "/", @@ -1965,8 +1965,8 @@ "weight": "374 g", "volume": "113 ml", "longest_side": "20 cm", - "price": 1800, - "price_postapoc": 250, + "price": "18 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "material": [ { "type": "leather", "portion": 1.1 }, { "type": "steel", "portion": 32 } ], "repairs_with": [ "steel" ], @@ -2020,8 +2020,8 @@ "symbol": "/", "color": "light_gray", "looks_like": "nodachi", - "price": 150000, - "price_postapoc": 12000, + "price": "1 kUSD 500 USD", + "price_postapoc": "120 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 128 } ], "repairs_with": [ "mc_steel" ], "flags": [ "ALWAYS_TWOHAND", "DURABLE_MELEE", "SHEATH_SWORD", "CONDUCTIVE" ], @@ -2090,8 +2090,8 @@ "color": "light_gray", "name": { "str": "fencing foil" }, "description": "A weapon used for fencing, the most noble of all sports. Unfortunately, a fencing foil is rather useless as a weapon due to its flexible shaft and dull tip.", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "450 g", "volume": "1250 ml", @@ -2119,7 +2119,7 @@ "description": "The modifications made to this fencing foil may not be sporting, but they might give you an edge in this final competition. Extra effort has been made to insulate the grip and a high voltage stun gun has been attached to the guard, wired through the electronic scoring circuit to the tip. Thrusting the sharpened tip into a foe and activating the momentary switch will deliver a painful electric shock.", "ammo": [ "battery" ], "charges_per_use": 2, - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", "use_action": [ "TAZER" ], "extend": { "flags": [ "NONCONDUCTIVE", "WATER_BREAK" ] }, "relative": { "volume": "250 ml", "weight": "151 g" }, @@ -2139,8 +2139,8 @@ "color": "light_gray", "name": { "str": "fencing épée" }, "description": "A weapon used for fencing, the most noble of all sports. While not designed for combat the épée is the heaviest and stiffest of the fencing weapons, and therefore perhaps still useful in your situation.", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "650 g", "volume": "1250 ml", @@ -2169,7 +2169,7 @@ "name": { "str": "electrified épée" }, "description": "The modifications made to this fencing épée may not be sporting, but they might give you an edge in this final competition. Extra effort has been made to insulate the grip and a high voltage stun gun has been attached to the guard, wired through the electronic scoring circuit to the tip. Thrusting the sharpened tip into a foe and activating the momentary switch will deliver a painful electric shock.", "ammo": [ "battery" ], - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", "charges_per_use": 2, "use_action": [ "TAZER" ], "extend": { "flags": [ "NONCONDUCTIVE", "WATER_BREAK" ] }, @@ -2190,8 +2190,8 @@ "color": "light_gray", "name": { "str": "fencing saber" }, "description": "A weapon used for fencing, the most noble of all sports. Not designed for combat the saber at least bears an edge and so outperforms the foil, though still lacks the weight of the épée.", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "400 g", "volume": "1250 ml", @@ -2220,7 +2220,7 @@ "name": { "str": "electrified saber" }, "description": "The modifications made to this fencing saber may not be sporting, but they might give you an edge in this final competition. Extra effort has been made to insulate the grip and a high voltage stun gun has been attached to the guard, wired to the tip along the saber's groove. Thrusting the sharpened tip into a foe and activating the momentary switch will deliver a painful electric shock.", "ammo": [ "battery" ], - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", "charges_per_use": 2, "use_action": [ "TAZER" ], "extend": { "flags": [ "NONCONDUCTIVE", "WATER_BREAK" ] }, @@ -2241,8 +2241,8 @@ "color": "brown", "name": { "str": "hollow cane" }, "description": "A cane designed to conceal a blade. This was a popular fashion accessory for the wealthy during the 18th and 19th centuries.", - "price": 2000, - "price_postapoc": 750, + "price": "20 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "wood" ], "weight": "200 g", "volume": "1532 ml", @@ -2273,8 +2273,8 @@ "color": "light_gray", "name": { "str": "sword cane" }, "description": "A sword with a thin blade designed to be hidden inside a hollow cane.", - "price": 2000, - "price_postapoc": 3000, + "price": "20 USD", + "price_postapoc": "30 USD", "material": [ "steel" ], "weight": "650 g", "volume": "1200 ml", @@ -2318,8 +2318,8 @@ "symbol": "/", "color": "light_gray", "looks_like": "broadsword", - "price": 120000, - "price_postapoc": 5000, + "price": "1 kUSD 200 USD", + "price_postapoc": "50 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 112 } ], "repairs_with": [ "mc_steel" ], "flags": [ "DURABLE_MELEE", "CONDUCTIVE", "SHEATH_SWORD" ], @@ -2412,8 +2412,8 @@ "symbol": "/", "color": "light_gray", "looks_like": "rapier", - "price": 98000, - "price_postapoc": 2500, + "price": "980 USD", + "price_postapoc": "25 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 112 } ], "repairs_with": [ "mc_steel" ], "flags": [ "DURABLE_MELEE", "CONDUCTIVE", "SHEATH_SWORD" ], @@ -2497,8 +2497,8 @@ "ascii_picture": "katana", "color": "light_gray", "looks_like": "katana", - "price": 98000, - "price_postapoc": 4500, + "price": "980 USD", + "price_postapoc": "45 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 96 } ], "repairs_with": [ "mc_steel" ], "flags": [ "DURABLE_MELEE", "CONDUCTIVE", "SHEATH_SWORD" ], @@ -2583,8 +2583,8 @@ "name": { "str": "pair of butterfly swords", "str_pl": "pairs of butterfly swords" }, "description": "A matched pair of traditional Shaolin butterfly swords. They are about the same size as machetes, but have hand guards and wider blades.", "//": "basically 2x the weight, 1.3x the damage, 2.5x the resources of a single machete to cover the fact that it's two weapons, each with a hand guard", - "price": 50000, - "price_postapoc": 6000, + "price": "500 USD", + "price_postapoc": "60 USD", "material": [ "steel" ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD", "ALWAYS_TWOHAND" ], "weapon_category": [ "SHORT_SWORDS" ], @@ -2629,8 +2629,8 @@ "symbol": "/", "color": "dark_gray", "looks_like": "cutlass", - "price": 96000, - "price_postapoc": 3500, + "price": "960 USD", + "price_postapoc": "35 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 144 } ], "repairs_with": [ "mc_steel" ], "flags": [ "DURABLE_MELEE", "CONDUCTIVE", "SHEATH_SWORD" ], @@ -2723,8 +2723,8 @@ "symbol": "/", "color": "light_gray", "looks_like": "scimitar", - "price": 100000, - "price_postapoc": 4500, + "price": "1 kUSD", + "price_postapoc": "45 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 96 } ], "repairs_with": [ "mc_steel" ], "flags": [ "DURABLE_MELEE", "CONDUCTIVE", "SHEATH_SWORD", "ALWAYS_TWOHAND" ], @@ -2796,8 +2796,8 @@ "symbol": "/", "color": "light_gray", "looks_like": "katana", - "price": 100000, - "price_postapoc": 4500, + "price": "1 kUSD", + "price_postapoc": "45 USD", "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 80 } ], "repairs_with": [ "mc_steel" ], "flags": [ "DURABLE_MELEE", "NONCONDUCTIVE", "SHEATH_SWORD" ], @@ -2845,8 +2845,8 @@ "color": "brown", "name": { "str": "lajatang" }, "description": "An impractical exotic weapon comprised of a long pole of wood with curved blades on each end.", - "price": 12000, - "price_postapoc": 1250, + "price": "120 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "wood", "iron" ], "ascii_picture": "lajatang", "techniques": [ "WBLOCK_1", "SPIN" ], @@ -2868,8 +2868,8 @@ "weight": "5122 g", "volume": "2250 ml", "longest_side": "70 cm", - "price": 25000, - "price_postapoc": 3000, + "price": "250 USD", + "price_postapoc": "30 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "material": [ "steel", "plastic" ], "symbol": "/", @@ -2950,8 +2950,8 @@ "weight": "5122 g", "volume": "2250 ml", "longest_side": "70 cm", - "price": 25000, - "price_postapoc": 3000, + "price": "250 USD", + "price_postapoc": "30 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "material": [ "steel", "plastic" ], "symbol": "/", @@ -3036,8 +3036,8 @@ "name": { "str": "punch dagger" }, "description": "A short, sharp double-edged dagger made to be gripped in the palm, with the blade protruding between the fingers.", "weight": "224 g", - "price": 9000, - "price_postapoc": 50, + "price": "90 USD", + "price_postapoc": "50 cent", "color": "dark_gray", "symbol": "{", "material": [ "steel" ], @@ -3060,7 +3060,7 @@ "volume": "500 ml", "weight": "1150 g", "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "neutral" }, - "price_postapoc": 500, + "price_postapoc": "5 USD", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 8 ] ], "flags": [ "ALLOWS_BODY_BLOCK" ], "techniques": [ "WBLOCK_1" ], @@ -3080,8 +3080,8 @@ "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "neutral" }, "flags": [ "DURABLE_MELEE", "ALLOWS_BODY_BLOCK" ], "weapon_category": [ "CLAWS" ], - "price": 20000, - "price_postapoc": 250, + "price": "200 USD", + "price_postapoc": "2 USD 50 cent", "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 14 ] ], "melee_damage": { "bash": 2, "cut": 15 } }, @@ -3094,8 +3094,8 @@ "weight": "500 g", "volume": "300 ml", "longest_side": "25 cm", - "price": 4281, - "price_postapoc": 3000, + "price": "42 USD 81 cent", + "price_postapoc": "30 USD", "melee_damage": { "bash": 7, "stab": 12 }, "to_hit": { "grip": "solid", "length": "short", "surface": "point", "balance": "neutral" }, "//": "VERY not intended for usage unmounted.", @@ -3145,8 +3145,8 @@ "weight": "700 g", "volume": "380 ml", "longest_side": "514 mm", - "price": 9200, - "price_postapoc": 3000, + "price": "92 USD", + "price_postapoc": "30 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "good" }, "material": [ "steel" ], "symbol": "/", @@ -3210,8 +3210,8 @@ "symbol": "/", "color": "dark_gray", "looks_like": "scimitar", - "price": 97000, - "price_postapoc": 4000, + "price": "970 USD", + "price_postapoc": "40 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 144 } ], "repairs_with": [ "mc_steel" ], @@ -3275,8 +3275,8 @@ "symbol": "/", "color": "dark_gray", "looks_like": "scimitar", - "price": 97000, - "price_postapoc": 4000, + "price": "970 USD", + "price_postapoc": "40 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "material": [ { "type": "leather", "portion": 1.1 }, { "type": "mc_steel", "portion": 144 } ], "repairs_with": [ "mc_steel" ], diff --git a/data/json/items/melee/unarmed_weapons.json b/data/json/items/melee/unarmed_weapons.json index 7ed5f9f22fafb..28d2b7abea3bb 100644 --- a/data/json/items/melee/unarmed_weapons.json +++ b/data/json/items/melee/unarmed_weapons.json @@ -9,7 +9,7 @@ "material": [ "leather", "steel" ], "volume": "100 ml", "weight": "300 g", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "neutral" }, "flags": [ "DURABLE_MELEE", "NONCONDUCTIVE" ], "material_thickness": 1, @@ -70,7 +70,7 @@ "material": [ "brass" ], "weight": "320 g", "volume": "250 ml", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "neutral" }, "flags": [ "DURABLE_MELEE" ], "material_thickness": 2, @@ -110,7 +110,7 @@ "material": [ "wood" ], "volume": "250 ml", "weight": "200 g", - "price_postapoc": 50, + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "line", "balance": "neutral" }, "flags": [ ], "material_thickness": 1, @@ -150,7 +150,7 @@ "material": [ "steel" ], "volume": "250 ml", "weight": "430 g", - "price_postapoc": 50, + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "neutral" }, "qualities": [ [ "HAMMER", 1 ] ], "material_thickness": 1, @@ -191,7 +191,7 @@ "material": [ "steel" ], "volume": "250 ml", "weight": "240 g", - "price_postapoc": 180, + "price_postapoc": "1 USD 80 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "neutral" }, "qualities": [ [ "HAMMER", 1 ] ], "flags": [ "DURABLE_MELEE" ], @@ -229,8 +229,8 @@ "description": "A pair of gloves with studded metal knuckles and a thin back plating.", "weight": "218 g", "volume": "250 ml", - "price": 1100, - "price_postapoc": 250, + "price": "11 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "line", "balance": "neutral" }, "material": [ "steel", "leather", "cotton" ], "symbol": "[", @@ -298,8 +298,8 @@ "description": "A pair of thick steel plates covering your proximal phalange. They are strapped to your hands with metal braces.", "weight": "500 g", "volume": "300 ml", - "price": 1100, - "price_postapoc": 250, + "price": "11 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "neutral" }, "material": [ "steel" ], "symbol": "[", @@ -340,8 +340,8 @@ "description": "A pair of metal braces, each with a single sturdy spike attached. When strapped to your hands, the spikes protrude 5 centimeters past your clenched fists.", "weight": "250 g", "volume": "300 ml", - "price": 1100, - "price_postapoc": 250, + "price": "11 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "line", "balance": "neutral" }, "material": [ "steel" ], "symbol": "[", diff --git a/data/json/items/mutagen_ingredients.json b/data/json/items/mutagen_ingredients.json index 36b7276af8df3..86a83f835f61a 100644 --- a/data/json/items/mutagen_ingredients.json +++ b/data/json/items/mutagen_ingredients.json @@ -6,8 +6,8 @@ "color": "red", "name": { "str": "abstract mutagen sample" }, "description": "This item needs a description defined, and is copied from abstract mutagen sample.", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "flesh" ], "flags": [ "NO_SALVAGE", "MUTAGEN_SAMPLE" ], "weight": "114 g", diff --git a/data/json/items/newspaper.json b/data/json/items/newspaper.json index 0376e5ebf4112..2a92ea44b0d29 100644 --- a/data/json/items/newspaper.json +++ b/data/json/items/newspaper.json @@ -8,8 +8,8 @@ "name": { "str": "flyer" }, "snippet_category": "flier", "description": "A scrap of paper.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "3 g", @@ -24,8 +24,8 @@ "name": { "str": "valentine card" }, "snippet_category": "valentine", "description": "A creased holiday card. It appears to be a Valentine's Day card from before the Cataclysm.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "3 g", @@ -40,8 +40,8 @@ "name": { "str": "survivor's note" }, "snippet_category": "note", "description": "A scrap of paper. Something's written on it, scrawled in bad handwriting.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID", "BANK_NOTE_SHAPED", "PAPER_SHAPED" ], "weight": "12 mg", @@ -56,8 +56,8 @@ "name": { "str": "child's note" }, "snippet_category": "note_child", "description": "A piece of paper. Something's written on it, scrawled in simple, messy handwriting.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID", "PAPER_SHAPED" ], "weight": "12 mg", @@ -292,8 +292,8 @@ "snippet_category": "charsheet", "description": "A Dungeons & Dragons character sheet.", "looks_like": "survnote", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID", "PAPER_SHAPED" ], "weight": "3 g", @@ -308,8 +308,8 @@ "name": { "str": "score card" }, "snippet_category": "scores", "description": "A colorfully-printed score card.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID", "CREDIT_CARD_SHAPED", "PAPER_SHAPED" ], "weight": "1 g", @@ -323,8 +323,8 @@ "color": "white", "name": { "str": "newspaper page" }, "description": "A snippet from a newspaper, celebrating the achievements of the one enshrined.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "1 g", @@ -339,8 +339,8 @@ "name": { "str": "newspaper page" }, "snippet_category": "newest_news", "description": "A single sheet of newspaper broadsheet. It is possibly one of the last issues printed before New England was overwhelmed. Most of the information is terribly trivial or out of date, but one thing catches your eye briefly.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "3 g", @@ -355,8 +355,8 @@ "name": { "str": "newspaper page" }, "snippet_category": "many_years_old_news", "description": "A single sheet of newspaper broadsheet. It seems to date from several years ago, and you have NO idea how it lasted this long. Most of the information is terribly trivial or out of date, but one thing catches your eye briefly.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "3 g", @@ -371,8 +371,8 @@ "name": { "str": "newspaper page" }, "snippet_category": "years_old_news", "description": "A single sheet of newspaper broadsheet. It seems to date from a few years ago--amazing it has lasted this long. Most of the information is terribly trivial or out of date, but one thing catches your eye briefly.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "3 g", @@ -387,8 +387,8 @@ "name": { "str": "newspaper page" }, "snippet_category": "one_year_old_news", "description": "A single sheet of newspaper broadsheet. It was printed more than a year ago. Most of the information is terribly trivial or out of date, but one thing catches your eye briefly.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "3 g", @@ -403,8 +403,8 @@ "name": { "str": "newspaper page" }, "snippet_category": "months_old_news", "description": "A single sheet of newspaper broadsheet. It was printed in the months leading up to the Cataclysm. Most of the information is terribly trivial or out of date, but one thing catches your eye briefly.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "3 g", @@ -419,8 +419,8 @@ "name": { "str": "newspaper page" }, "snippet_category": "weeks_old_news", "description": "A single sheet of newspaper broadsheet. It was printed in the weeks leading up to the Cataclysm. Most of the information is terribly trivial or out of date, but one thing catches your eye briefly.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "3 g", @@ -435,8 +435,8 @@ "name": { "str": "note" }, "snippet_category": "death_note", "description": "A scrap of paper. Something's written on it, scrawled in bad handwriting.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "looks_like": "survnote", "material": [ "paper" ], "flags": [ "TRADER_AVOID", "PAPER_SHAPED" ], @@ -466,8 +466,8 @@ "name": { "str": "missing person poster" }, "snippet_category": "missing_adult", "description": "An official poster notifying the public of a missing person, and requesting that anyone with information contact the listed phone number.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "6 g", @@ -482,8 +482,8 @@ "name": { "str": "missing child poster" }, "snippet_category": "missing_child", "description": "An official poster notifying the public of a missing child, and requesting that anyone with information contact the listed phone number.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "6 g", @@ -498,8 +498,8 @@ "name": { "str": "missing dog poster" }, "snippet_category": "missing_dog", "description": "A handmade poster notifying passersby about someone's missing dog, and requesting that anyone with information contact the listed phone number.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "6 g", @@ -514,8 +514,8 @@ "name": { "str": "missing cat poster" }, "snippet_category": "missing_cat", "description": "A handmade poster notifying passersby about someone's missing cat, and requesting that anyone with information contact the listed phone number.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "6 g", @@ -528,8 +528,8 @@ "symbol": "`", "name": { "str": "movie poster" }, "description": "Posters promoting movies that were in theaters when the Cataclysm hit.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "PAPER_SHAPED" ], "weight": "6 g", @@ -588,8 +588,8 @@ "description": "A small picture of something or somebody important to the owner, designed to be safely tucked into a wallet.", "weight": "12 mg", "volume": "1 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID", "BANK_NOTE_SHAPED" ] }, @@ -604,8 +604,8 @@ "description": "A medium picture of something that the owner wished to decorate their house with.", "weight": "600 g", "volume": "650 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper", "wood" ], "flags": [ "TRADER_AVOID" ] } diff --git a/data/json/items/ranged/archery.json b/data/json/items/ranged/archery.json index 03d46f919746b..8579165b4a69d 100644 --- a/data/json/items/ranged/archery.json +++ b/data/json/items/ranged/archery.json @@ -4,8 +4,8 @@ "id": "arrow_fire_hardened_fletched", "copy-from": "arrow_field_point_fletched", "relative": { "dispersion": 100 }, - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "name": { "str": "crude wooden arrow" }, "symbol": "=", "color": "green", @@ -24,8 +24,8 @@ "description": "A fletched wooden arrow shaft with a pointed tip.", "material": [ { "type": "wood", "portion": 81 }, { "type": "steel", "portion": 19 } ], "volume": "90 ml", - "price": 1000, - "price_postapoc": 30, + "price": "10 USD", + "price_postapoc": "30 cent", "weight": "32 g", "longest_side": "76 cm", "ammo_type": "arrow", @@ -45,8 +45,8 @@ "description": "A fletched wooden arrow shaft with a blunt rubber tip. Can stun weaker enemies.", "copy-from": "arrow_field_point_fletched", "relative": { "dispersion": 100 }, - "price": 500, - "price_postapoc": 2, + "price": "5 USD", + "price_postapoc": "2 cent", "material": [ { "type": "wood", "portion": 81 }, { "type": "rubber", "portion": 19 } ], "damage": { "damage_type": "stab", "constant_damage_multiplier": 0.2 }, "critical_multiplier": 1, @@ -61,7 +61,7 @@ "description": "A simple fletched wooden arrow shaft with a blunted tip. Useful for hunting small woodland creatures without splattering them all over the ground.", "material": [ "wood" ], "copy-from": "arrow_field_point_fletched", - "price_postapoc": 15, + "price_postapoc": "15 cent", "damage": { "damage_type": "stab", "constant_damage_multiplier": 0.5 }, "effects": [ "RECOVER_10", "NOGIB" ] }, @@ -74,7 +74,7 @@ "description": "A fletched wooden arrow shaft with a bladed tip.", "copy-from": "arrow_field_point_fletched", "relative": { "dispersion": -40 }, - "price": 2000, + "price": "20 USD", "damage": { "damage_type": "stab", "armor_penetration": 1, "constant_damage_multiplier": 1.5 }, "effects": [ "RECOVER_25" ], "melee_damage": { "bash": 2, "cut": 1 } @@ -82,7 +82,7 @@ { "type": "AMMO", "id": "arrow_heavy_fire_hardened_fletched", - "price": 300, + "price": "3 USD", "name": { "str": "simple wooden arrow" }, "symbol": "=", "color": "green", @@ -95,13 +95,13 @@ { "type": "AMMO", "id": "arrow_heavy_field_point_fletched", - "price": 1000, + "price": "10 USD", "name": { "str": "wooden small game arrow" }, "symbol": "=", "color": "green", "description": "A fletched wooden arrow shaft with a blunt tip. Useful for hunting small woodland creatures without splattering them all over the ground.", "copy-from": "arrow_field_point_fletched", - "price_postapoc": 25, + "price_postapoc": "25 cent", "damage": { "damage_type": "stab", "constant_damage_multiplier": 0.5 }, "effects": [ "RECOVER_35", "NOGIB" ] }, @@ -114,8 +114,8 @@ "description": "A simple fletched wooden arrow shaft with a makeshift arrowhead.", "material": [ "wood" ], "copy-from": "arrow_field_point_fletched", - "price": 0, - "price_postapoc": 15, + "price": "0 cent", + "price_postapoc": "15 cent", "damage": { "damage_type": "stab", "constant_damage_multiplier": 1.25 }, "show_stats": true, "effects": [ "RECOVER_8" ] @@ -128,8 +128,8 @@ "color": "green", "description": "A simple fletched wooden arrow shaft with a sharpened makeshift tip.", "copy-from": "arrow_field_point_fletched", - "price": 0, - "price_postapoc": 20, + "price": "0 cent", + "price_postapoc": "20 cent", "damage": { "damage_type": "stab", "armor_penetration": 1 }, "show_stats": true, "effects": [ "RECOVER_20" ], @@ -145,7 +145,7 @@ "material": [ { "type": "aluminum", "portion": 81 }, { "type": "steel", "portion": 19 } ], "copy-from": "arrow_field_point_fletched", "relative": { "dispersion": -75 }, - "price_postapoc": 40, + "price_postapoc": "40 cent", "damage": { "damage_type": "stab", "armor_penetration": 1, "constant_damage_multiplier": 1.5 }, "range": 2, "effects": [ "RECOVER_35" ], @@ -161,7 +161,7 @@ "material": [ { "type": "aluminum", "portion": 81 }, { "type": "steel", "portion": 19 } ], "copy-from": "arrow_field_point_fletched", "relative": { "dispersion": -75 }, - "price_postapoc": 40, + "price_postapoc": "40 cent", "damage": { "damage_type": "stab", "armor_penetration": 3 }, "range": 2, "effects": [ "RECOVER_40" ], @@ -170,7 +170,7 @@ { "type": "AMMO", "id": "arrow_metal_target", - "price": 1200, + "price": "12 USD", "name": { "str": "aluminum small game arrow" }, "symbol": "=", "color": "green", @@ -193,8 +193,8 @@ "material": [ { "type": "kevlar_rigid", "portion": 81 }, { "type": "steel", "portion": 19 } ], "copy-from": "arrow_field_point_fletched", "relative": { "dispersion": -100 }, - "price": 1600, - "price_postapoc": 50, + "price": "16 USD", + "price_postapoc": "50 cent", "damage": { "damage_type": "stab", "constant_damage_multiplier": 1.75 }, "range": 4, "effects": [ "RECOVER_30" ], @@ -203,7 +203,7 @@ { "type": "AMMO", "id": "arrow_meteor", - "price": 2000, + "price": "20 USD", "name": { "str": "emerald arrow" }, "symbol": "=", "color": "light_green", @@ -211,7 +211,7 @@ "description": "A fletched lance carved from inscrutable green stone. Impractically heavy, its difficult to imagine who or what could have fired it from a bow.", "material": [ "monolith_heavy" ], "volume": "100 ml", - "price_postapoc": 1000, + "price_postapoc": "10 USD", "weight": "27 kg", "longest_side": "105 cm", "ammo_type": "strange_arrow", @@ -233,8 +233,8 @@ "weight": "75 g", "volume": "100 ml", "longest_side": "76 cm", - "price": 3500, - "price_postapoc": 10, + "price": "35 USD", + "price_postapoc": "10 cent", "material": [ { "type": "wood", "portion": 77 }, { "type": "steel", "portion": 19 }, { "type": "cotton", "portion": 4 } ], "symbol": "=", "color": "brown", @@ -277,7 +277,7 @@ "color": "yellow", "name": { "str": "survival bow" }, "description": "A weak bow crudely crafted from a single uncured wood stave. Weak and wildly inaccurate, but easy to make.", - "price": 150, + "price": "1 USD 50 cent", "//": "30 lb draw weight, 52in, 20in draw, 0.259 slugs of momentum with a 30g arrow.", "material": [ "wood" ], "flags": [ @@ -299,7 +299,7 @@ "weight": "1360 g", "volume": "2500 ml", "longest_side": "140 cm", - "price_postapoc": 50, + "price_postapoc": "50 cent", "armor_data": { "armor": [ { @@ -330,7 +330,7 @@ "color": "yellow", "name": { "str": "short bow" }, "description": "Emphasizing portability and agility over power, this all-wood bow is suitable for small game and harassing enemies.", - "price": 16000, + "price": "160 USD", "//": "52in Elm Shortbow at 24in draw with 26in, 0.077 lb aspen arrow: 45J, 50 lbs draw, 0.35 slugs with 30g arrow.", "material": [ "wood" ], "flags": [ @@ -350,7 +350,7 @@ "weight": "340 g", "volume": "1500 ml", "longest_side": "132 cm", - "price_postapoc": 500, + "price_postapoc": "5 USD", "armor_data": { "armor": [ { @@ -383,7 +383,7 @@ "color": "yellow", "name": { "str": "compound hunting bow" }, "description": "A high-powered bow with shaped cams and extra cables for high-velocity shots that can be used effectively by fairly strong archers. Currently set to a medium weight.", - "price": 55000, + "price": "550 USD", "//": "60 lb draw weight 24in draw, 100J, 0.55 slugs of momentum with a 30g arrow.", "material": [ "steel", "plastic" ], "flags": [ "FIRE_TWOHAND", "RELOAD_AND_SHOOT", "PRIMITIVE_RANGED_WEAPON", "SHEATH_BOW", "WATERPROOF_GUN", "NEVER_JAMS" ], @@ -394,7 +394,7 @@ "weight": "907 g", "volume": "1500 ml", "longest_side": "150 cm", - "price_postapoc": 3500, + "price_postapoc": "35 USD", "to_hit": 1, "reload_noise_volume": 3, "loudness": 10, @@ -461,7 +461,7 @@ "color": "yellow", "name": { "str": "composite bow (heavy)", "str_pl": "composite bows (heavy)" }, "description": "A traditionally-constructed bow made from wood, bone, and sinew. It has a rather high draw weight.", - "price": 32000, + "price": "320 USD", "//": "90 lb draw weight, 28in draw, 70J, 0.464 slugs of momentum with a 0.066lb arrow.", "material": [ "wood", "bone" ], "flags": [ @@ -481,7 +481,7 @@ "weight": "400 g", "volume": "1750 ml", "longest_side": "152 cm", - "price_postapoc": 3000, + "price_postapoc": "30 USD", "armor_data": { "armor": [ { @@ -517,7 +517,7 @@ "color": "yellow", "name": { "str": "composite bow (light)", "str_pl": "composite bows (light)" }, "description": "A traditionally-constructed bow made from wood, horn and sinew. It has a moderate draw weight.", - "price": 42000, + "price": "420 USD", "//": "60in bamboo, horn and sinew reflex bow, 70 lbs draw, 50J, 0.40 slugs with a 30g arrow.", "material": [ "wood" ], "flags": [ @@ -537,7 +537,7 @@ "weight": "400 g", "volume": "1500 ml", "longest_side": "183 cm", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "armor_data": { "armor": [ { @@ -570,7 +570,7 @@ "color": "yellow", "name": { "str": "modern recurve bow" }, "description": "A modern fiberglass bow that can be used effectively by those of somewhat above-average strength.", - "price": 38000, + "price": "380 USD", "//": "60in Fiberglass recurved bow at 26in draw, 80lb draw, 54J, 0.403 slugs with 30g arrow.", "material": [ "steel", "fiberglass" ], "flags": [ @@ -590,7 +590,7 @@ "weight": "540 g", "volume": "2500 ml", "longest_side": "152 cm", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "armor_data": { "armor": [ { @@ -626,7 +626,7 @@ "color": "light_gray", "name": { "str": "takedown recurve bow" }, "description": "A modern fiberglass bow that can be taken down for storage. For use by those of somewhat above-average strength. Use it to disassemble it for storage.", - "price": 38000, + "price": "380 USD", "//": "Most stats copied from the recurve bow, can be adjusted later to reflect a different model.", "material": [ "steel", "fiberglass" ], "flags": [ @@ -647,7 +647,7 @@ "volume": "2500 ml", "longest_side": "152 cm", "//2": "When mounted.", - "price_postapoc": 2200, + "price_postapoc": "22 USD", "armor_data": { "armor": [ { @@ -693,14 +693,14 @@ "color": "light_gray", "name": { "str": "takedown recurve bow (folded)", "str_pl": "takedown recurve bows (folded)" }, "description": "A modern fiberglass bow that has been taken down for storage. For use by those of somewhat above-average strength. Use it to assemble it into shape.", - "price": 38000, + "price": "380 USD", "//": "Most stats copied from the recurve bow, can be adjusted later to reflect a different model.", "material": [ "steel", "fiberglass" ], "weight": "540 g", "volume": "2500 ml", "longest_side": "60 cm", "//2": "When taken down.", - "price_postapoc": 2200, + "price_postapoc": "22 USD", "flags": [ "NO_TURRET" ], "modes": [ [ "DEFAULT", "disassembled", 0, [ "MELEE" ] ] ], "valid_mod_locations": [ [ "underbarrel", 1 ], [ "sights", 1 ], [ "stabilizer", 1 ], [ "dampening", 1 ], [ "arrow rest", 1 ] ], @@ -722,7 +722,7 @@ "color": "yellow", "name": { "str": "longbow" }, "description": "A six-foot wooden hunting bow in the English style. It can be used effectively by those of above-average strength.", - "price": 50000, + "price": "500 USD", "//": "70in Yew Longbow at 28in, 70 lbs draw, 60J, 0.41 slugs with 30g arrow", "material": [ "wood" ], "flags": [ @@ -742,7 +742,7 @@ "weight": "680 g", "volume": "3500 ml", "longest_side": "183 cm", - "price_postapoc": 3000, + "price_postapoc": "30 USD", "armor_data": { "armor": [ { @@ -773,13 +773,13 @@ "type": "GUN", "name": { "str": "wooden greatbow" }, "description": "An extremely large, stiff longbow, made with enormous limbs and a thick string to take an immense amount of energy. Takes incredible strength to draw.", - "price": 150000, + "price": "1 kUSD 500 USD", "//": "78in Yew Longbow at 30in draw with 31in, 145 lbs draw, 0.51 slugs with 30g arrow.", "min_strength": 17, "weight": "3200 g", "volume": "6250 ml", "longest_side": "198 cm", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "armor_data": { "armor": [ { @@ -809,7 +809,7 @@ "weight": "22 kg", "volume": "6250 ml", "longest_side": "218 cm", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "armor_data": { "armor": [ { @@ -838,7 +838,7 @@ "color": "yellow", "name": { "str": "compound greatbow" }, "description": "An extremely large, powerful compound bow, made with enormous limbs and a thick string to take an immense amount of energy. Takes incredible strength to draw.", - "price": 160000, + "price": "1 kUSD 600 USD", "//": "120 lb draw weight, very efficient, 0.5 slugs of momentum with a 30g arrow.", "material": [ "steel", "plastic" ], "flags": [ "FIRE_TWOHAND", "RELOAD_AND_SHOOT", "PRIMITIVE_RANGED_WEAPON", "SHEATH_BOW", "WATERPROOF_GUN", "NEVER_JAMS" ], @@ -849,7 +849,7 @@ "weight": "2000 g", "volume": "4 L", "longest_side": "198 cm", - "price_postapoc": 3000, + "price_postapoc": "30 USD", "reload_noise_volume": 4, "loudness": 20, "durability": 8, @@ -871,7 +871,7 @@ "color": "yellow", "name": { "str": "Olympic style target bow" }, "description": "A highly refined, modern bow, but not all that useful, as the draw weight is very low.", - "price": 72000, + "price": "720 USD", "//": "60in, fiberglass limbs, aluminum riser, 28in draw, 50lb draw, 52J, 0.4 slugs", "material": [ "wood" ], "flags": [ @@ -891,7 +891,7 @@ "weight": "450 g", "volume": "2 L", "longest_side": "150 cm", - "price_postapoc": 6000, + "price_postapoc": "60 USD", "armor_data": { "armor": [ { diff --git a/data/json/items/ranged/atlatl.json b/data/json/items/ranged/atlatl.json index b9eb1f8372dfe..b101c39c2c650 100644 --- a/data/json/items/ranged/atlatl.json +++ b/data/json/items/ranged/atlatl.json @@ -8,8 +8,8 @@ "volume": "2100 ml", "symbol": "(", "color": "brown", - "price": 4500, - "price_postapoc": 750, + "price": "45 USD", + "price_postapoc": "7 USD 50 cent", "longest_side": "60 cm", "material": [ "wood" ], "flags": [ @@ -42,8 +42,8 @@ "description": "A steal tipped and fletched atlatl spear, ready to throw with an atlatl. Not suitable for close combat.", "weight": "280 g", "volume": "600 ml", - "price": 1000, - "price_postapoc": 30, + "price": "10 USD", + "price_postapoc": "30 cent", "longest_side": "90 cm", "symbol": "/", "color": "green", @@ -63,8 +63,8 @@ "description": "A bronze tipped and fletched atlatl spear, ready to throw with an atlatl. Not suitable for close combat.", "weight": "280 g", "volume": "600 ml", - "price": 1000, - "price_postapoc": 30, + "price": "10 USD", + "price_postapoc": "30 cent", "longest_side": "90 cm", "symbol": "/", "color": "green", @@ -84,8 +84,8 @@ "description": "A fletched atlatl spear with a sharpened wooden tip. Not suitable for close combat.", "weight": "230 g", "volume": "580 ml", - "price": 250, - "price_postapoc": 5, + "price": "2 USD 50 cent", + "price_postapoc": "5 cent", "longest_side": "90 cm", "symbol": "/", "color": "green", diff --git a/data/json/items/ranged/ballista.json b/data/json/items/ranged/ballista.json index e0864142afbaa..051d17576e55c 100644 --- a/data/json/items/ranged/ballista.json +++ b/data/json/items/ranged/ballista.json @@ -9,8 +9,8 @@ "symbol": "(", "color": "brown", "longest_side": "200 cm", - "price": 75000, - "price_postapoc": 2500, + "price": "750 USD", + "price_postapoc": "25 USD", "material": [ "wood", "steel" ], "flags": [ "PRIMITIVE_RANGED_WEAPON", "RELOAD_ONE", "MOUNTED_GUN", "DURABLE_MELEE" ], "skill": "rifle", @@ -37,8 +37,8 @@ "description": "A big, steel tipped projectile, twice the size of a normal bolt and much heavier than one. It gets thicker towards the base, and is fletched there with the protrusions of the shaft itself.", "weight": "200 g", "volume": "450 ml", - "price": 2500, - "price_postapoc": 250, + "price": "25 USD", + "price_postapoc": "2 USD 50 cent", "longest_side": "55 cm", "symbol": "=", "color": "green", diff --git a/data/json/items/ranged/crossbows.json b/data/json/items/ranged/crossbows.json index bf0159553e403..77eef424bd2c2 100644 --- a/data/json/items/ranged/crossbows.json +++ b/data/json/items/ranged/crossbows.json @@ -8,8 +8,8 @@ "description": "A crude pointed wooden crossbow bolt with a notch at the back.", "copy-from": "bolt_wood_bodkin", "relative": { "dispersion": 150 }, - "price": 0, - "price_postapoc": 20, + "price": "0 cent", + "price_postapoc": "20 cent", "damage": { "damage_type": "stab", "constant_damage_multiplier": 0.75 }, "effects": [ "RECOVER_2" ] }, @@ -23,8 +23,8 @@ "replace_materials": { "steel": "wood" }, "copy-from": "bolt_wood_bodkin", "relative": { "dispersion": 80 }, - "price": 500, - "price_postapoc": 25, + "price": "5 USD", + "price_postapoc": "25 cent", "damage": { "damage_type": "stab", "constant_damage_multiplier": 0.75 }, "effects": [ "RECOVER_6" ] }, @@ -38,8 +38,8 @@ "replace_materials": { "steel": "wood" }, "copy-from": "bolt_wood_bodkin", "relative": { "dispersion": 110 }, - "price": 650, - "price_postapoc": 25, + "price": "6 USD 50 cent", + "price_postapoc": "25 cent", "damage": { "damage_type": "stab", "constant_damage_multiplier": 0.5 }, "effects": [ "RECOVER_10", "NOGIB" ] }, @@ -53,8 +53,8 @@ "replace_materials": { "steel": "wood" }, "copy-from": "bolt_wood_bodkin", "relative": { "dispersion": 80 }, - "price": 700, - "price_postapoc": 30, + "price": "7 USD", + "price_postapoc": "30 cent", "damage": { "damage_type": "stab", "constant_damage_multiplier": 1.25 }, "show_stats": true, "effects": [ "RECOVER_8" ] @@ -81,8 +81,8 @@ "material": [ { "type": "wood", "portion": 81 }, { "type": "steel", "portion": 19 } ], "volume": "85 ml", "longest_side": "300 mm", - "price": 1120, - "price_postapoc": 40, + "price": "11 USD 20 cent", + "price_postapoc": "40 cent", "weight": "27 g", "ammo_type": "bolt", "damage": { "damage_type": "stab", "armor_penetration": 3 }, @@ -127,8 +127,8 @@ "replace_materials": { "steel": "aluminum" }, "copy-from": "bolt_wood_bodkin", "relative": { "dispersion": -30 }, - "price": 450, - "price_postapoc": 50, + "price": "4 USD 50 cent", + "price_postapoc": "50 cent", "damage": { "damage_type": "stab", "constant_damage_multiplier": 1.5, "armor_penetration": 2 }, "range": 2, "effects": [ "RECOVER_35" ] @@ -143,8 +143,8 @@ "replace_materials": { "steel": "aluminum" }, "copy-from": "bolt_wood_bodkin", "relative": { "dispersion": -35 }, - "price": 450, - "price_postapoc": 50, + "price": "4 USD 50 cent", + "price_postapoc": "50 cent", "damage": { "damage_type": "stab", "armor_penetration": 4 }, "range": 2, "effects": [ "RECOVER_40" ] @@ -173,8 +173,8 @@ "replace_materials": { "steel": "kevlar_rigid", "wood": "kevlar_rigid" }, "copy-from": "bolt_wood_bodkin", "relative": { "dispersion": -40 }, - "price": 2380, - "price_postapoc": 60, + "price": "23 USD 80 cent", + "price_postapoc": "60 cent", "damage": { "damage_type": "stab", "constant_damage_multiplier": 1.75 }, "range": 4, "effects": [ "RECOVER_30" ] @@ -187,8 +187,8 @@ "color": "green", "name": { "str": "bullet crossbow" }, "description": "A modified version of the classic crossbow which utilizes stones as projectiles instead of the traditional quarrel. Primarily intended for hunting small game.", - "price": 20000, - "price_postapoc": 2000, + "price": "200 USD", + "price_postapoc": "20 USD", "material": [ "wood", "iron" ], "flags": [ "PRIMITIVE_RANGED_WEAPON" ], "skill": "rifle", @@ -226,8 +226,8 @@ "name": { "str": "pistol crossbow" }, "description": "A small, concealable, pistol-like crossbow. It's weak due to its small size and draw, so it is best suited for hunting small game.", "//": "27in Fiberglass pistol crossbow at 11in draw, 48J, 80 lbs draw, 0.3 Slugs with 30g bolt.", - "price": 55000, - "price_postapoc": 2500, + "price": "550 USD", + "price_postapoc": "25 USD", "material": [ "steel", "wood" ], "flags": [ "PRIMITIVE_RANGED_WEAPON" ], "skill": "pistol", @@ -264,8 +264,8 @@ "name": { "str": "wood crossbow" }, "description": "An all-wood hunting crossbow. It is not powerful enough to deal with zombies, but it may still be used for hunting.", "//2": "150lb @ 10in powerstroke, 34in wood limbs, 37.7J, 0.337 slugs with a 0.066lb bolt", - "price": 6000, - "price_postapoc": 3500, + "price": "60 USD", + "price_postapoc": "35 USD", "material": [ "wood" ], "flags": [ "PRIMITIVE_RANGED_WEAPON" ], "skill": "rifle", @@ -298,8 +298,8 @@ "reload_noise_volume": 4, "description": "A traditionally-constructed crossbow made from wood, bone, and sinew.", "//": "160lb draw, 16in powerstroke, 34in limbs, 51J, 0.394 slugs with 30 gram bolt", - "price": 89000, - "price_postapoc": 4000, + "price": "890 USD", + "price_postapoc": "40 USD", "material": [ "wood", "bone" ], "flags": [ "PRIMITIVE_RANGED_WEAPON" ], "skill": "rifle", @@ -340,7 +340,7 @@ "reload_noise_volume": 4, "description": "A high-power crossbow with shaped cams and extra cables for high-power shots. An integrated cocking rope assists the user with string pulling.", "//": "27in Carbon fiber compound crossbow at 17in draw with 20in, 197J, 175 lbs draw, 0.636 Slugs with 300grain quarrels.", - "price": 200000, + "price": "2 kUSD", "material": [ "steel", "plastic" ], "flags": [ "PRIMITIVE_RANGED_WEAPON" ], "skill": "rifle", @@ -349,7 +349,7 @@ "weight": "3000 g", "volume": "1750 ml", "longest_side": "69 cm", - "price_postapoc": 6000, + "price_postapoc": "60 USD", "to_hit": 1, "ranged_damage": { "damage_type": "stab", "amount": 13 }, "range": 22, @@ -380,7 +380,7 @@ "color": "green", "name": { "str": "heavy crossbow" }, "description": "A HUGE medieval crossbow from Germany with a very slow, difficult reloading process. Its tension is so powerful that you feel it shake after firing.", - "price": 32400, + "price": "324 USD", "//": "800 lbs, 40in steel limbs, 0.41 Slugs with a 30g bolt, 2.0 slugs with a special 0.5 lb bolt", "material": [ "iron", "wood" ], "flags": [ "FIRE_TWOHAND", "PRIMITIVE_RANGED_WEAPON", "TRADER_AVOID" ], @@ -389,7 +389,7 @@ "weight": "6803 g", "volume": "5 L", "longest_side": "102 cm", - "price_postapoc": 4000, + "price_postapoc": "40 USD", "to_hit": -1, "ranged_damage": { "damage_type": "stab", "amount": 6 }, "range": 30, @@ -413,7 +413,7 @@ "name": { "str": "repeating crossbow" }, "description": "A custom-made crossbow with a clever mechanism that loads and fires bolts in a single motion. It has a wooden magazine that holds up to 10 bolts.", "//": "Cho-ku-no style repeating crossbow, very short draw and very light pull. 30lb draw weight, 10 in draw distance. 0.25 Slugs", - "price": 324000, + "price": "3 kUSD 240 USD", "material": [ "steel", "wood" ], "flags": [ "FIRE_TWOHAND", "PRIMITIVE_RANGED_WEAPON", "TRADER_AVOID" ], "skill": "rifle", @@ -421,7 +421,7 @@ "weight": "3628 g", "volume": "2500 ml", "longest_side": "70 cm", - "price_postapoc": 6000, + "price_postapoc": "60 USD", "to_hit": -1, "ranged_damage": { "damage_type": "stab", "amount": 1 }, "range": 8, diff --git a/data/json/items/ranged/energy.json b/data/json/items/ranged/energy.json index 56ec313c8116d..18602b6362329 100644 --- a/data/json/items/ranged/energy.json +++ b/data/json/items/ranged/energy.json @@ -8,7 +8,7 @@ "color": "light_gray", "name": { "str": "PPA-5" }, "description": "The Portable Plasma Accelerator Model Five, developed by Lockheed Martin Corporation. This device uses highly advanced capacitor banks to create a torus of superheated hydrogen plasma and accelerate it to incredible speed. It was designed to take down heavy vehicles, and was expected to fully enter US Army service not long before the Cataclysm.", - "price": 980000, + "price": "9 kUSD 800 USD", "material": [ "steel", "plastic" ], "ammo_effects": [ "PLASMA", "FLAME", "EMP", "EXPLOSIVE_SMALL" ], "flags": [ "NEVER_JAMS", "NO_UNLOAD", "NON_FOULING", "USE_UPS" ], @@ -17,7 +17,7 @@ "ammo": [ "plasma" ], "weight": "10500 g", "volume": "4L", - "price_postapoc": 10000, + "price_postapoc": "100 USD", "to_hit": -2, "range": 25, "ranged_damage": { "damage_type": "stab", "amount": 22, "armor_penetration": 60 }, @@ -46,7 +46,7 @@ "color": "light_blue", "name": { "str": "Boeing XM-P plasma rifle" }, "description": "Boeing developed this focused plasma weaponry together with DARPA. It heats solid hydrogen to create plasma, and envelops it with polymers to reduce blooming. While powerful, it suffers from short range. Powered by UPS.", - "price": 1750000, + "price": "17 kUSD 500 USD", "material": [ "steel" ], "flags": [ "NEVER_JAMS", "NON_FOULING", "USE_UPS" ], "energy_drain": "5 kJ", @@ -55,7 +55,7 @@ "ammo": [ "plasma" ], "weight": "4535 g", "volume": "3750 ml", - "price_postapoc": 8000, + "price_postapoc": "80 USD", "to_hit": -1, "ranged_damage": { "damage_type": "stab", "amount": 5 }, "dispersion": 60, diff --git a/data/json/items/ranged/launchers.json b/data/json/items/ranged/launchers.json index 6b379990b3665..86998ca5717c3 100644 --- a/data/json/items/ranged/launchers.json +++ b/data/json/items/ranged/launchers.json @@ -7,7 +7,7 @@ "color": "green", "name": { "str_sp": "M72 LAW" }, "description": "A disposable light anti-tank rocket launcher. Once fired, it cannot be reloaded and must be disposed of.", - "price": 200000, + "price": "2 kUSD", "//": "A tube with a lever. Unsurprisingly, dirt cheap (at least for a rocket launcher).", "material": [ "aluminum" ], "flags": [ "NO_UNLOAD", "NO_RELOAD", "BACKBLAST", "NEVER_JAMS", "TRADER_AVOID" ], @@ -16,7 +16,7 @@ "weight": "700 g", "volume": "2500 ml", "longest_side": "88 cm", - "price_postapoc": 3500, + "price_postapoc": "35 USD", "to_hit": -3, "dispersion": 300, "durability": 9, @@ -35,14 +35,14 @@ "color": "light_gray", "name": { "str": "crude rocket launcher" }, "description": "An improvised, direct ignition launcher for home-made rockets. Essentially, a thick-walled steel pipe, equipped with a pilot light, several batteries and a simple circuit board. Effective only at medium range, barely.", - "price": 5000, + "price": "50 USD", "material": [ "steel" ], "skill": "launcher", "ammo": [ "homebrew_rocket" ], "weight": "7430 g", "volume": "5 L", "longest_side": "90 cm", - "price_postapoc": 500, + "price_postapoc": "5 USD", "to_hit": -3, "dispersion": 300, "durability": 5, @@ -62,7 +62,7 @@ "color": "dark_gray", "name": { "str": "water cannon" }, "description": "A water cannon from a fire truck. Mounted on a vehicle, it could be used to stop fires or \"protesters\".", - "price": 50000, + "price": "500 USD", "material": [ "steel" ], "flags": [ "NEVER_JAMS", "MOUNTED_GUN", "NO_RELOAD", "NON_FOULING", "WONT_TRAIN_MARKSMANSHIP" ], "ammo_effects": [ "JET", "BEANBAG", "NEVER_MISFIRES", "RECOVER_10" ], @@ -70,7 +70,7 @@ "ammo": [ "water" ], "weight": "24500 g", "volume": "12500 ml", - "price_postapoc": 500, + "price_postapoc": "5 USD", "to_hit": -5, "range": 10, "dispersion": 450, diff --git a/data/json/items/ranged/pneumatic.json b/data/json/items/ranged/pneumatic.json index c263a2047165e..5dd96f9f38733 100644 --- a/data/json/items/ranged/pneumatic.json +++ b/data/json/items/ranged/pneumatic.json @@ -8,8 +8,8 @@ "color": "brown", "name": { "str": "BB gun" }, "description": "An air gun modeled to look like a small lever-action rifle. Designed for young shooters and low-risk target practice, it's fairly accurate, but the BBs it fires deal nearly no damage.", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "//": "You could get a Red Ryder at walmart for $32, but you'd shoot your eye out x_-", "material": [ "aluminum", "wood" ], "flags": [ "NEVER_JAMS", "NON_FOULING" ], @@ -44,8 +44,8 @@ "color": "light_gray", "name": { "str": "varmint air rifle" }, "description": "A cheap varmint air rifle chambered in .177, suitable for hunting small game.", - "price": 25000, - "price_postapoc": 550, + "price": "250 USD", + "price_postapoc": "5 USD 50 cent", "//": "Based on the Gamo Varmint .177, with 1200fps PBA/1000fps Lead", "material": [ "plastic", "steel" ], "flags": [ "NEVER_JAMS", "NON_FOULING" ], diff --git a/data/json/items/ranged/slings.json b/data/json/items/ranged/slings.json index 8708e473e154f..407d3072fdad4 100644 --- a/data/json/items/ranged/slings.json +++ b/data/json/items/ranged/slings.json @@ -7,7 +7,7 @@ "color": "brown", "name": { "ctxt": "weapon", "str": "sling" }, "description": "A leather sling, easy to use and accurate. It uses pebbles as ammunition.", - "price": 150, + "price": "1 USD 50 cent", "//": "It's little more than a piece of slightly shaped leather", "material": [ "leather" ], "flags": [ "RELOAD_AND_SHOOT", "NEVER_JAMS", "PRIMITIVE_RANGED_WEAPON", "BELT_CLIP", "WATERPROOF_GUN" ], @@ -16,7 +16,7 @@ "ammo": [ "pebble" ], "weight": "96 g", "volume": "80 ml", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "ranged_damage": { "damage_type": "bullet", "amount": 4 }, "range": 8, @@ -34,7 +34,7 @@ "color": "brown", "name": { "str": "slingshot" }, "description": "A forked piece of wood with an elastic band stretched between two of its tips. Can launch tiny pebbles and similar things at high speeds.", - "price": 500, + "price": "5 USD", "material": [ "wood" ], "flags": [ "FIRE_TWOHAND", "RELOAD_AND_SHOOT", "NEVER_JAMS", "PRIMITIVE_RANGED_WEAPON", "BELT_CLIP", "WATERPROOF_GUN" ], "ammo_effects": [ "NEVER_MISFIRES", "NO_PENETRATE_OBSTACLES" ], @@ -42,7 +42,7 @@ "ammo": [ "pebble" ], "weight": "254 g", "volume": "250 ml", - "price_postapoc": 50, + "price_postapoc": "50 cent", "to_hit": -2, "ranged_damage": { "damage_type": "bullet", "amount": 3 }, "range": 5, @@ -61,7 +61,7 @@ "color": "brown", "name": { "str": "staff sling" }, "description": "This staff can launch rocks with a whipping motion that sends them flying much further and faster than throwing them.", - "price": 150, + "price": "1 USD 50 cent", "//": "The staff sling,consists of a staff with a short sling at one end. ", "material": [ "wood", "leather" ], "flags": [ @@ -82,7 +82,7 @@ "weight": "1333 g", "volume": "1375 ml", "longest_side": "150 cm", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "ranged_damage": { "damage_type": "bullet", "amount": 10 }, "range": 10, @@ -102,7 +102,7 @@ "color": "dark_gray", "name": { "str": "brace slingshot" }, "description": "A modern slingshot with a wrist brace, allowing it to fire tiny objects slightly more forcefully than a simple wooden slingshot.", - "price": 3000, + "price": "30 USD", "material": [ "steel", "plastic" ], "flags": [ "FIRE_TWOHAND", "RELOAD_AND_SHOOT", "NEVER_JAMS", "PRIMITIVE_RANGED_WEAPON", "BELT_CLIP", "WATERPROOF_GUN" ], "ammo_effects": [ "NEVER_MISFIRES", "NO_PENETRATE_OBSTACLES" ], @@ -110,7 +110,7 @@ "ammo": [ "pebble" ], "weight": "322 g", "volume": "500 ml", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "ranged_damage": { "damage_type": "bullet", "amount": 4 }, "range": 8, diff --git a/data/json/items/ranged/spearguns.json b/data/json/items/ranged/spearguns.json index 01860de6aed96..fa399bb2ac38b 100644 --- a/data/json/items/ranged/spearguns.json +++ b/data/json/items/ranged/spearguns.json @@ -2,8 +2,8 @@ { "type": "AMMO", "id": "fishspear", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "name": { "str": "wooden fishing spear" }, "symbol": "=", "color": "brown", @@ -25,8 +25,8 @@ { "type": "AMMO", "id": "c_fishspear", - "price": 32000, - "price_postapoc": 1000, + "price": "320 USD", + "price_postapoc": "10 USD", "name": { "str": "carbon fiber fishing spear" }, "symbol": "=", "color": "dark_gray", @@ -48,8 +48,8 @@ { "type": "AMMO", "id": "m_fishspear", - "price": 16000, - "price_postapoc": 500, + "price": "160 USD", + "price_postapoc": "5 USD", "name": { "str": "metal fishing spear" }, "symbol": "=", "color": "light_gray", @@ -78,8 +78,8 @@ "name": { "str": "pneumatic speargun" }, "description": "A sophisticated underwater fishing implement designed to fire a specialized type of spear, with a dedicated hand pump to use with it. While highly effective when used underwater, it is nearly useless on dry land.", "//": "https://www.mares.com/en_US/injector-for-pneumatic-guns + https://www.mares.com/en_US/cyrano-1-1-8", - "price": 50000, - "price_postapoc": 1000, + "price": "500 USD", + "price_postapoc": "10 USD", "material": [ { "type": "aluminum", "portion": 95 }, { "type": "steel", "portion": 4 }, { "type": "plastic", "portion": 1 } ], "flags": [ "RELOAD_ONE", "STR_RELOAD", "WATERPROOF_GUN", "UNDERWATER_GUN", "NON_FOULING" ], "skill": "rifle", @@ -110,8 +110,8 @@ "name": { "str": "double roller speargun" }, "description": "Underwater fishing device, this speargun has set of two rubber bands. It doesn't make you able to load two spears, but it can put a bit more power into shot. While highly effective when used underwater, it is nearly useless on dry land.", "//": "https://amz.run/7XJA", - "price": 35599, - "price_postapoc": 2000, + "price": "355 USD 99 cent", + "price_postapoc": "20 USD", "material": [ { "type": "aluminum", "portion": 95 }, { "type": "steel", "portion": 4 }, { "type": "plastic", "portion": 1 } ], "flags": [ "RELOAD_ONE", "WATERPROOF_GUN", "UNDERWATER_GUN", "NEVER_JAMS", "NON_FOULING" ], "skill": "rifle", @@ -140,8 +140,8 @@ "name": { "str": "long speargun" }, "description": "A long underwater fishing implement designed to fire a specialized type of spear using tension in a rubber band. While highly effective when used underwater, it is nearly useless on dry land.", "//": "https://amz.run/7XJ4", - "price": 10000, - "price_postapoc": 1500, + "price": "100 USD", + "price_postapoc": "15 USD", "material": [ { "type": "aluminum", "portion": 95 }, { "type": "steel", "portion": 4 }, { "type": "plastic", "portion": 1 } ], "flags": [ "WATERPROOF_GUN", "UNDERWATER_GUN", "NEVER_JAMS", "NON_FOULING" ], "skill": "rifle", @@ -169,8 +169,8 @@ "name": { "str": "speargun" }, "description": "An underwater fishing implement designed to fire a specialized type of spear using tension in a rubber band. While highly effective when used underwater, it is nearly useless on dry land.", "//": "https://amz.run/7VrJ", - "price": 11500, - "price_postapoc": 1500, + "price": "115 USD", + "price_postapoc": "15 USD", "material": [ { "type": "aluminum", "portion": 95 }, { "type": "steel", "portion": 4 }, { "type": "plastic", "portion": 1 } ], "flags": [ "WATERPROOF_GUN", "UNDERWATER_GUN", "NEVER_JAMS", "NON_FOULING" ], "skill": "rifle", diff --git a/data/json/items/ranged/throwing.json b/data/json/items/ranged/throwing.json index 0d6c5f2e986f4..3128b08cc87e8 100644 --- a/data/json/items/ranged/throwing.json +++ b/data/json/items/ranged/throwing.json @@ -7,8 +7,8 @@ "description": "Some ropes with weights, designed to tangle the legs of a target when thrown, usually at an animal. Used by the Gauchos of Argentina.", "weight": "400 g", "volume": "750 ml", - "price": 600, - "price_postapoc": 50, + "price": "6 USD", + "price_postapoc": "50 cent", "material": [ "cotton", "stone" ], "symbol": ";", "color": "blue", @@ -20,8 +20,8 @@ "type": "GENERIC", "id": "disc_golf", "category": "weapons", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "name": { "str": "disc" }, "symbol": "o", "color": "red", @@ -36,8 +36,8 @@ "type": "GENERIC", "id": "frisbee", "category": "weapons", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "name": { "str": "frisbee" }, "symbol": "o", "color": "yellow", @@ -56,8 +56,8 @@ "description": "A mesh of string and weights, traditionally used to catch fish and to entangle opponents in combat.", "weight": "1100 g", "volume": "1500 ml", - "price": 650, - "price_postapoc": 250, + "price": "6 USD 50 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton", "stone" ], "symbol": "H", "color": "white", @@ -69,8 +69,8 @@ "type": "GENERIC", "id": "lawn_dart", "category": "weapons", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "name": { "str": "lawn dart" }, "symbol": ";", "color": "yellow", @@ -87,8 +87,8 @@ "type": "GENERIC", "id": "weighted_dart", "category": "weapons", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "name": { "str": "weighted dart" }, "symbol": ";", "color": "dark_gray", @@ -106,8 +106,8 @@ "type": "GENERIC", "id": "throwing_axe", "category": "weapons", - "price": 12400, - "price_postapoc": 1000, + "price": "124 USD", + "price_postapoc": "10 USD", "name": { "str": "throwing axe" }, "symbol": ";", "color": "light_gray", @@ -124,8 +124,8 @@ "type": "GENERIC", "id": "throwing_knife", "category": "weapons", - "price": 5200, - "price_postapoc": 500, + "price": "52 USD", + "price_postapoc": "5 USD", "name": { "str": "throwing knife", "str_pl": "throwing knives" }, "symbol": ";", "color": "light_gray", @@ -147,8 +147,8 @@ "description": "A stick carved into a shape suitable for throwing at a target. It's not a boomerang, so don't expect it to return to your hand.", "weight": "574 g", "volume": "500 ml", - "price": 200, - "price_postapoc": 50, + "price": "2 USD", + "price_postapoc": "50 cent", "material": [ "wood" ], "symbol": ";", "color": "brown", @@ -172,8 +172,8 @@ "thrown_damage": [ { "damage_type": "bash", "amount": 5 }, { "damage_type": "cut", "amount": 17 } ], "flags": [ "SPEAR", "NONCONDUCTIVE", "JAVELIN" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 9000, - "price_postapoc": 500, + "price": "90 USD", + "price_postapoc": "5 USD", "melee_damage": { "bash": 5, "stab": 18 } }, { @@ -191,8 +191,8 @@ "thrown_damage": [ { "damage_type": "bash", "amount": 5 }, { "damage_type": "cut", "amount": 15 } ], "flags": [ "SPEAR", "NONCONDUCTIVE", "JAVELIN" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 9000, - "price_postapoc": 500, + "price": "90 USD", + "price_postapoc": "5 USD", "melee_damage": { "bash": 5, "stab": 16 } } ] diff --git a/data/json/items/relics/altered_items.json b/data/json/items/relics/altered_items.json index 0a01c9fc0d39b..2033e24ddb7f6 100644 --- a/data/json/items/relics/altered_items.json +++ b/data/json/items/relics/altered_items.json @@ -8,8 +8,8 @@ "looks_like": "scrap", "name": { "str": "exposed-wiring prototype" }, "description": "Some kind of prototypical electronic device with exposed wiring. Some of the wires have bare ends that could be connected together.", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "copper" ], "weight": "32 g", "volume": "26 ml" @@ -23,8 +23,8 @@ "looks_like": "toaster", "name": { "str": "Bakelite phone" }, "description": "A vintage, bright-red Bakelite phone of famous Swedish design. It would look almost normal, if not for the fact that its rotary dial has been replaced with a doorknob.", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "iron", "plastic" ], "weight": "725 g", "volume": "750 ml" @@ -38,8 +38,8 @@ "looks_like": "comb_pocket", "name": { "str": "golden comb" }, "description": "A small, delicate golden comb. It was once carefully engraved, but time has smoothed its designs to illegibility.", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "gold" ], "weight": "650 g", "volume": "40 ml" @@ -53,8 +53,8 @@ "looks_like": "old_key", "name": { "str": "shifting keyring" }, "description": "A smooth ring of steel, heavy under the weight of numerous keys. The designs of the keys change over time, but none will fit any keyhole you have ever found.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "2000 g", "volume": "750 ml" @@ -68,8 +68,8 @@ "looks_like": "art_lamp", "name": { "str": "engraved cube" }, "description": "A small cube of smooth rock. A uniform grid of nine squares is engraved in each of its faces.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "stone" ], "weight": "510 g", "volume": "185 ml" @@ -82,8 +82,8 @@ "color": "light_gray", "name": { "str": "Utah teapot" }, "description": "A squat teapot with a minimalist design. Its surface shines under the glow of unseen light sources.", - "price": 1000, - "price_postapoc": 10 + "price": "10 USD", + "price_postapoc": "10 cent" }, { "type": "GENERIC", @@ -94,8 +94,8 @@ "looks_like": "wristwatch", "name": { "str": "glitching stopwatch", "str_pl": "glitching stopwatches" }, "description": "A small digital stopwatch, looking slightly old by today's standards. Its digital display prints ever-changing gibberish.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "weight": "165 g", "volume": "165 ml" diff --git a/data/json/items/resources/alien.json b/data/json/items/resources/alien.json index eb9157100e5d5..1adbef200ec1c 100644 --- a/data/json/items/resources/alien.json +++ b/data/json/items/resources/alien.json @@ -7,8 +7,8 @@ "description": "A shattered fragment of alien resin. It looks a bit like a large piece of sea glass, frosted and gritty with the edges rounded off. It is somewhat warm to the touch.", "weight": "70 g", "volume": "22 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "alien_resin" ], "symbol": ",", "color": "light_gray", @@ -22,8 +22,8 @@ "description": "A large pod the size of a beer keg, filled with gooey alien resin. Squeezing it firmly causes resin to squirt from the broken stalk at the end, hardening within a few seconds of being exposed to the air.", "weight": "70000 g", "volume": "22000 ml", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "material": [ "alien_resin" ], "symbol": "0", "color": "light_blue", @@ -55,7 +55,7 @@ "color": "light_gray", "weight": "500 kg", "volume": "700 L", - "price": 1000000, + "price": "10 kUSD", "material": [ "steel" ], "category": "spare_parts" }, @@ -68,7 +68,7 @@ "color": "light_gray", "weight": "40 kg", "volume": "150 L", - "price": 100000, + "price": "1 kUSD", "material": [ "steel", "aluminum" ], "category": "spare_parts" }, @@ -81,7 +81,7 @@ "color": "light_blue", "weight": "20 kg", "volume": "10 L", - "price": 10000, + "price": "100 USD", "material": [ "plastic", "aluminum", "steel" ], "category": "spare_parts" }, @@ -94,7 +94,7 @@ "color": "dark_gray", "weight": "10 kg", "volume": "10 L", - "price": 10000, + "price": "100 USD", "material": [ "plastic", "steel" ], "category": "spare_parts" }, @@ -107,7 +107,7 @@ "color": "dark_gray", "weight": "1 kg", "volume": "1 L", - "price": 1000, + "price": "10 USD", "material": [ "copper", "steel" ], "category": "spare_parts" }, @@ -120,7 +120,7 @@ "color": "dark_gray", "weight": "100 g", "volume": "250 ml", - "price": 10000, + "price": "100 USD", "material": [ "plastic", "steel" ], "category": "spare_parts" }, @@ -133,7 +133,7 @@ "color": "dark_gray", "weight": "50 g", "volume": "100 ml", - "price": 1000, + "price": "10 USD", "material": [ "copper", "steel" ], "category": "spare_parts" }, @@ -146,7 +146,7 @@ "color": "blue", "weight": "5 kg", "volume": "3 L", - "price": 20000, + "price": "200 USD", "material": [ "steel", "plastic" ], "category": "spare_parts" }, @@ -159,7 +159,7 @@ "color": "blue", "weight": "2 kg", "volume": "500 ml", - "price": 2000, + "price": "20 USD", "material": [ "steel", "copper" ], "category": "spare_parts" }, @@ -172,7 +172,7 @@ "color": "blue", "weight": "5 kg", "volume": "1000 ml", - "price": 2000, + "price": "20 USD", "material": [ "steel", "lead" ], "category": "spare_parts" }, @@ -185,7 +185,7 @@ "color": "blue", "weight": "2 kg", "volume": "1500 ml", - "price": 2000, + "price": "20 USD", "material": [ "copper", "ceramic" ], "category": "spare_parts" }, @@ -197,8 +197,8 @@ "description": "A block of pure aluminum at least as big as a dishwasher.", "weight": "2160 kg", "volume": "800 L", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "aluminum" ], "symbol": "#", "color": "light_gray" @@ -211,8 +211,8 @@ "description": "A single enormous brick of plastic, big enough for you to curl up inside if it were hollow.", "weight": "800 kg", "volume": "800 L", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "plastic" ], "symbol": "#", "color": "white" @@ -225,8 +225,8 @@ "description": "A monolithic block of high quality steel.", "weight": "6400 kg", "volume": "800 L", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray" @@ -239,8 +239,8 @@ "description": "An enormous ingot of pure tin.", "weight": "5480 kg", "volume": "800 L", - "price": 2000, - "price_postapoc": 80, + "price": "20 USD", + "price_postapoc": "80 cent", "material": [ "tin" ], "symbol": "#", "color": "white" @@ -253,8 +253,8 @@ "description": "A massive solid piece of copper, covered by a blue-green patina.", "weight": "7150 kg", "volume": "800 L", - "price": 8000, - "price_postapoc": 300, + "price": "80 USD", + "price_postapoc": "3 USD", "material": [ "copper" ], "symbol": "#", "color": "light_green" @@ -267,8 +267,8 @@ "description": "An absolutely massive block of pure zinc. Bet you didn't expect that - nobody expects zinc.", "weight": "5680 kg", "volume": "800 L", - "price": 1000, - "price_postapoc": 20, + "price": "10 USD", + "price_postapoc": "20 cent", "material": [ "zinc" ], "symbol": "#", "color": "white" @@ -281,8 +281,8 @@ "description": "A block of lead so huge you don't even want to think about how heavy it is.", "weight": "9000 kg", "volume": "800 L", - "price": 9000, - "price_postapoc": 400, + "price": "90 USD", + "price_postapoc": "4 USD", "material": [ "lead" ], "symbol": "#", "color": "dark_gray" @@ -295,8 +295,8 @@ "name": { "str": "CBM interface wire kit" }, "category": "spare_parts", "description": "A collection of hand-soldered wires leading to plugs and what looks like an exotic micro controller. The plugs look like they could be attached to you, assuming you have an SNI (Standard Neurobionic Interface).", - "price": 2000, - "price_postapoc": 2000, + "price": "20 USD", + "price_postapoc": "20 USD", "material": [ "aluminum", "plastic", "copper" ], "weight": "250 g", "volume": "1 L", @@ -311,8 +311,8 @@ "name": { "str": "external climate control kit" }, "category": "spare_parts", "description": "A collection of mismatched pipes, wires, and a central device that looks like an exotic micro controller. Almost looks like it could be used for some form of central cooling.", - "price": 2000, - "price_postapoc": 2000, + "price": "20 USD", + "price_postapoc": "20 USD", "material": [ "aluminum", "plastic", "copper" ], "weight": "500 g", "volume": "1 L", @@ -328,7 +328,7 @@ "color": "yellow", "weight": "300 g", "volume": "1 L", - "price": 1000, + "price": "10 USD", "material": [ "copper", "steel" ], "category": "spare_parts" }, @@ -341,7 +341,7 @@ "color": "white", "weight": "1 kg", "volume": "1 L", - "price": 1000, + "price": "10 USD", "material": [ "silver", "steel" ], "category": "spare_parts" }, @@ -354,7 +354,7 @@ "color": "yellow", "weight": "150 g", "volume": "100 ml", - "price": 1000, + "price": "10 USD", "material": [ "silver", "gold" ], "category": "spare_parts" }, @@ -367,7 +367,7 @@ "color": "yellow", "weight": "14 kg", "volume": "1 L", - "price": 1000, + "price": "10 USD", "material": [ "copper", "gold" ], "category": "spare_parts" }, @@ -380,7 +380,7 @@ "color": "white", "weight": "3 kg", "volume": "2 L", - "price": 1000, + "price": "10 USD", "material": [ "steel", "gold" ], "category": "spare_parts" }, @@ -393,7 +393,7 @@ "color": "white", "weight": "1 kg", "volume": "2 L", - "price": 1000, + "price": "10 USD", "material": [ "steel", "glass" ], "category": "spare_parts" } diff --git a/data/json/items/resources/appliance_parts.json b/data/json/items/resources/appliance_parts.json index 0ed7310bd7ae7..721fe2bd9646d 100644 --- a/data/json/items/resources/appliance_parts.json +++ b/data/json/items/resources/appliance_parts.json @@ -7,8 +7,8 @@ "name": { "str": "dismantled stovetop" }, "category": "spare_parts", "description": "The dismantled stovetop of an electric oven. Some electric components are still attached, but the heating elements have been pulled off.", - "price": 100, - "price_postapoc": 5, + "price": "1 USD", + "price_postapoc": "5 cent", "material": [ "budget_steel" ], "weight": "5 kg", "volume": "20 L", @@ -22,8 +22,8 @@ "name": { "str": "stripped oven cabinet" }, "category": "spare_parts", "description": "A large, hefty steel box that was once the main body of an electric oven. Most of the parts have been stripped. It could be further disassembled into base materials.", - "price": 200, - "price_postapoc": 10, + "price": "2 USD", + "price_postapoc": "10 cent", "material": [ "budget_steel" ], "weight": "25 kg", "volume": "250 L", @@ -37,8 +37,8 @@ "name": { "str": "oven control panel" }, "category": "spare_parts", "description": "The control panel and LCD from a dismantled electric oven.", - "price": 100, - "price_postapoc": 5, + "price": "1 USD", + "price_postapoc": "5 cent", "material": [ "budget_steel", "glass" ], "weight": "1 kg", "volume": "2 L", @@ -52,8 +52,8 @@ "name": { "str": "oven door" }, "category": "spare_parts", "description": "The removed glass and steel door of an electric oven.", - "price": 100, - "price_postapoc": 5, + "price": "1 USD", + "price_postapoc": "5 cent", "material": [ "budget_steel", "glass" ], "weight": "10 kg", "volume": "20 L", @@ -67,8 +67,8 @@ "name": { "str": "broiler pan" }, "category": "spare_parts", "description": "A simple sheet metal drawer that goes in the bottom of an electric oven.", - "price": 50, - "price_postapoc": 1, + "price": "50 cent", + "price_postapoc": "1 cent", "material": [ "budget_steel" ], "weight": "5 kg", "volume": "20 L", diff --git a/data/json/items/resources/chemicals.json b/data/json/items/resources/chemicals.json index 8d6b893f645a6..89b8a74ddf336 100644 --- a/data/json/items/resources/chemicals.json +++ b/data/json/items/resources/chemicals.json @@ -8,8 +8,8 @@ "container": "bottle_plastic_small", "weight": "1725 mg", "volume": "250 ml", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "material": [ "powder_nonflam" ], "symbol": "=", "color": "dark_gray", @@ -25,8 +25,8 @@ "container": "bottle_plastic_small", "weight": "1540 mg", "volume": "250 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "powder_nonflam" ], "symbol": "=", "color": "dark_gray", @@ -37,8 +37,8 @@ "type": "AMMO", "id": "chem_calcium_chloride", "category": "chems", - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "calcium chloride" }, "symbol": "=", "color": "white", @@ -54,8 +54,8 @@ "type": "AMMO", "id": "chem_washing_soda", "category": "chems", - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "washing soda" }, "symbol": "=", "color": "white", @@ -71,8 +71,8 @@ "type": "AMMO", "id": "chem_baking_soda", "category": "chems", - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "name": { "str_sp": "baking soda" }, "symbol": "=", "color": "white", @@ -88,8 +88,8 @@ "type": "COMESTIBLE", "id": "mercury", "category": "chems", - "price": 30, - "price_postapoc": 10, + "price": "30 cent", + "price_postapoc": "10 cent", "name": { "str_sp": "mercury" }, "symbol": "~", "color": "light_gray", @@ -107,8 +107,8 @@ "type": "AMMO", "id": "chem_mercury_fulminate", "category": "chems", - "price": 900, - "price_postapoc": 100, + "price": "9 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "mercury fulminate" }, "symbol": "=", "color": "light_gray", @@ -125,8 +125,8 @@ "type": "COMESTIBLE", "id": "chem_sodium", "category": "chems", - "price": 30, - "price_postapoc": 10, + "price": "30 cent", + "price_postapoc": "10 cent", "name": { "str_sp": "sodium" }, "symbol": "~", "color": "light_gray", @@ -144,8 +144,8 @@ "type": "COMESTIBLE", "id": "chem_potassium", "category": "chems", - "price": 30, - "price_postapoc": 10, + "price": "30 cent", + "price_postapoc": "10 cent", "name": { "str_sp": "potassium" }, "symbol": "~", "color": "light_gray", @@ -163,8 +163,8 @@ "type": "AMMO", "id": "chem_lead_azide", "category": "chems", - "price": 900, - "price_postapoc": 100, + "price": "9 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "lead azide" }, "symbol": "=", "color": "white", @@ -181,8 +181,8 @@ "type": "COMESTIBLE", "id": "abstract_hair_dye", "category": "other", - "price": 2000, - "price_postapoc": 3000, + "price": "20 USD", + "price_postapoc": "30 USD", "name": { "str_sp": "hair dye" }, "description": "Some hair dye.", "symbol": "o", diff --git a/data/json/items/resources/fasteners.json b/data/json/items/resources/fasteners.json index 47003b72284b8..ca96a860a242d 100644 --- a/data/json/items/resources/fasteners.json +++ b/data/json/items/resources/fasteners.json @@ -7,8 +7,8 @@ "description": "A steel buckle, like the kind usually found on belts.", "weight": "24 g", "volume": "10 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "symbol": "=", "color": "dark_gray", @@ -22,8 +22,8 @@ "description": "A plastic button, usually found on clothing.", "weight": "1 g", "volume": "20 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "=", "color": "dark_gray", @@ -37,8 +37,8 @@ "name": { "str": "steel button" }, "description": "A steel button, usually found on clothing.", "weight": "8 g", - "price": 300, - "price_postapoc": 10, + "price": "3 USD", + "price_postapoc": "10 cent", "material": [ "steel" ] }, { @@ -48,8 +48,8 @@ "name": { "str": "bronze button" }, "description": "A bronze button, found on ancient clothing.", "weight": "10 g", - "price": 300, - "price_postapoc": 0, + "price": "3 USD", + "price_postapoc": "0 cent", "material": [ "bronze" ] }, { @@ -75,8 +75,8 @@ "description": "A pair of cloth strips, one of which has tiny hooks and another with tiny loops. Useful as a fastener for clothing and footwear.", "weight": "2 g", "volume": "2 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "=", "color": "dark_gray", @@ -98,8 +98,8 @@ "description": "A short zipper made from plastic, usually found on footwear or clothing pockets.", "weight": "4 g", "volume": "4 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "plastic", "cotton" ], "symbol": "=", "color": "dark_gray", diff --git a/data/json/items/resources/glass.json b/data/json/items/resources/glass.json index 9d9ddb4d09e7b..3831dc51026eb 100644 --- a/data/json/items/resources/glass.json +++ b/data/json/items/resources/glass.json @@ -30,8 +30,8 @@ "name": { "str": "sheet of glass", "str_pl": "sheets of glass" }, "description": "A large sheet of glass, around three by four feet. Easily shattered. Useful for repairing windows.", "category": "spare_parts", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "glass" ], "weight": "6577 g", "volume": "2655 ml", @@ -55,8 +55,8 @@ "name": { "str": "sheet of reinforced glass", "str_pl": "sheets of reinforced glass" }, "description": "A large sheet of bulletproof glass, it looks to a little over two inches thick.", "category": "spare_parts", - "price": 10000, - "price_postapoc": 250, + "price": "100 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "glass", "steel" ], "weight": "45900 g", "volume": "21200 ml", @@ -72,8 +72,8 @@ "name": { "str": "pane of reinforced glass", "str_pl": "panes of reinforced glass" }, "description": "A small pane of bulletproof glass, it looks to be a little over two inches thick.", "category": "spare_parts", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "glass", "steel" ], "weight": "11475 g", "volume": "5300 ml", @@ -89,8 +89,8 @@ "name": { "str": "sheet of tempered glass", "str_pl": "sheets of tempered glass" }, "description": "A large, durable sheet of tempered glass, approximately six millimeters thick. A common type of safety glass with the curious property of breaking into small, non-lethal pieces upon shattering.", "category": "spare_parts", - "price": 10000, - "price_postapoc": 100, + "price": "100 USD", + "price_postapoc": "1 USD", "material": [ "glass" ], "weight": "17514 g", "volume": "7070 ml", diff --git a/data/json/items/resources/home_improvement.json b/data/json/items/resources/home_improvement.json index c780466aa40ea..47dc35d2ee5ca 100644 --- a/data/json/items/resources/home_improvement.json +++ b/data/json/items/resources/home_improvement.json @@ -3,8 +3,8 @@ "type": "COMESTIBLE", "id": "paint_red", "category": "other", - "price": 120, - "price_postapoc": 0, + "price": "1 USD 20 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "red paint" }, "description": "Some red paint.", "symbol": "o", @@ -110,8 +110,8 @@ "type": "AMMO", "id": "r_carpet", "category": "other", - "price": 120, - "price_postapoc": 0, + "price": "1 USD 20 cent", + "price_postapoc": "0 cent", "name": { "str": "red carpet" }, "symbol": "}", "color": "red", @@ -126,8 +126,8 @@ "type": "AMMO", "id": "g_carpet", "category": "other", - "price": 120, - "price_postapoc": 0, + "price": "1 USD 20 cent", + "price_postapoc": "0 cent", "name": { "str": "green carpet" }, "symbol": "}", "color": "green", @@ -142,8 +142,8 @@ "type": "AMMO", "id": "y_carpet", "category": "other", - "price": 120, - "price_postapoc": 0, + "price": "1 USD 20 cent", + "price_postapoc": "0 cent", "name": { "str": "yellow carpet" }, "symbol": "}", "color": "yellow", @@ -158,8 +158,8 @@ "type": "AMMO", "id": "p_carpet", "category": "other", - "price": 120, - "price_postapoc": 0, + "price": "1 USD 20 cent", + "price_postapoc": "0 cent", "name": { "str": "purple carpet" }, "symbol": "}", "color": "magenta", @@ -178,8 +178,8 @@ "name": { "str": "peephole" }, "category": "spare_parts", "description": "A metal cylinder with a small lens inside intended to be installed on a door.", - "price": 12000, - "price_postapoc": 50, + "price": "120 USD", + "price_postapoc": "50 cent", "material": [ "brass", "glass" ], "weight": "5 g", "volume": "250 ml", @@ -194,8 +194,8 @@ "name": { "str": "mesh screen" }, "category": "spare_parts", "description": "A roll of fine mesh screen for bug barriers on porches.", - "price": 1200, - "price_postapoc": 50, + "price": "12 USD", + "price_postapoc": "50 cent", "material": [ "plastic" ], "weight": "25 g", "volume": "1000 ml", diff --git a/data/json/items/resources/metal.json b/data/json/items/resources/metal.json index dba7cd4f64d66..8c1f068ed5a53 100644 --- a/data/json/items/resources/metal.json +++ b/data/json/items/resources/metal.json @@ -16,7 +16,7 @@ "weapon_category": [ "BATONS", "FENCING_WEAPONRY" ], "volume": "370 ml", "price": "38 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "melee_damage": { "bash": 10 }, "//": "Based on https://en.stainlesseurope.com/en_US/p/Stainless-steel-acid-resistant-seamless-tube-DN20-OD-28-mm-x-1%2C5-mm-1.4571-316Ti-60cm/13983" }, @@ -30,8 +30,8 @@ "volume": "250 ml", "//0": "Intended density 7.60g/cm³; was rounded to 8.0g/cm³ due to unitless stats", "//1": "250ml × 8.0 = 2kg -> 200g/unit @ stack 10; but fragments stacks poorly so weight is only 25% of this", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "count": 2, "stack_size": 10, "material": [ "steel" ], @@ -53,7 +53,7 @@ "volume": "250 ml", "flags": [ "ALLOWS_BODY_BLOCK" ], "qualities": [ [ "BUTCHER", -42 ] ], - "price_postapoc": 10, + "price_postapoc": "10 cent", "melee_damage": { "bash": 2, "stab": 6 }, "weapon_category": [ "SHIVS" ] }, @@ -72,8 +72,8 @@ "techniques": [ "WBLOCK_1" ], "weapon_category": [ "BATONS" ], "volume": "370 ml", - "price": 7500, - "price_postapoc": 10, + "price": "75 USD", + "price_postapoc": "10 cent", "melee_damage": { "bash": 5 } }, { @@ -84,8 +84,8 @@ "description": "A small chunk of aluminum; light but durable, this could be cast into various shapes for construction or ground down to a powder, for more… high-profile applications.", "weight": "250 g", "volume": "100 ml", - "price": 7, - "price_postapoc": 10, + "price": "7 cent", + "price_postapoc": "10 cent", "material": [ "aluminum" ], "symbol": ",", "color": "light_gray", @@ -100,8 +100,8 @@ "weight": "2 g", "//": "Density 9.78g/cm³ ~ 2.4kg/250ml @ stack 1000 = 2g/unit", "volume": "50 ml", - "price": 6500, - "price_postapoc": 10, + "price": "65 USD", + "price_postapoc": "10 cent", "count": 100, "stack_size": 200, "material": [ "lead" ], @@ -118,8 +118,8 @@ "weight": "5 g", "volume": "57 ml", "//": "200*5g / 19.32g/ml = ~51.76ml. Add 10% to take an uneven chunk into account = 56.94ml rounded upwards to 57ml.", - "price": 6403000, - "price_postapoc": 2000, + "price": "64 kUSD 30 USD", + "price_postapoc": "20 USD", "count": 100, "stack_size": 200, "material": [ "gold" ], @@ -136,8 +136,8 @@ "weight": "5 g", "volume": "52 ml", "//": "200*5g / 21.45g/ml = ~46.62ml. Add 10% to take an uneven chunk into account = 51.28ml rounded upwards to 52ml.", - "price": 3181000, - "price_postapoc": 5000, + "price": "31 kUSD 810 USD", + "price_postapoc": "50 USD", "count": 100, "stack_size": 200, "material": [ "platinum" ], @@ -154,8 +154,8 @@ "weight": "1785 mg", "//": "Density 7.14g/cm³ ~ 357g/50ml @ stack 200 = 1785mg/unit", "volume": "50 ml", - "price": 3000, - "price_postapoc": 10, + "price": "30 USD", + "price_postapoc": "10 cent", "count": 100, "stack_size": 200, "material": [ "zinc" ], @@ -173,8 +173,8 @@ "//1": "300g / 8.73g/cm3 = ~34.4ml. Add 10% like bronze = 37.8ml rounded upwards to 38ml.", "volume": "38 ml", "//2": "appears to be about 20% cheaper than bronze", - "price": 140, - "price_postapoc": 80, + "price": "1 USD 40 cent", + "price_postapoc": "80 cent", "to_hit": -2, "material": [ "brass" ], "symbol": ",", @@ -190,8 +190,8 @@ "weight": "5 g", "volume": "97 ml", "//": "200*5g / 11.342g/ml = ~88.17ml. Add 10% to take an uneven chunk into account = 96.99ml rounded upwards to 97ml.", - "price": 200, - "price_postapoc": 400, + "price": "2 USD", + "price_postapoc": "4 USD", "count": 100, "stack_size": 200, "material": [ "lead" ], @@ -208,8 +208,8 @@ "weight": "1120 mg", "//": "Weight should be 1.12g because magnesium is 64% less dense than aluminum (1.74g/cm³ vs 2.70g/cm³), at 250ml aluminium powder has a weight of ~0.176kg at 250ml, assuming same particle size => magnesium powder has a weight of ~0.112kg at 250ml", "volume": "250 ml", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "count": 100, "stack_size": 100, "container": "bag_plastic", @@ -227,8 +227,8 @@ "weight": "5 g", "volume": "105 ml", "//": "200*5g / 10.49g/ml = ~95.33ml. Add 10% to take an uneven chunk into account = 104.86ml rounded upwards to 105ml.", - "price": 75000, - "price_postapoc": 1000, + "price": "750 USD", + "price_postapoc": "10 USD", "count": 100, "stack_size": 200, "material": [ "silver" ], @@ -247,8 +247,8 @@ "volume": "250 ml", "longest_side": "20 cm", "//": "Roughly in the 15cm×15cm to 20cm×20cm range. Compact and stacks well, so equally dense as a solid block.", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "to_hit": -3, "stack_size": 8, "material": [ "lc_steel" ], @@ -267,8 +267,8 @@ "volume": "250 ml", "//0": "Intended density 7.60g/cm³; was rounded to 8.0g/cm³ due to unitless stats", "//1": "250ml × 8.0 = 2kg -> 500g/unit @ stack 4; but mishapen so weight is only 50% of this", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "to_hit": -2, "stack_size": 4, "material": [ "steel" ], @@ -288,8 +288,8 @@ "volume": "250 ml", "//0": "Intended density 7.60g/cm³; was rounded to 8.0g/cm³ due to unitless stats", "//1": "250ml × 8.0 = 2kg -> 1000g/unit @ stack 2; formed as a solid ingot so weight is 100% of this", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -4, "stack_size": 2, "material": [ "steel" ], @@ -348,7 +348,7 @@ "weight": "267 g", "volume": "151 ml", "price": "10 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "to_hit": { "grip": "bad", "length": "hand", "surface": "any", "balance": "neutral" }, "material": [ "steel" ], "symbol": "%", @@ -364,8 +364,8 @@ "name": { "str": "chunk of copper", "str_pl": "chunks of copper" }, "category": "spare_parts", "description": "A small chunk of copper, usable for crafting or repairs.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "copper" ], "volume": "30 ml", "weight": "250 g", @@ -380,8 +380,8 @@ "name": { "str_sp": "scrap tin" }, "category": "spare_parts", "description": "Some small pieces of scrap tin, usable for crafting or repairs.", - "price": 129, - "price_postapoc": 2, + "price": "1 USD 29 cent", + "price_postapoc": "2 cent", "material": [ "tin" ], "//": "Density of 7.265g/cm³ => 50g/7.265g/cm³ ~ 7ml", "volume": "8 ml", @@ -392,8 +392,8 @@ "type": "AMMO", "id": "tin", "category": "spare_parts", - "price": 750, - "price_postapoc": 10, + "price": "7 USD 50 cent", + "price_postapoc": "10 cent", "name": { "str_sp": "tin powder" }, "symbol": "=", "color": "light_gray", @@ -409,8 +409,8 @@ "type": "AMMO", "id": "solder_wire", "category": "spare_parts", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "name": { "str_sp": "solder" }, "symbol": "=", "color": "light_gray", @@ -427,8 +427,8 @@ "type": "AMMO", "id": "copper_rod", "category": "spare_parts", - "price": 2000, - "price_postapoc": 20, + "price": "20 USD", + "price_postapoc": "20 cent", "name": { "str": "copper rod" }, "symbol": "=", "color": "light_gray", @@ -450,8 +450,8 @@ "weight": "150 g", "volume": "2 L", "longest_side": "30 cm", - "price": 50, - "price_postapoc": 10, + "price": "50 cent", + "price_postapoc": "10 cent", "material": [ "budget_steel" ], "symbol": "*", "color": "light_gray" @@ -465,8 +465,8 @@ "weight": "600 g", "volume": "5 L", "longest_side": "60 cm", - "price": 50, - "price_postapoc": 10, + "price": "50 cent", + "price_postapoc": "10 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray" @@ -519,8 +519,8 @@ "description": "A one-liter ingot of solid aluminum.", "weight": "2700 g", "volume": "1 L", - "price": 74, - "price_postapoc": 15, + "price": "74 cent", + "price_postapoc": "15 cent", "material": [ "aluminum" ], "symbol": "=", "color": "light_gray", @@ -534,8 +534,8 @@ "description": "A five-liter ingot of solid aluminum.", "weight": "13500 g", "volume": "5 L", - "price": 370, - "price_postapoc": 75, + "price": "3 USD 70 cent", + "price_postapoc": "75 cent", "material": [ "aluminum" ], "symbol": "=", "color": "light_gray", @@ -549,8 +549,8 @@ "description": "A ten-liter ingot of solid aluminum.", "weight": "27000 g", "volume": "10 L", - "price": 7400, - "price_postapoc": 150, + "price": "74 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "aluminum" ], "symbol": "=", "color": "light_gray", @@ -564,8 +564,8 @@ "description": "A one-liter ingot of solid brass.", "weight": "8730 g", "volume": "1 L", - "price": 114548, - "price_postapoc": 1145.4, + "price": "1 kUSD 145 USD 48 cent", + "price_postapoc": "11 USD 45 cent", "material": [ "brass" ], "symbol": "=", "color": "yellow", @@ -579,8 +579,8 @@ "description": "A five-liter ingot of solid brass.", "weight": "43650 g", "volume": "5 L", - "price": 572740, - "price_postapoc": 5727, + "price": "5 kUSD 727 USD 40 cent", + "price_postapoc": "57 USD 27 cent", "material": [ "brass" ], "symbol": "=", "color": "yellow", @@ -594,8 +594,8 @@ "description": "A ten-liter ingot of solid brass.", "weight": "87300 g", "volume": "10 L", - "price": 1145475, - "price_postapoc": 11455, + "price": "11 kUSD 454 USD 75 cent", + "price_postapoc": "114 USD 55 cent", "material": [ "brass" ], "symbol": "=", "color": "yellow", @@ -609,8 +609,8 @@ "description": "A one-liter ingot of solid bronze.", "weight": "7690 g", "volume": "1 L", - "price": 130039, - "price_postapoc": 1300, + "price": "1 kUSD 300 USD 39 cent", + "price_postapoc": "13 USD", "material": [ "bronze" ], "symbol": "=", "color": "yellow", @@ -624,8 +624,8 @@ "description": "A five-liter ingot of solid bronze.", "weight": "38450 g", "volume": "5 L", - "price": 650195, - "price_postapoc": 6500, + "price": "6 kUSD 501 USD 95 cent", + "price_postapoc": "65 USD", "material": [ "bronze" ], "symbol": "=", "color": "yellow", @@ -639,8 +639,8 @@ "description": "A ten-liter ingot of solid bronze.", "weight": "88 kg", "volume": "10 L", - "price": 1300400, - "price_postapoc": 13000, + "price": "13 kUSD 4 USD", + "price_postapoc": "130 USD", "material": [ "bronze" ], "symbol": "=", "color": "yellow", @@ -654,8 +654,8 @@ "description": "A one-liter ingot of solid copper.", "weight": "8960 g", "volume": "1 L", - "price": 2315, - "price_postapoc": 23, + "price": "23 USD 15 cent", + "price_postapoc": "23 cent", "material": [ "copper" ], "symbol": "=", "color": "brown", @@ -669,8 +669,8 @@ "description": "A five-liter ingot of solid copper.", "weight": "44800 g", "volume": "5 L", - "price": 11575, - "price_postapoc": 116, + "price": "115 USD 75 cent", + "price_postapoc": "1 USD 16 cent", "material": [ "copper" ], "symbol": "=", "color": "brown", @@ -684,8 +684,8 @@ "description": "A ten-liter ingot of solid copper.", "weight": "89600 g", "volume": "10 L", - "price": 23150, - "price_postapoc": 230, + "price": "231 USD 50 cent", + "price_postapoc": "2 USD 30 cent", "material": [ "copper" ], "symbol": "=", "color": "brown", @@ -699,8 +699,8 @@ "description": "A ten-liter ingot of solid tin.", "weight": "72650 g", "volume": "10 L", - "price": 187910, - "price_postapoc": 2900, + "price": "1 kUSD 879 USD 10 cent", + "price_postapoc": "29 USD", "material": [ "tin" ], "symbol": "=", "color": "light_gray", @@ -714,8 +714,8 @@ "description": "A five-liter ingot of solid tin.", "weight": "36325 g", "volume": "5 L", - "price": 93955, - "price_postapoc": 1450, + "price": "939 USD 55 cent", + "price_postapoc": "14 USD 50 cent", "material": [ "tin" ], "symbol": "=", "color": "light_gray", @@ -729,8 +729,8 @@ "description": "A one-liter ingot of solid tin.", "weight": "7265 g", "volume": "1 L", - "price": 18791, - "price_postapoc": 290, + "price": "187 USD 91 cent", + "price_postapoc": "2 USD 90 cent", "material": [ "tin" ], "symbol": "=", "color": "light_gray" @@ -743,8 +743,8 @@ "description": "A ten-liter ingot of solid zinc.", "weight": "71 kg", "volume": "10 L", - "price": 23150, - "price_postapoc": 230, + "price": "231 USD 50 cent", + "price_postapoc": "2 USD 30 cent", "material": [ "zinc" ], "symbol": "=", "color": "white", @@ -758,8 +758,8 @@ "description": "A five-liter ingot of solid zinc.", "weight": "35500 g", "volume": "5 L", - "price": 11575, - "price_postapoc": 116, + "price": "115 USD 75 cent", + "price_postapoc": "1 USD 16 cent", "material": [ "zinc" ], "symbol": "=", "color": "white", @@ -773,9 +773,9 @@ "description": "A one-liter ingot of solid zinc.", "weight": "7100 g", "volume": "1 L", - "price": 2315, + "price": "23 USD 15 cent", "//": "A slight loss on rounding down", - "price_postapoc": 23, + "price_postapoc": "23 cent", "material": [ "zinc" ], "symbol": "=", "color": "white", @@ -789,8 +789,8 @@ "description": "A one-liter ingot of solid gold.", "weight": "19320 g", "volume": "1 L", - "price": 123705960, - "price_postapoc": 38640, + "price": "1237 kUSD 59 USD 60 cent", + "price_postapoc": "386 USD 40 cent", "material": [ "gold" ], "symbol": "=", "color": "yellow" @@ -803,8 +803,8 @@ "description": "A five-liter ingot of solid gold.", "weight": "96600 g", "volume": "5 L", - "price": 618529800, - "price_postapoc": 193200, + "price": "6185 kUSD 298 USD", + "price_postapoc": "1 kUSD 932 USD", "material": [ "gold" ], "symbol": "=", "color": "yellow", @@ -818,8 +818,8 @@ "description": "A ten-liter ingot of solid gold.", "weight": "193200 g", "volume": "10 L", - "price": 1237059600, - "price_postapoc": 386400, + "price": "12370 kUSD 596 USD", + "price_postapoc": "3 kUSD 864 USD", "material": [ "gold" ], "symbol": "=", "color": "yellow", @@ -833,8 +833,8 @@ "description": "A five-liter ingot of solid cast iron.", "weight": "36500 g", "volume": "5 L", - "price": 10000, - "price_postapoc": 200, + "price": "100 USD", + "price_postapoc": "2 USD", "material": [ "iron" ], "symbol": "=", "color": "light_gray", @@ -848,8 +848,8 @@ "description": "A ten-liter ingot of solid cast iron.", "weight": "73000 g", "volume": "10 L", - "price": 20000, - "price_postapoc": 400, + "price": "200 USD", + "price_postapoc": "4 USD", "material": [ "iron" ], "symbol": "=", "color": "light_gray", @@ -863,8 +863,8 @@ "description": "A one-liter ingot of solid lead.", "weight": "11342 g", "volume": "1 L", - "price": 2269, - "price_postapoc": 4537, + "price": "22 USD 69 cent", + "price_postapoc": "45 USD 37 cent", "material": [ "lead" ], "symbol": "=", "color": "light_gray" @@ -877,8 +877,8 @@ "description": "A five-liter ingot of solid lead.", "weight": "56710 g", "volume": "5 L", - "price": 11345, - "price_postapoc": 22685, + "price": "113 USD 45 cent", + "price_postapoc": "226 USD 85 cent", "material": [ "lead" ], "symbol": "=", "color": "light_gray", @@ -892,8 +892,8 @@ "description": "A ten-liter ingot of solid lead.", "weight": "113400 g", "volume": "10 L", - "price": 22690, - "price_postapoc": 45370, + "price": "226 USD 90 cent", + "price_postapoc": "453 USD 70 cent", "material": [ "lead" ], "symbol": "=", "color": "light_gray", @@ -907,8 +907,8 @@ "description": "A one-liter ingot of solid platinum.", "weight": "21450 g", "volume": "1 L", - "price": 68232450, - "price_postapoc": 107250, + "price": "682 kUSD 324 USD 50 cent", + "price_postapoc": "1 kUSD 72 USD 50 cent", "material": [ "platinum" ], "symbol": "=", "color": "light_gray" @@ -921,8 +921,8 @@ "description": "A five-liter ingot of solid platinum.", "weight": "107250 g", "volume": "5 L", - "price": 341162250, - "price_postapoc": 536250, + "price": "3411 kUSD 622 USD 50 cent", + "price_postapoc": "5 kUSD 362 USD 50 cent", "material": [ "platinum" ], "symbol": "=", "color": "light_gray", @@ -936,8 +936,8 @@ "description": "A ten-liter ingot of solid platinum.", "weight": "214500 g", "volume": "10 L", - "price": 682324500, - "price_postapoc": 1072500, + "price": "6823 kUSD 245 USD", + "price_postapoc": "10 kUSD 725 USD", "material": [ "platinum" ], "symbol": "=", "color": "light_gray", @@ -951,8 +951,8 @@ "description": "A one-liter ingot of solid silver.", "weight": "10490 g", "volume": "1 L", - "price": 786750, - "price_postapoc": 10490, + "price": "7 kUSD 867 USD 50 cent", + "price_postapoc": "104 USD 90 cent", "material": [ "lead" ], "symbol": "=", "color": "light_gray" @@ -965,8 +965,8 @@ "description": "A five-liter ingot of solid silver.", "weight": "52450 g", "volume": "5 L", - "price": 3933750, - "price_postapoc": 52450, + "price": "39 kUSD 337 USD 50 cent", + "price_postapoc": "524 USD 50 cent", "material": [ "silver" ], "symbol": "=", "color": "light_gray", @@ -980,8 +980,8 @@ "description": "A ten-liter ingot of solid silver.", "weight": "104900 g", "volume": "10 L", - "price": 7867500, - "price_postapoc": 104900, + "price": "78 kUSD 675 USD", + "price_postapoc": "1 kUSD 49 USD", "material": [ "silver" ], "symbol": "=", "color": "light_gray", @@ -995,8 +995,8 @@ "description": "A five-liter ingot of solid steel.", "weight": "39295 g", "volume": "5 L", - "price": 20000, - "price_postapoc": 200, + "price": "200 USD", + "price_postapoc": "2 USD", "material": [ "steel" ], "symbol": "=", "color": "light_gray", @@ -1010,8 +1010,8 @@ "description": "A ten-liter ingot of solid steel.", "weight": "78590 g", "volume": "10 L", - "price": 40000, - "price_postapoc": 400, + "price": "400 USD", + "price_postapoc": "4 USD", "material": [ "steel" ], "symbol": "=", "color": "light_gray", @@ -1036,8 +1036,8 @@ "type": "AMMO", "copy-from": "5l_steel", "name": { "str": "5 L mild steel ingot" }, - "price": 22000, - "price_postapoc": 220, + "price": "220 USD", + "price_postapoc": "2 USD 20 cent", "material": [ "lc_steel" ] }, { @@ -1045,8 +1045,8 @@ "type": "AMMO", "copy-from": "10l_steel", "name": { "str": "10 L mild steel ingot" }, - "price": 44000, - "price_postapoc": 440, + "price": "440 USD", + "price_postapoc": "4 USD 40 cent", "material": [ "lc_steel" ] }, { @@ -1054,8 +1054,8 @@ "type": "AMMO", "copy-from": "5l_steel", "name": { "str": "5 L medium steel ingot" }, - "price": 24000, - "price_postapoc": 240, + "price": "240 USD", + "price_postapoc": "2 USD 40 cent", "material": [ "mc_steel" ] }, { @@ -1063,8 +1063,8 @@ "type": "AMMO", "copy-from": "10l_steel", "name": { "str": "10 L medium steel ingot" }, - "price": 48000, - "price_postapoc": 480, + "price": "480 USD", + "price_postapoc": "4 USD 80 cent", "material": [ "mc_steel" ] }, { @@ -1072,8 +1072,8 @@ "type": "AMMO", "copy-from": "5l_steel", "name": { "str": "5 L high steel ingot" }, - "price": 26000, - "price_postapoc": 260, + "price": "260 USD", + "price_postapoc": "2 USD 60 cent", "material": [ "hc_steel" ] }, { @@ -1081,8 +1081,8 @@ "type": "AMMO", "copy-from": "10l_steel", "name": { "str": "10 L high steel ingot" }, - "price": 52000, - "price_postapoc": 520, + "price": "520 USD", + "price_postapoc": "5 USD 20 cent", "material": [ "hc_steel" ] }, { @@ -1105,8 +1105,8 @@ "id": "slag", "type": "AMMO", "category": "spare_parts", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "name": { "str_sp": "slag" }, "symbol": ".", "color": "dark_gray", @@ -1128,8 +1128,8 @@ "//0": "Modern railroad tracks are typically around 60kg per meter.", "volume": "10 L", "longest_side": "100 cm", - "price": 10000, - "price_postapoc": 100, + "price": "100 USD", + "price_postapoc": "1 USD", "material": [ "mc_steel" ], "symbol": "=", "color": "light_gray", @@ -1145,8 +1145,8 @@ "//0": "Modern railroad tracks are typically around 60kg per meter.", "volume": "5 L", "longest_side": "50 cm", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "mc_steel" ], "symbol": "=", "color": "light_gray", @@ -1160,8 +1160,8 @@ "name": { "str_sp": "scrap aluminum" }, "category": "spare_parts", "description": "A handful of small pieces of aluminum, usable for crafting or repairs.", - "price": 2, - "price_postapoc": 2, + "price": "2 cent", + "price_postapoc": "2 cent", "material": [ "aluminum" ], "volume": "20 ml", "weight": "50 g", @@ -1176,8 +1176,8 @@ "name": { "str_sp": "scrap cast iron" }, "category": "spare_parts", "description": "A handful of small pieces of scrap cast iron, usable for crafting or repairs.", - "price": 75, - "price_postapoc": 2, + "price": "75 cent", + "price_postapoc": "2 cent", "material": [ "iron" ], "volume": "8 ml", "weight": "50 g", @@ -1191,8 +1191,8 @@ "name": { "str_sp": "cast iron chunk" }, "category": "spare_parts", "description": "A misshapen chunk of cast iron. Makes a decent weapon in a pinch, and is also useful for some crafting recipes.", - "price": 375, - "price_postapoc": 10, + "price": "3 USD 75 cent", + "price_postapoc": "10 cent", "material": [ "iron" ], "volume": "40 ml", "weight": "250 g", @@ -1207,8 +1207,8 @@ "name": { "str_sp": "cast iron lump" }, "category": "spare_parts", "description": "A heavy piece of cast iron. Useful for some crafting recipes.", - "price": 1500, - "price_postapoc": 40, + "price": "15 USD", + "price_postapoc": "40 cent", "material": [ "iron" ], "volume": "158 ml", "weight": "1 kg", diff --git a/data/json/items/resources/misc.json b/data/json/items/resources/misc.json index ad239d1ecbf71..5fad506018b9a 100644 --- a/data/json/items/resources/misc.json +++ b/data/json/items/resources/misc.json @@ -12,8 +12,8 @@ "volume": "250 ml", "flags": [ "SPEAR", "ALLOWS_BODY_BLOCK" ], "weapon_category": [ "SHIVS" ], - "price": 3000, - "price_postapoc": 0, + "price": "30 USD", + "price_postapoc": "0 cent", "melee_damage": { "stab": 10 } }, { @@ -30,8 +30,8 @@ "techniques": [ "WBLOCK_1" ], "weapon_category": [ "QUARTERSTAVES" ], "volume": "1250 ml", - "price": 2400, - "price_postapoc": 0, + "price": "24 USD", + "price_postapoc": "0 cent", "melee_damage": { "bash": 4 } }, { @@ -64,8 +64,8 @@ "volume": "250 ml", "flags": [ "SPEAR", "SHEATH_KNIFE", "ALLOWS_BODY_BLOCK" ], "weapon_category": [ "SHIVS" ], - "price": 500, - "price_postapoc": 0, + "price": "5 USD", + "price_postapoc": "0 cent", "melee_damage": { "stab": 8 } }, { @@ -76,8 +76,8 @@ "description": "Material from an incendiary round, useful in constructing incendiary ammunition.", "weight": "2 g", "volume": "500 ml", - "price": 10000, - "price_postapoc": 100, + "price": "100 USD", + "price_postapoc": "1 USD", "container": "bag_plastic", "material": [ "powder" ], "symbol": "=", @@ -95,8 +95,8 @@ "weight": "20000 g", "volume": "300000 ml", "longest_side": "190 cm", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "material": [ "cotton", "steel" ], "symbol": "0", "color": "white", @@ -119,8 +119,8 @@ "weight": "6 kg", "volume": "300000 ml", "longest_side": "190 cm", - "price": 1000, - "price_postapoc": 750, + "price": "10 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "cotton" ], "symbol": "0", "color": "white", @@ -142,8 +142,8 @@ "description": "A piece of fuse, long enough to give you enough time to get away from most explosions.", "weight": "6 g", "volume": "80 ml", - "price": 500, - "price_postapoc": 500, + "price": "5 USD", + "price_postapoc": "5 USD", "container": "bag_plastic", "material": [ "cotton" ], "symbol": ",", @@ -177,8 +177,8 @@ "description": "A sole made from rubber, usually found on the bottoms of boots. Can be used for making actual boots.", "weight": "140 g", "volume": "500 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "rubber" ], "symbol": "=", "color": "dark_gray", @@ -193,8 +193,8 @@ "weight": "600 g", "volume": "1 L", "longest_side": "25 cm", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "rubber" ], "symbol": "=", "color": "dark_gray" @@ -208,8 +208,8 @@ "weight": "3000 g", "volume": "5 L", "longest_side": "40 cm", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "rubber" ], "symbol": "=", "color": "dark_gray" @@ -222,8 +222,8 @@ "name": { "str": "grenade launcher buttstock" }, "category": "spare_parts", "description": "A collapsible buttstock designed for the M320 grenade launcher. When combined with this stock, the M320 can be used as a standalone weapon.", - "price": 10000, - "price_postapoc": 250, + "price": "100 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic", "steel" ], "weight": "600 g", "volume": "250 ml", @@ -242,8 +242,8 @@ "volume": "250 ml", "flags": [ "SPEAR", "SHEATH_KNIFE", "ALLOWS_BODY_BLOCK" ], "weapon_category": [ "SHIVS" ], - "price": 1000, - "price_postapoc": 0, + "price": "10 USD", + "price_postapoc": "0 cent", "melee_damage": { "stab": 8 } }, { @@ -268,8 +268,8 @@ "description": "A small set of wheels for a radio-controlled car. Could be improvised with caster wheels if given rubber treads for grip.", "weight": "260 g", "volume": "480 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "rubber", "steel" ], "symbol": "o", "color": "dark_gray" @@ -282,8 +282,8 @@ "description": "A conical shaped massive slab of inscrutable rock now in two pieces, strange metallic tubes visibly on display. Something seems to have cracked it from the inside out.", "weight": "150 kg", "volume": "4000 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ { "type": "monolith_heavy", "portion": 19 }, { "type": "superalloy", "portion": 1 } ], "symbol": ",", "color": "dark_gray" @@ -298,8 +298,8 @@ "material": [ "paraffin_wax" ], "symbol": "%", "description": "A large chunk of paraffin wax.", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "volume": "250 ml", "flags": [ "UNRECOVERABLE" ] } diff --git a/data/json/items/resources/plastic.json b/data/json/items/resources/plastic.json index 5524835eee9ac..69faba3d037d6 100644 --- a/data/json/items/resources/plastic.json +++ b/data/json/items/resources/plastic.json @@ -7,8 +7,8 @@ "description": "A piece of tough thermoplastic resin that could be used to craft, repair, or reinforce items.", "weight": "50 g", "volume": "100 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "thermo_resin" ], "symbol": ",", "color": "light_blue", @@ -22,8 +22,8 @@ "description": "A hardy and durable piece of epoxy. You could potentially craft items with it.", "weight": "50 g", "volume": "100 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "epoxy" ], "symbol": ",", "color": "light_blue", @@ -37,8 +37,8 @@ "description": "A hardy and durable piece of polycarbonate. You could potentially craft items with it.", "weight": "50 g", "volume": "100 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "hard_plastic_transp" ], "symbol": ",", "color": "light_blue", @@ -52,8 +52,8 @@ "description": "A ten-liter block of solid plastic.", "weight": "10 kg", "volume": "10 L", - "price": 23150, - "price_postapoc": 230, + "price": "231 USD 50 cent", + "price_postapoc": "2 USD 30 cent", "material": [ "plastic" ], "symbol": "=", "color": "light_blue", @@ -67,8 +67,8 @@ "description": "A five-liter block of solid plastic.", "weight": "5 kg", "volume": "5 L", - "price": 11575, - "price_postapoc": 116, + "price": "115 USD 75 cent", + "price_postapoc": "1 USD 16 cent", "material": [ "plastic" ], "symbol": "=", "color": "light_blue", @@ -83,8 +83,8 @@ "weight": "50 g", "volume": "95 ml", "//": "Based on a density around 1.05 grams/mL, like PLA and ABS, + 100% for being rigid and probably oddly-shaped.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": ",", "color": "light_blue", @@ -99,8 +99,8 @@ "weight": "5750 mg", "volume": "5 ml", "//": ".25mm thick, 288GSM", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "nylon" ], "symbol": ",", "color": "white", @@ -115,8 +115,8 @@ "weight": "4 g", "volume": "15 ml", "//": "180GSM, .63mm thick", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "lycra" ], "symbol": ",", "color": "light_blue", @@ -131,8 +131,8 @@ "weight": "40 g", "volume": "42 ml", "//": "Roughly 1.6 square meters of 1 mil (0.0254 mm) thick HDPE plastic, density 0.94 g/cm3, like a strong garbage bag is made of.", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "material": [ "plastic" ], "qualities": [ [ "SURFACE", 3 ] ], "symbol": ")", @@ -148,8 +148,8 @@ "description": "A small sheet of flexible plastic, like a cut-up garbage bag. It might be useful for waterproofing clothes.", "weight": "5 g", "volume": "5 ml", - "price": 0, - "price_postapoc": 2, + "price": "0 cent", + "price_postapoc": "2 cent", "material": [ "plastic" ], "symbol": ",", "flags": [ "NO_SALVAGE" ] @@ -164,8 +164,8 @@ "weight": "30 g", "//": "Density of 1.2 g/cm3", "volume": "500 ml", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "material": [ "plastic" ], "symbol": ")", "stack_size": 20, @@ -182,8 +182,8 @@ "weight": "14875 g", "volume": "12500 ml", "longest_side": "122 cm", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "material": [ "hard_plastic_transp" ], "symbol": ")", "color": "light_blue" diff --git a/data/json/items/resources/stone.json b/data/json/items/resources/stone.json index fee5fbeb77aad..737b8268cee55 100644 --- a/data/json/items/resources/stone.json +++ b/data/json/items/resources/stone.json @@ -66,8 +66,8 @@ "color": "white", "symbol": "%", "description": "A plaster replica of a bone.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "stone" ], "volume": "250 ml", "longest_side": "40 cm", @@ -83,8 +83,8 @@ "color": "white", "symbol": "I", "description": "A plaster replica of a huge bone.", - "price": 0, - "price_postapoc": 20, + "price": "0 cent", + "price_postapoc": "20 cent", "material": [ "stone" ], "volume": "36 L", "longest_side": "2000 cm", @@ -100,8 +100,8 @@ "color": "white", "symbol": "%", "description": "A fossilized bone. Not good to eat.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "stone" ], "volume": "250 ml", "longest_side": "40 cm", @@ -117,8 +117,8 @@ "color": "white", "symbol": "I", "description": "A huge fossilized bone. Not good to eat.", - "price": 0, - "price_postapoc": 20, + "price": "0 cent", + "price_postapoc": "20 cent", "material": [ "stone" ], "volume": "36 L", "longest_side": "2000 cm", diff --git a/data/json/items/resources/tailoring.json b/data/json/items/resources/tailoring.json index 8c649c7b52925..03a9e08039f48 100644 --- a/data/json/items/resources/tailoring.json +++ b/data/json/items/resources/tailoring.json @@ -7,8 +7,8 @@ "category": "other", "weight": "1 g", "volume": "1 ml", - "price": 1, - "price_postapoc": 5, + "price": "1 cent", + "price_postapoc": "5 cent", "material": [ "cotton" ], "symbol": "=", "color": "dark_gray", @@ -22,8 +22,8 @@ "category": "other", "weight": "1 g", "volume": "1 ml", - "price": 1, - "price_postapoc": 5, + "price": "1 cent", + "price_postapoc": "5 cent", "material": [ "cotton" ], "symbol": "=", "color": "dark_gray", @@ -37,7 +37,7 @@ "name": { "str": "grass yarn" }, "category": "spare_parts", "description": "Primitive yarn made from coarse plant fibers like straw or grass. Too thick to sew with, but could be woven into a crude sheet of fabric.", - "price": 10, + "price": "10 cent", "material": [ "dry_plant" ], "weight": "100 g", "volume": "250 ml" @@ -61,8 +61,8 @@ "description": "A handful of oddly-shaped smallish bits of faux fur, waste material from tailoring projects. Not useful for much and usually disposed of.", "weight": "3 g", "volume": "7 ml", - "price": 0, - "price_postapoc": 5, + "price": "0 cent", + "price_postapoc": "5 cent", "material": [ "faux_fur" ] }, { @@ -80,7 +80,7 @@ "type": "GENERIC", "name": { "str_sp": "fur scraps" }, "description": "A handful of oddly-shaped smallish bits of fur, waste material from tailoring projects. Not useful for much and usually disposed of.", - "price": 0, + "price": "0 cent", "weight": "3 g", "volume": "15 ml", "material": [ "fur" ] @@ -93,8 +93,8 @@ "description": "A handful of oddly-shaped smallish bits of Kevlar fabric, waste material from tailoring projects. Normally it would be disposed of, but since Kevlar is very difficult to make in a post-apocalyptic world, it might be worth recycling it for Kevlar thread.", "volume": "2 ml", "weight": "810 mg", - "price": 1, - "price_postapoc": 10, + "price": "1 cent", + "price_postapoc": "10 cent", "material": [ "kevlar" ] }, { @@ -103,7 +103,7 @@ "type": "GENERIC", "name": { "str_sp": "leather scraps" }, "description": "A handful of oddly-shaped smallish bits of leather, waste material from tailoring projects. Not useful for much and usually disposed of.", - "price": 0, + "price": "0 cent", "volume": "6 ml", "material": [ "leather" ] }, @@ -113,7 +113,7 @@ "type": "GENERIC", "name": { "str_sp": "Lycra scraps" }, "description": "A handful of oddly-shaped smallish bits of Lycra, waste material from tailoring projects. Not useful for much and usually disposed of.", - "price": 0, + "price": "0 cent", "volume": "4 ml", "material": [ "lycra" ] }, @@ -123,7 +123,7 @@ "type": "GENERIC", "name": { "str_sp": "neoprene scraps" }, "description": "A handful of oddly-shaped smallish bits of neoprene, waste material from tailoring projects. Not useful for much and usually disposed of.", - "price": 0, + "price": "0 cent", "volume": "6 ml", "material": [ "neoprene" ] }, @@ -133,7 +133,7 @@ "type": "GENERIC", "name": { "str_sp": "synthetic fabric scraps" }, "description": "A handful of oddly-shaped smallish bits of synthetic fabric, waste material from tailoring projects. Not useful for much and usually disposed of.", - "price": 0, + "price": "0 cent", "volume": "3 ml", "material": [ "nylon" ] }, @@ -143,9 +143,9 @@ "type": "GENERIC", "name": { "str_sp": "Nomex scraps" }, "description": "A handful of oddly-shaped smallish bits of heat-resistant Nomex fabric, waste material from tailoring projects. Normally it would be disposed of, but since Nomex is very difficult to make in a post-apocalyptic world, it might be worth recycling it for Nomex thread.", - "price": 5, + "price": "5 cent", "volume": "2 ml", - "price_postapoc": 8, + "price_postapoc": "8 cent", "material": [ "nomex" ] }, { @@ -167,8 +167,8 @@ "color": "brown", "name": { "str": "fur patch", "str_pl": "fur patches" }, "description": "A small bolt of fur from an animal, roughly six inches square. Can be made into patchwork fur sheets or used to repair fur fabric.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "fur", "leather" ], "flags": [ "NO_SALVAGE" ], "weight": "46 g", @@ -181,7 +181,7 @@ "copy-from": "fur", "color": "pink", "name": { "str": "faux fur patch", "str_pl": "faux fur patches" }, - "price_postapoc": 10, + "price_postapoc": "10 cent", "description": "A small bolt of garishly-colored faux fur, roughly six inches square. Can be made into patchwork faux fur sheets or used to repair faux fur fabric.", "flags": [ "NO_SALVAGE" ], "material": [ "faux_fur" ] @@ -193,8 +193,8 @@ "color": "brown", "name": { "str": "leather patch", "str_pl": "leather patches" }, "description": "A roughly six-inch square patch of leather, could be used to repair clothing and make smaller leather crafts.", - "price": 2000, - "price_postapoc": 25, + "price": "20 USD", + "price_postapoc": "25 cent", "material": [ "leather" ], "flags": [ "NO_SALVAGE" ], "weight": "25 g", @@ -208,8 +208,8 @@ "color": "white", "name": { "str": "felt patch", "str_pl": "felt patches" }, "description": "A small, six-inch square patch of felt.", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "wool" ], "flags": [ "NO_SALVAGE" ], "weight": "3 g", @@ -224,8 +224,8 @@ "color": "light_gray", "name": { "str": "Nomex patch", "str_pl": "Nomex patches" }, "description": "A six-inch square patch of Nomex fire-resistant fabric.", - "price": 4000, - "price_postapoc": 20, + "price": "40 USD", + "price_postapoc": "20 cent", "material": [ "nomex" ], "flags": [ "NO_SALVAGE" ], "weight": "4 g", @@ -238,8 +238,8 @@ "color": "white", "name": { "str": "cured hide" }, "description": "A rolled-up animal hide which has been scraped of extraneous hair and flesh and treated to prevent decay. It still requires tanning to become usable leather.", - "price": 200, - "price_postapoc": 150, + "price": "2 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "flesh" ], "flags": [ "NO_SALVAGE" ], "weight": "40 g", @@ -254,8 +254,8 @@ "color": "brown", "name": { "str": "tanned hide" }, "description": "A folded 12-inch by 24-inch sheet of leather made from carefully tanned animal hide. Can be cut up or used as is.", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "material": [ "leather" ], "weight": "296 g", "volume": "186 ml", @@ -270,8 +270,8 @@ "material": [ "leather" ], "weight": "296 g", "volume": "300 ml", - "price": 2500, - "price_postapoc": 250, + "price": "25 USD", + "price_postapoc": "2 USD 50 cent", "symbol": ",", "color": "brown" }, @@ -289,8 +289,8 @@ "color": "brown", "name": { "str": "cured pelt" }, "description": "A rolled-up animal hide which has been scraped of extraneous hair and flesh and treated to prevent decay. It still requires tanning to become usable fur.", - "price": 200, - "price_postapoc": 150, + "price": "2 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "fur", "flesh" ], "flags": [ "NO_SALVAGE" ], "weight": "372 g", @@ -305,8 +305,8 @@ "color": "brown", "name": { "str": "tanned pelt" }, "description": "A folded sheet of fur made from carefully tanned animal pelt. Can be cut up or used as is.", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "material": [ "fur" ], "weight": "372 g", "volume": "465 ml", @@ -319,8 +319,8 @@ "color": "brown", "name": { "str": "patchwork fur sheet" }, "description": "A 12-inch by 24-inch sheet of fur sewn together from patches. Can be cut up or used as is.", - "price": 2500, - "price_postapoc": 250, + "price": "25 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "fur" ], "weight": "372 g", "volume": "465 ml", @@ -337,8 +337,8 @@ "//": "Medium weight cotton fabric with a GSM of 203", "flags": [ "SINGLE_USE" ], "use_action": { "type": "heal", "bandages_power": 2, "bleed": 10, "move_cost": 6000 }, - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "symbol": "=", "color": "dark_gray" @@ -350,8 +350,8 @@ "name": { "str": "patchwork cotton sheet" }, "description": "A 12-inch by 24-inch sheet of cotton sewn together from patches of various clothing parts. Suitable for making clothing if you lack proper material sheets.", "//density": ".80 grams per mL, 203 GSM", - "price": 200, - "price_postapoc": 20 + "price": "2 USD", + "price_postapoc": "20 cent" }, { "id": "sheet_faux_fur", @@ -362,8 +362,8 @@ "weight": "372 g", "volume": "465 ml", "//": "Based on 2000gsm faux fur", - "price": 5000, - "price_postapoc": 20, + "price": "50 USD", + "price_postapoc": "20 cent", "material": [ "faux_fur" ], "symbol": "=", "color": "dark_gray" @@ -375,8 +375,8 @@ "name": { "str": "patchwork faux fur sheet" }, "description": "A 12-inch by 24-inch sheet of faux fur sewn together from mismatched patches. Suitable for making clothing if you lack proper material sheets, but the bright, clashing colors might end up making you look like a diseased Muppet.", "//": "12 inches by 24 inches with GSM of 2000", - "price": 1000, - "price_postapoc": 50 + "price": "10 USD", + "price_postapoc": "50 cent" }, { "id": "sheet_felt", @@ -387,8 +387,8 @@ "weight": "28 g", "volume": "145 ml", "//": "based on 150GSM felt", - "price": 2500, - "price_postapoc": 20, + "price": "25 USD", + "price_postapoc": "20 cent", "material": [ "wool" ], "symbol": "=", "color": "dark_gray" @@ -400,8 +400,8 @@ "name": { "str": "patchwork felt sheet" }, "description": "A 12-inch by 24-inch sheet of felt sewn together from patches. Suitable for making clothing if you lack proper material sheets.", "//": "150GSM felt", - "price": 500, - "price_postapoc": 50 + "price": "5 USD", + "price_postapoc": "50 cent" }, { "id": "sheet_kevlar", @@ -412,8 +412,8 @@ "weight": "26 g", "volume": "51 ml", "//": "values taken from Duponts chemical reference. 144 GSM", - "price": 900, - "price_postapoc": 50, + "price": "9 USD", + "price_postapoc": "50 cent", "material": [ "kevlar" ], "symbol": "=", "color": "dark_gray" @@ -427,8 +427,8 @@ "weight": "26 g", "volume": "51 ml", "//": "values taken from Duponts chemical reference. 144 GSM", - "price": 900, - "price_postapoc": 50, + "price": "9 USD", + "price_postapoc": "50 cent", "material": [ "kevlar" ], "looks_like": "sheet_kevlar", "symbol": "=", @@ -443,8 +443,8 @@ "weight": "3250 mg", "volume": "5 ml", "//": "values taken from Duponts chemical reference. 144 GSM", - "price": 100, - "price_postapoc": 5, + "price": "1 USD", + "price_postapoc": "5 cent", "material": [ "kevlar" ], "symbol": ",", "color": "dark_gray" @@ -458,8 +458,8 @@ "weight": "33 g", "volume": "117 ml", "//": "180 GSM fabric", - "price": 5000, - "price_postapoc": 25, + "price": "50 USD", + "price_postapoc": "25 cent", "material": [ "lycra" ], "symbol": "=", "color": "dark_gray" @@ -473,8 +473,8 @@ "weight": "428 g", "volume": "818 ml", "//": "12 inch by 24 inch sheets, 16 layers thick. Values actually nearly identically matched panels available for purchase.", - "price": 15000, - "price_postapoc": 150, + "price": "150 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "kevlar_layered" ], "flags": [ "NO_SALVAGE" ], "symbol": ",", @@ -489,8 +489,8 @@ "weight": "429 g", "volume": "818 ml", "//": "same as above but adding superglue. IRL this is how they are made, though using 2 part resin instead.", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "kevlar_rigid" ], "flags": [ "NO_SALVAGE" ], "symbol": ",", @@ -503,8 +503,8 @@ "name": { "str": "patchwork Lycra sheet" }, "description": "A 12-inch by 24-inch sheet of fabric sewn together from Lycra patches. Suitable for making flexible, yet strong clothing if you lack proper material sheets.", "//": "180GSM", - "price": 1000, - "price_postapoc": 50 + "price": "10 USD", + "price_postapoc": "50 cent" }, { "id": "sheet_neoprene", @@ -515,8 +515,8 @@ "weight": "26 g", "volume": "186 ml", "//": "110GSM, 1mm thick neoprene", - "price": 5000, - "price_postapoc": 35, + "price": "50 USD", + "price_postapoc": "35 cent", "material": [ "neoprene" ], "symbol": "=", "color": "dark_gray" @@ -528,8 +528,8 @@ "name": { "str": "patchwork neoprene sheet" }, "description": "A sheet of neoprene sewn together from patches, with waterproofed seams. Suitable for making underwater gear if you lack proper material sheets.", "//": "Density of 1.23 grams per mL", - "price": 1000, - "price_postapoc": 60 + "price": "10 USD", + "price_postapoc": "60 cent" }, { "id": "sheet_nomex", @@ -540,8 +540,8 @@ "weight": "32 g", "volume": "75 ml", "//": "Taken from duponts chemical reference sheets. 170GSM", - "price": 15000, - "price_postapoc": 40, + "price": "150 USD", + "price_postapoc": "40 cent", "material": [ "nomex" ], "symbol": "=", "color": "dark_gray" @@ -553,8 +553,8 @@ "name": { "str": "patchwork Nomex sheet" }, "description": "A sheet of Nomex synthetic fabric, sewn together from patches using Nomex thread. Suitable for making heat-resistant clothing if you lack proper material sheets.", "//": "Taken from duponts chemical reference sheets. 170GSM", - "price": 3000, - "price_postapoc": 80 + "price": "30 USD", + "price_postapoc": "80 cent" }, { "id": "sheet_nylon", @@ -566,8 +566,8 @@ "volume": "48 ml", "//": ".25mm thick, 288 GSM (nylon 6,6 ranges 250-300 gsm)", "//1": "1x2' sheet is 1858 cm^2 and at 288 gsm gives listed weight; density of 1.14g/cm^3 suggests about .25 mm thickness per sheet", - "price": 5000, - "price_postapoc": 20, + "price": "50 USD", + "price_postapoc": "20 cent", "material": [ "nylon" ], "symbol": "=", "color": "dark_gray" @@ -580,8 +580,8 @@ "description": "A sheet of fabric, sewn together from synthetic fabric patches in a patchwork fashion. Suitable for making most clothing, though it's much less time-efficient than if using proper material sheets.", "//": ".25mm thick, 288 GSM (nylon 6,6 ranges 250-300 gsm)", "//1": "1x2' sheet is 1858 cm^2 and at 288 gsm gives listed weight; density of 1.14g/cm^3 suggests about .25 mm thickness per sheet", - "price": 1000, - "price_postapoc": 40 + "price": "10 USD", + "price_postapoc": "40 cent" }, { "id": "gambeson_batting", @@ -591,8 +591,8 @@ "description": "A pile of shredded fabric, dry grass, hair or other cheap materials which could be used to stuff the fabric layers of a gambeson to create armor more cheaply and easily than properly layering and quilting the entire product.", "weight": "50 g", "volume": "50 ml", - "price": 0, - "price_postapoc": 8, + "price": "0 cent", + "price_postapoc": "8 cent", "symbol": ",", "color": "white", "flags": [ "NO_SALVAGE" ] @@ -601,8 +601,8 @@ "type": "AMMO", "id": "thread_kevlar", "category": "spare_parts", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "name": { "str_sp": "Kevlar thread" }, "symbol": "=", "color": "light_gray", @@ -621,8 +621,8 @@ "type": "AMMO", "id": "thread_nomex", "category": "spare_parts", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "name": { "str_sp": "Nomex thread" }, "symbol": "=", "color": "light_gray", @@ -646,8 +646,8 @@ "weight": "80 g", "volume": "95 ml", "//": "Usually lightweight 10-12 oz denim.", - "price": 1250, - "price_postapoc": 50, + "price": "12 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "denim" ], "symbol": "=", "color": "dark_gray" @@ -660,8 +660,8 @@ "description": "Oddly-shaped smallish denim patches, waste material from tailoring projects.", "weight": "2 g", "volume": "2 ml", - "price": 1, - "price_postapoc": 5, + "price": "1 cent", + "price_postapoc": "5 cent", "material": [ "denim" ], "symbol": "=", "color": "dark_gray" @@ -673,8 +673,8 @@ "color": "white", "name": { "str": "denim patch", "str_pl": "denim patches" }, "description": "A small, 6 inch square patch of blue denim. It could be used to repair items made of denim or stitched into patchwork sheets for tailoring projects.", - "price": 400, - "price_postapoc": 12, + "price": "4 USD", + "price_postapoc": "12 cent", "material": [ "denim" ], "flags": [ "NO_SALVAGE" ], "weight": "11 g", @@ -689,7 +689,7 @@ "description": "A selection of various sections of denim, sewn together in a patchwork fashion. Suitable for tailoring, though it's much less time-efficient than if using proper material sheets.", "weight": "80 g", "volume": "95 ml", - "price_postapoc": 50, + "price_postapoc": "50 cent", "material": [ "denim" ], "symbol": "=", "color": "dark_gray" @@ -704,8 +704,8 @@ "volume": "48 ml", "//": "heavyweight cotton canvas with a GSM of 406", "//1": "1x2' sheet is 1858 cm^2 and at 406 gsm gives listed weight; density of 1.6g/cm^3 suggests about .254 mm thickness per sheet - rounded down to .250", - "price": 1250, - "price_postapoc": 50, + "price": "12 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "canvas" ], "symbol": "=", "color": "dark_gray" @@ -714,8 +714,8 @@ "type": "AMMO", "id": "thread_canvas", "category": "spare_parts", - "price": 1200, - "price_postapoc": 250, + "price": "12 USD", + "price_postapoc": "2 USD 50 cent", "name": { "str_sp": "heavy duty thread" }, "symbol": "=", "color": "light_gray", @@ -738,8 +738,8 @@ "description": "Oddly-shaped smallish bits of canvas, waste material from tailoring projects. Not useful for much and usually disposed of, but can be recycled into some tough thread.", "weight": "2375 mg", "volume": "2 ml", - "price": 1, - "price_postapoc": 5, + "price": "1 cent", + "price_postapoc": "5 cent", "material": [ "canvas" ], "symbol": "=", "color": "dark_gray" @@ -751,8 +751,8 @@ "color": "white", "name": { "str": "canvas patch", "str_pl": "canvas patches" }, "description": "A small, 6 inch square patch of tough canvas. It could be used to repair items made of canvas or stitched into patchwork sheets for tailoring projects.", - "price": 400, - "price_postapoc": 12, + "price": "4 USD", + "price_postapoc": "12 cent", "//": "Roughly 406 GSM cotton, with a size of 6 inches square", "material": [ "canvas" ], "flags": [ "NO_SALVAGE" ], @@ -770,7 +770,7 @@ "//1": "1x2' sheet is 1858 cm^2 and at 406 gsm gives listed weight; density of 1.6g/cm^3 suggests about .254 mm thickness per sheet - rounded down to .250", "weight": "76 g", "volume": "48 ml", - "price_postapoc": 50, + "price_postapoc": "50 cent", "material": [ "canvas" ], "symbol": "=", "color": "dark_gray" diff --git a/data/json/items/resources/wood.json b/data/json/items/resources/wood.json index 098e2560f6f14..d9341f5bb1aaa 100644 --- a/data/json/items/resources/wood.json +++ b/data/json/items/resources/wood.json @@ -7,8 +7,8 @@ "name": { "str": "log" }, "description": "A large log of wood, cut from a tree. (a)ctivate a wood axe or wood saw to cut it into planks.", "category": "other", - "price": 10000, - "price_postapoc": 10, + "price": "100 USD", + "price_postapoc": "10 cent", "material": [ "wood" ], "weight": "30 kg", "volume": "50 L", @@ -87,8 +87,8 @@ "longest_side": "305 cm", "flags": [ "POLEARM", "SPEAR", "REACH_ATTACK", "REACH3", "NONCONDUCTIVE", "ALWAYS_TWOHAND" ], "weapon_category": [ "POLEARMS" ], - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "qualities": [ [ "HAMMER", 1 ] ], "melee_damage": { "bash": 19 } }, @@ -100,7 +100,7 @@ "name": { "str_sp": "spear shaft" }, "looks_like": "q_staff", "description": "A long stick, sanded and treated with oil for integrity and carved into a smooth staff with a slight taper, for use in making spears. It can also be used as a makeshift quarterstaff as-is, but is too thin to be very effective for just hitting people.", - "price": 4000, + "price": "40 USD", "material": [ "wood" ], "techniques": [ "WBLOCK_2", "RAPID" ], "flags": [ "SHEATH_SPEAR", "ALWAYS_TWOHAND" ], @@ -110,7 +110,7 @@ "longest_side": "180 cm", "category": "weapons", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, - "price_postapoc": 1000, + "price_postapoc": "10 USD", "melee_damage": { "bash": 12 } }, { @@ -127,8 +127,8 @@ "volume": "4130 ml", "longest_side": "122 cm", "to_hit": { "grip": "none", "length": "long", "surface": "any", "balance": "uneven" }, - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "flags": [ "FRAGILE_MELEE", "FIREWOOD" ], "melee_damage": { "bash": 16 } }, @@ -145,8 +145,8 @@ "volume": "3099 ml", "longest_side": "61 cm", "to_hit": { "grip": "none", "length": "long", "surface": "any", "balance": "uneven" }, - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "flags": [ "FIREWOOD" ], "melee_damage": { "bash": 6 } }, @@ -163,8 +163,8 @@ "volume": "1 ml", "longest_side": "1 cm", "to_hit": { "grip": "none", "length": "short", "surface": "any", "balance": "uneven" }, - "price": 50, - "price_postapoc": 1, + "price": "50 cent", + "price_postapoc": "1 cent", "flags": [ "FIREWOOD" ] }, { @@ -180,8 +180,8 @@ "volume": "2066 ml", "longest_side": "61 cm", "to_hit": { "grip": "none", "length": "long", "surface": "any", "balance": "uneven" }, - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "flags": [ "FIREWOOD" ], "melee_damage": { "bash": 6 } }, @@ -199,8 +199,8 @@ "volume": "8264 ml", "longest_side": "244 cm", "to_hit": { "grip": "none", "length": "long", "surface": "any", "balance": "uneven" }, - "price": 1500, - "price_postapoc": 15, + "price": "15 USD", + "price_postapoc": "15 cent", "flags": [ "FRAGILE_MELEE", "FIREWOOD" ], "melee_damage": { "bash": 26 } }, @@ -217,8 +217,8 @@ "color": "brown", "symbol": "/", "material": [ "wood" ], - "price": 40000, - "price_postapoc": 50, + "price": "400 USD", + "price_postapoc": "50 cent", "flags": [ "FIREWOOD" ], "melee_damage": { "bash": 16 } }, @@ -236,8 +236,8 @@ "volume": "9642 ml", "longest_side": "122 cm", "to_hit": { "grip": "none", "length": "long", "surface": "any", "balance": "uneven" }, - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "flags": [ "FIREWOOD" ], "melee_damage": { "bash": 26 } }, @@ -254,8 +254,8 @@ "volume": "4821 ml", "longest_side": "61 cm", "to_hit": { "grip": "none", "length": "long", "surface": "any", "balance": "uneven" }, - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "flags": [ "FIREWOOD" ], "melee_damage": { "bash": 6 } }, @@ -273,8 +273,8 @@ "volume": "19248 ml", "longest_side": "244 cm", "to_hit": { "grip": "none", "length": "long", "surface": "any", "balance": "uneven" }, - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "flags": [ "FRAGILE_MELEE", "FIREWOOD" ], "melee_damage": { "bash": 26 } }, @@ -291,8 +291,8 @@ "volume": "328 ml", "longest_side": "13 cm", "to_hit": -2, - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "flags": [ "FIREWOOD" ], "melee_damage": { "bash": 1 } }, @@ -312,8 +312,8 @@ "material": [ "wood" ], "techniques": [ "WBLOCK_1" ], "volume": "19 L", - "price": 8000, - "price_postapoc": 10, + "price": "80 USD", + "price_postapoc": "10 cent", "flags": [ "FIREWOOD" ], "melee_damage": { "bash": 8 } }, @@ -332,8 +332,8 @@ "techniques": [ "WBLOCK_1" ], "volume": "38 L", "longest_side": "244 cm", - "price": 20000, - "price_postapoc": 10, + "price": "200 USD", + "price_postapoc": "10 cent", "flags": [ "FIREWOOD" ], "melee_damage": { "bash": 8 } }, @@ -351,8 +351,8 @@ "color": "brown", "symbol": "§", "material": [ "wood" ], - "price": 30000, - "price_postapoc": 20, + "price": "300 USD", + "price_postapoc": "20 cent", "flags": [ "FIREWOOD" ], "melee_damage": { "bash": 12 } } diff --git a/data/json/items/robot_parts.json b/data/json/items/robot_parts.json index 5ecc688e9c830..4b0b77b1fb490 100644 --- a/data/json/items/robot_parts.json +++ b/data/json/items/robot_parts.json @@ -9,8 +9,8 @@ "material": [ "plastic", "steel" ], "weight": "250 g", "volume": "500 ml", - "price": 32000, - "price_postapoc": 100, + "price": "320 USD", + "price_postapoc": "1 USD", "category": "spare_parts" }, { @@ -93,8 +93,8 @@ "color": "light_gray", "weight": "1200 g", "volume": "1500 ml", - "price": 50000, - "price_postapoc": 100, + "price": "500 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "category": "spare_parts" }, @@ -107,8 +107,8 @@ "color": "light_gray", "weight": "10000 g", "volume": "10 L", - "price": 100000, - "price_postapoc": 100, + "price": "1 kUSD", + "price_postapoc": "1 USD", "material": [ "steel" ], "category": "spare_parts" }, @@ -121,8 +121,8 @@ "color": "light_gray", "weight": "130 g", "volume": "500 ml", - "price": 40000, - "price_postapoc": 100, + "price": "400 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "category": "spare_parts" }, @@ -135,8 +135,8 @@ "color": "light_gray", "weight": "10000 g", "volume": "10 L", - "price": 100000, - "price_postapoc": 250, + "price": "1 kUSD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel", "plastic" ], "category": "spare_parts" }, @@ -149,8 +149,8 @@ "color": "light_gray", "weight": "5000 g", "volume": "5 L", - "price": 100000, - "price_postapoc": 250, + "price": "1 kUSD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel", "plastic" ], "category": "spare_parts" }, @@ -163,8 +163,8 @@ "color": "light_gray", "weight": "60000 g", "volume": "30 L", - "price": 600000, - "price_postapoc": 250, + "price": "6 kUSD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel", "plastic" ], "category": "spare_parts" }, @@ -177,8 +177,8 @@ "color": "light_gray", "weight": "10000 g", "volume": "10 L", - "price": 100000, - "price_postapoc": 100, + "price": "1 kUSD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "category": "spare_parts" }, @@ -191,8 +191,8 @@ "color": "light_gray", "weight": "20000 g", "volume": "40000 ml", - "price": 100000, - "price_postapoc": 100, + "price": "1 kUSD", + "price_postapoc": "1 USD", "material": [ "steel" ], "category": "spare_parts" }, @@ -205,7 +205,7 @@ "color": "light_gray", "weight": "40000 g", "volume": "20 L", - "price": 200000, + "price": "2 kUSD", "material": [ "steel" ], "category": "spare_parts" }, @@ -218,8 +218,8 @@ "color": "light_gray", "weight": "20000 g", "volume": "40000 ml", - "price": 100000, - "price_postapoc": 100, + "price": "1 kUSD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "category": "spare_parts" } diff --git a/data/json/items/software.json b/data/json/items/software.json index 44e6bb7241829..3d9593eacfe25 100644 --- a/data/json/items/software.json +++ b/data/json/items/software.json @@ -14,8 +14,8 @@ "type": "GENERIC", "name": { "str_sp": "misc software" }, "description": "A miscellaneous piece of hobby software. Probably useless.", - "price": 300, - "price_postapoc": 0 + "price": "3 USD", + "price_postapoc": "0 cent" }, { "id": "software_hacking", @@ -23,8 +23,8 @@ "type": "GENERIC", "name": { "str_sp": "hackPRO" }, "description": "A piece of hacking software.", - "price": 800, - "price_postapoc": 2000 + "price": "8 USD", + "price_postapoc": "20 USD" }, { "id": "software_medical", @@ -32,8 +32,8 @@ "type": "GENERIC", "name": { "str_sp": "MediSoft" }, "description": "A piece of medical software.", - "price": 600, - "price_postapoc": 0 + "price": "6 USD", + "price_postapoc": "0 cent" }, { "id": "software_math", @@ -41,8 +41,8 @@ "type": "GENERIC", "name": { "str_sp": "MatheMAX" }, "description": "A piece of mathematical software.", - "price": 500, - "price_postapoc": 0 + "price": "5 USD", + "price_postapoc": "0 cent" }, { "id": "software_blood_data", @@ -50,8 +50,8 @@ "type": "GENERIC", "name": { "str_sp": "infection data" }, "description": "Medical data on zombie blood.", - "price": 200, - "price_postapoc": 0 + "price": "2 USD", + "price_postapoc": "0 cent" }, { "id": "software_lab_data", @@ -59,8 +59,8 @@ "type": "GENERIC", "name": { "str_sp": "lab data" }, "description": "Research archives from a government laboratory.", - "price": 200, - "price_postapoc": 0 + "price": "2 USD", + "price_postapoc": "0 cent" }, { "id": "software_electronics_reference", @@ -68,7 +68,7 @@ "type": "GENERIC", "name": { "str": "integrated circuit datasheet archives", "str_pl": "misc software" }, "description": "Huge archives of numerous IC circuit datasheets from several major manufacturers. Probably valuable to the right person, as it would be hard to salvage and reuse these components without them.", - "price": 40000, - "price_postapoc": 0 + "price": "400 USD", + "price_postapoc": "0 cent" } ] diff --git a/data/json/items/tool/cables.json b/data/json/items/tool/cables.json index 6b63960bb50e4..c7e8b5dfab810 100644 --- a/data/json/items/tool/cables.json +++ b/data/json/items/tool/cables.json @@ -12,8 +12,8 @@ "volume": "500 ml", "weight": "75 g", "category": "tools", - "price": 1, - "price_postapoc": 100, + "price": "1 cent", + "price_postapoc": "1 USD", "max_charges": 2, "initial_charges": 2, "use_action": { "type": "link_up", "menu_text": "Plug in / Manage connections", "targets": [ "vehicle_port" ] }, @@ -32,8 +32,8 @@ "volume": "500 ml", "weight": "75 g", "category": "tools", - "price": 1, - "price_postapoc": 100, + "price": "1 cent", + "price_postapoc": "1 USD", "max_charges": 4, "initial_charges": 4, "use_action": { @@ -69,8 +69,8 @@ "volume": "1200 ml", "weight": "800 g", "category": "tools", - "price": 1, - "price_postapoc": 100, + "price": "1 cent", + "price_postapoc": "1 USD", "max_charges": 10, "initial_charges": 10, "use_action": { @@ -107,8 +107,8 @@ "weight": "3252 g", "//": "volume is cylinder with length 9m and diameter 5 mm, stats are calculated using as an example, and resized", "category": "tools", - "price": 9999, - "price_postapoc": 500, + "price": "99 USD 99 cent", + "price_postapoc": "5 USD", "max_charges": 8, "initial_charges": 8, "use_action": { diff --git a/data/json/items/tool/container.json b/data/json/items/tool/container.json index f6472ab7e25a6..1c65395305ec5 100644 --- a/data/json/items/tool/container.json +++ b/data/json/items/tool/container.json @@ -7,8 +7,8 @@ "description": "A stainless steel water bottle, holds 750 mL of liquid.", "weight": "200 g", "volume": "787 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "steel" ], "symbol": ")", @@ -33,8 +33,8 @@ "description": "A non-rigid plastic bottle for easy storage, holds 500 mL of liquid.", "weight": "13 g", "volume": "50 ml", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ")", diff --git a/data/json/items/tool/cooking.json b/data/json/items/tool/cooking.json index 088cea95a1c91..ad17e24f26424 100644 --- a/data/json/items/tool/cooking.json +++ b/data/json/items/tool/cooking.json @@ -9,8 +9,8 @@ "weight": "6102 g", "volume": "1500 ml", "longest_side": "20 cm", - "price": 100000, - "price_postapoc": 3000, + "price": "1 kUSD", + "price_postapoc": "30 USD", "to_hit": -2, "material": [ "plastic", "aluminum", "lead", "steel" ], "qualities": [ [ "BOIL", 1 ] ], @@ -33,8 +33,8 @@ "volume": "800 ml", "longest_side": "40 cm", "//": "butcher knives and carving knives are between 30-40cm.", - "price": 8000, - "price_postapoc": 150, + "price": "80 USD", + "price_postapoc": "1 USD 50 cent", "qualities": [ [ "CUT", 2 ], [ "CUT_FINE", 1 ], [ "BUTCHER", 37 ] ] }, { @@ -44,8 +44,8 @@ "description": "This is a crafting_pseudo_item if you have it something is wrong.", "weight": "70000 g", "volume": "100 L", - "price": 20000, - "price_postapoc": 100, + "price": "200 USD", + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "wood" ], "symbol": "T", @@ -60,8 +60,8 @@ "description": "A hand-crank-powered cast steel machine designed to automatically seal tin cans.", "weight": "9800 g", "volume": "5 L", - "price": 52500, - "price_postapoc": 2500, + "price": "525 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -76,8 +76,8 @@ "weight": "1106 g", "volume": "1500 ml", "longest_side": "30 cm", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "/", @@ -163,8 +163,8 @@ "weight": "1820 g", "volume": "3750 ml", "longest_side": "30 cm", - "price": 4000, - "price_postapoc": 2000, + "price": "40 USD", + "price_postapoc": "20 USD", "to_hit": -3, "material": [ "plastic" ], "symbol": ";", @@ -187,8 +187,8 @@ "weight": "2300 g", "volume": "15004 ml", "longest_side": "45 cm", - "price": 4000, - "price_postapoc": 2000, + "price": "40 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "clay" ], "symbol": ";", @@ -210,8 +210,8 @@ "weight": "4000 g", "volume": "20 L", "longest_side": "60 cm", - "price": 10000, - "price_postapoc": 1500, + "price": "100 USD", + "price_postapoc": "15 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -232,8 +232,8 @@ "weight": "450 g", "volume": "2 L", "longest_side": "30 cm", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel" ], "symbol": ";", @@ -254,8 +254,8 @@ "description": "A crude clay pot with a lid, used for cooking.", "weight": "480 g", "volume": "2100 ml", - "price": 2500, - "price_postapoc": 10, + "price": "25 USD", + "price_postapoc": "10 cent", "material": [ "clay" ], "symbol": ")", "color": "brown", @@ -273,8 +273,8 @@ "description": "A simple hand-powered clay quern for grinding grain.", "weight": "2264 g", "volume": "1500 ml", - "price": 3000, - "price_postapoc": 10, + "price": "30 USD", + "price_postapoc": "10 cent", "material": [ "clay" ], "symbol": ":", "color": "brown" @@ -287,8 +287,8 @@ "description": "A clay teapot. Now all you need is tea and water.", "weight": "429 g", "volume": "787 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "clay" ], "symbol": ")", @@ -305,8 +305,8 @@ "weight": "1000 g", "volume": "7 L", "longest_side": "25 cm", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "plastic" ], "symbol": ";", @@ -325,8 +325,8 @@ "description": "An electric food dehydrator, invaluable in preserving food. Can be connected to the electric grid using cord.", "weight": "2500 g", "volume": "13 L", - "price": 6000, - "price_postapoc": 2000, + "price": "60 USD", + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "plastic" ], "symbol": ";", @@ -345,8 +345,8 @@ "weight": "700 g", "volume": "680 ml", "longest_side": "132 mm", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "glass", "egg" ], "symbol": "%", "color": "white", @@ -369,8 +369,8 @@ "description": "A lightweight, folding stove designed to use small hexamine tablets for cooking. Also known as an Esbit stove.", "weight": "92 g", "volume": "147 ml", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "aluminum" ], "symbol": ";", @@ -391,8 +391,8 @@ "weight": "460 g", "volume": "680 ml", "longest_side": "132 mm", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "glass", "powder" ], "symbol": "%", "color": "white", @@ -419,8 +419,8 @@ "weight": "3500 g", "volume": "20 L", "longest_side": "40 cm", - "price": 12000, - "price_postapoc": 700, + "price": "120 USD", + "price_postapoc": "7 USD", "to_hit": -1, "material": [ "plastic", "steel" ], "symbol": "%", @@ -437,8 +437,8 @@ "description": "A simple heater powered by gasoline. It is designed for cooking food.", "weight": "800 g", "volume": "1250 ml", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel" ], "symbol": ";", @@ -457,8 +457,8 @@ "description": "A chemical heat pack, used to treat sports injuries and heat food. It is usable only once.", "weight": "36 g", "volume": "128 ml", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ";", @@ -474,8 +474,8 @@ "description": "A chemical heat pack, used to treat sports injuries and heat food. This one has been used up and is chemically inert, rendering it useless.", "weight": "36 g", "volume": "128 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ";", @@ -490,8 +490,8 @@ "weight": "795 g", "volume": "2 L", "longest_side": "35 cm", - "price": 2500, - "price_postapoc": 250, + "price": "25 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -511,8 +511,8 @@ "weight": "862 g", "volume": "2 L", "longest_side": "35 cm", - "price": 60000, - "price_postapoc": 1000, + "price": "600 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -531,8 +531,8 @@ "weight": "2000 g", "volume": "5 L", "longest_side": "35 cm", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -559,8 +559,8 @@ "volume": "2100 ml", "//": "This item is based off https://www.amazon.com/gp/product/B01743BX1A/ref=as_li_ss_tl?ie=UTF8&linkCode=sl1&language=en_US&th=1 ", "longest_side": "15 cm", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "aluminum" ], "symbol": ";", @@ -580,8 +580,8 @@ "weight": "3461 g", "volume": "3850 ml", "longest_side": "298 mm", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "glass" ], "symbol": "%", "color": "white", @@ -596,8 +596,8 @@ "weight": "3461 g", "volume": "3850 ml", "longest_side": "298 mm", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "glass" ], "symbol": "%", "looks_like": "jar_glass_sealed", @@ -620,8 +620,8 @@ "weight": "1632 g", "volume": "1 L", "longest_side": "12 cm", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -4, "material": [ "stone" ], "symbol": ":", @@ -636,8 +636,8 @@ "description": "A professional-grade multi-cooker, with a short electric cord. Its multitude of settings and features promise to handle any sort of cooking, from parboiling potatoes to cooking curry to popping popcorn. There's no manual, but you're sure you can work it out.", "weight": "11339 g", "volume": "3750 ml", - "price": 20000, - "price_postapoc": 250, + "price": "200 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", @@ -675,8 +675,8 @@ "description": "A simple heater powered by kerosene. It is designed for cooking food.", "weight": "2264 g", "volume": "1250 ml", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel" ], "symbol": ";", @@ -696,8 +696,8 @@ "weight": "2300 g", "volume": "1560 ml", "longest_side": "20 cm", - "price": 12000, - "price_postapoc": 1000, + "price": "120 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -714,8 +714,8 @@ "weight": "12000 g", "volume": "20 L", "looks_like": "oil_press_manual", - "price": 12000, - "price_postapoc": 1000, + "price": "120 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "wood" ], "symbol": ";", @@ -732,8 +732,8 @@ "description": "A pasta extruder powered by a hand crank. Useful in making pasta. It comes with various heads to make various kinds of pasta.", "weight": "650 g", "volume": "1 L", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "to_hit": 2, "material": [ "iron" ], "symbol": ")", @@ -749,8 +749,8 @@ "weight": "850 g", "volume": "680 ml", "longest_side": "132 mm", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "glass", "veggy" ], "symbol": "%", "color": "white", @@ -775,8 +775,8 @@ "description": "An ultra-light alcohol-burning stove with a simmer ring, crafted by hand from a couple of aluminum soda cans. It comes with a 500 mL plastic bottle to hold concentrated alcohol fuel.", "weight": "45 g", "volume": "750 ml", - "price": 250, - "price_postapoc": 10, + "price": "2 USD 50 cent", + "price_postapoc": "10 cent", "material": [ "aluminum" ], "symbol": ";", "color": "light_gray", @@ -796,8 +796,8 @@ "weight": "6 kg", "volume": "7500 ml", "description": "A sealable pot, designed to cook food at higher pressures and temperatures. Useful for all kinds of cooking, and it can also be used for pressure-sensitive chemical reactions.", - "price": 6500, - "price_postapoc": 50, + "price": "65 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "steel" ], "symbol": ")", @@ -817,7 +817,7 @@ "weight": "31536 g", "volume": "12 L", "longest_side": "30 cm", - "price": 100, + "price": "1 USD", "to_hit": -4, "material": [ "stone" ], "symbol": ":", @@ -833,8 +833,8 @@ "weight": "710 g", "volume": "680 ml", "longest_side": "132 mm", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "glass", "veggy" ], "symbol": "%", "color": "white", @@ -859,8 +859,8 @@ "description": "A primitive sieve constructed from woven strips of plant material. Early sieves like this were used to sift grain, though the openings on this one are too small for that.", "weight": "50 g", "volume": "500 ml", - "price": 300, - "price_postapoc": 10, + "price": "3 USD", + "price_postapoc": "10 cent", "material": [ "paper" ], "symbol": ";", "qualities": [ [ "SIEVE", 1 ], [ "WINNOW", 1 ] ], @@ -875,8 +875,8 @@ "description": "This is no mere strainer for noodles; it's a laboratory-grade sieve used to separate particles of certain sizes. You could use this to do a really good job sifting flour, remove dust and soil from grain, or perhaps conduct gradation tests for any civil engineers you might know. This one has been constructed from steel mesh.", "volume": "500 ml", "weight": "318 g", - "price": 700, - "price_postapoc": 50, + "price": "7 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": ";", "color": "dark_gray", @@ -891,8 +891,8 @@ "description": "Some fine steel mesh attached to a length of thicker steel wire, forming a rigid frame. Useful for sieving.", "volume": "106 ml", "weight": "170 g", - "price": 700, - "price_postapoc": 50, + "price": "7 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": ";", "color": "dark_gray", @@ -905,8 +905,8 @@ "description": "A large still, useful for creating distillations of alcohol and other, more curious substances. Features a slot for a thermometer.", "weight": "10000 g", "volume": "10 L", - "price": 30000, - "price_postapoc": 250, + "price": "300 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -6, "material": [ "copper" ], "symbol": "L", @@ -922,8 +922,8 @@ "weight": "2160 g", "volume": "2500 ml", "longest_side": "24 cm", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "steel", "glass" ], "symbol": ";", @@ -946,8 +946,8 @@ "weight": "265 g", "volume": "1600 ml", "longest_side": "17 cm", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "to_hit": 2, "material": [ "steel" ], "symbol": ")", @@ -964,8 +964,8 @@ "weight": "1770 g", "volume": "4100 ml", "longest_side": "35 cm", - "price": 2500, - "price_postapoc": 2000, + "price": "25 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -993,7 +993,7 @@ "volume": "870 ml", "longest_side": "30 cm", "price": "16 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "to_hit": { "grip": "solid", "length": "hand", "surface": "any", "balance": "clumsy" }, "material": [ "aluminum" ], "symbol": ")", @@ -1010,8 +1010,8 @@ "description": "A battery-powered device designed to purify drinking water. Using this item on a container full of water will purify the contents. It could be useful for water taken from uncertain sources like a river, as it may be non-potable.", "weight": "1360 g", "volume": "3 L", - "price": 10000, - "price_postapoc": 1500, + "price": "100 USD", + "price_postapoc": "15 USD", "to_hit": -3, "material": [ "plastic", "steel" ], "symbol": ";", @@ -1037,8 +1037,8 @@ "description": "A simple heater powered by propane. It is designed for cooking food.", "weight": "800 g", "volume": "1250 ml", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel" ], "symbol": ";", @@ -1076,8 +1076,8 @@ "description": "A simple heater powered by acetylene welding gas. It is designed for cooking food.", "weight": "850 g", "volume": "1500 ml", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "brass", "steel" ], "symbol": ";", @@ -1102,8 +1102,8 @@ "color": "light_gray", "name": { "str": "microwave" }, "description": "A home microwave, has probably seen its share of baked beans.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "11339 g", "volume": "9 L", diff --git a/data/json/items/tool/deployable.json b/data/json/items/tool/deployable.json index 852aefe5e4f9d..2a2971f5ac27d 100644 --- a/data/json/items/tool/deployable.json +++ b/data/json/items/tool/deployable.json @@ -9,7 +9,7 @@ "//1": "Calculated as a cylinder of 21.46in diameter (numbers from Amazon listing) and 5in height - the reason for such height is the brazier is 10.4in height with the legs set out, though with hypothetically legs pulled close to the base the height would be ~50% lower hence 5in.", "longest_side": "55 cm", "price": "70 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "to_hit": { "grip": "bad", "length": "short", "surface": "any", "balance": "clumsy" }, "material": [ "steel" ], "symbol": ";", @@ -61,8 +61,8 @@ "volume": "200 L", "longest_side": "100 cm", "//": "values based on real world 55 gallon metal barrel", - "price": 10000, - "price_postapoc": 10, + "price": "100 USD", + "price_postapoc": "10 cent", "to_hit": -5, "looks_like": "55gal_drum", "material": [ "steel" ], @@ -80,8 +80,8 @@ "volume": "100 L", "longest_side": "85 cm", "//": "values based on real world 30 gal metal barrel", - "price": 5000, - "price_postapoc": 10, + "price": "50 USD", + "price_postapoc": "10 cent", "to_hit": -4, "looks_like": "30gal_drum", "material": [ "steel" ], @@ -99,8 +99,8 @@ "volume": "15 L", "longest_side": "90 cm", "//": "values based on basic real world folding camp chair", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "to_hit": -4, "looks_like": "rollmat", "material": [ { "type": "steel", "portion": 975 }, { "type": "cotton", "portion": 25 } ], @@ -117,8 +117,8 @@ "weight": "6 kg", "volume": "20 L", "longest_side": "120 cm", - "price": 7000, - "price_postapoc": 100, + "price": "70 USD", + "price_postapoc": "1 USD", "to_hit": -4, "material": [ { "type": "wood", "portion": 90 }, { "type": "cotton", "portion": 10 } ], "symbol": "#", @@ -134,8 +134,8 @@ "weight": "2900 g", "volume": "5 L", "longest_side": "88 cm", - "price": 2350, - "price_postapoc": 100, + "price": "23 USD 50 cent", + "price_postapoc": "1 USD", "to_hit": -4, "material": [ { "type": "plastic", "portion": 60 }, { "type": "steel" } ], "symbol": "#", @@ -151,8 +151,8 @@ "weight": "3200 g", "volume": "10 L", "longest_side": "90 cm", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "to_hit": -3, "looks_like": "directional_antenna", "material": [ "steel" ], @@ -169,8 +169,8 @@ "weight": "7500 g", "volume": "15 L", "longest_side": "100 cm", - "price": 7500, - "price_postapoc": 500, + "price": "75 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "aluminum", "cotton" ], "symbol": ";", @@ -194,8 +194,8 @@ "weight": "5000 g", "volume": "10 L", "longest_side": "60 cm", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -4, "material": [ "steel" ], "symbol": "=", @@ -211,8 +211,8 @@ "weight": "5000 g", "volume": "25 L", "longest_side": "90 cm", - "price": 5000, - "price_postapoc": 750, + "price": "50 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -4, "material": [ "steel" ], "symbol": "=", @@ -229,8 +229,8 @@ "volume": "15 L", "longest_side": "90 cm", "//": "values based on real world collapsible camping table", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "steel" ], "symbol": "=", @@ -245,8 +245,8 @@ "description": "A large sheet of leather. You could use it as a picnic blanket, but it's more valuable as a surface for butchering as it does not soak up blood. It's rolled and ready for carrying.", "weight": "2000 g", "volume": "2500 ml", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "leather" ], "qualities": [ [ "SURFACE", 3 ] ], @@ -262,8 +262,8 @@ "description": "A large mat woven from fibrous material. You could use it as a picnic blanket, but it's more valuable as a surface for butchering. Too thin to be used as a comfortable sleeping mat. It's rolled and ready for carrying.", "weight": "1000 g", "volume": "2500 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "veggy" ], "qualities": [ [ "SURFACE", 3 ] ], @@ -279,8 +279,8 @@ "description": "A large wooden container used to turn raw milk into butter and buttermilk. This model uses a foot crank and holds three gallons of raw milk.", "weight": "6464 g", "volume": "11356 ml", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "to_hit": -4, "material": [ "wood" ], "looks_like": "f_wood_keg", @@ -297,8 +297,8 @@ "weight": "120000 g", "volume": "22500 ml", "longest_side": "150 cm", - "price": 100000, - "price_postapoc": 1500, + "price": "1 kUSD", + "price_postapoc": "15 USD", "to_hit": -5, "material": [ "wood" ], "symbol": "*", @@ -314,8 +314,8 @@ "weight": "120000 g", "volume": "22500 ml", "longest_side": "150 cm", - "price": 100000, - "price_postapoc": 1500, + "price": "1 kUSD", + "price_postapoc": "15 USD", "to_hit": -5, "material": [ "steel" ], "symbol": "T", @@ -331,8 +331,8 @@ "weight": "70000 g", "volume": "100 L", "longest_side": "250 cm", - "price": 100000, - "price_postapoc": 1500, + "price": "1 kUSD", + "price_postapoc": "15 USD", "to_hit": -5, "material": [ "wood" ], "symbol": "T", @@ -349,8 +349,8 @@ "weight": "15880 g", "volume": "18 L", "longest_side": "100 cm", - "price": 10000, - "price_postapoc": 1500, + "price": "100 USD", + "price_postapoc": "15 USD", "to_hit": -5, "material": [ "steel" ], "symbol": "7", @@ -367,8 +367,8 @@ "weight": "162000 g", "volume": "100 L", "longest_side": "110 cm", - "price": 10000, - "price_postapoc": 1500, + "price": "100 USD", + "price_postapoc": "15 USD", "to_hit": -10, "material": [ "steel" ], "symbol": "7", diff --git a/data/json/items/tool/electronics.json b/data/json/items/tool/electronics.json index f20be4ce01fa6..7f517c691a232 100644 --- a/data/json/items/tool/electronics.json +++ b/data/json/items/tool/electronics.json @@ -6,8 +6,8 @@ "description": "A point-and-shoot digital camera with a digital viewfinder, a backup 'iron-sight', and flash. You can look at your photos on the digital screen, or transfer them with a memory card. Takes conventional batteries.", "weight": "907 g", "volume": "250 ml", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "material": [ "plastic", "steel" ], "symbol": ";", "color": "yellow", @@ -32,8 +32,8 @@ "description": "A 35 mm digital SLR (single-lens reflex) camera with optical and digital viewfinders, a zoom lens with auto-focus and stabilizer, and flash. You can view your photos on it or transfer them with a memory card; it runs on conventional batteries. Before the Cataclysm, you could have taken professional-grade photos using this.", "weight": "2268 g", "volume": "1250 ml", - "price": 800000, - "price_postapoc": 100, + "price": "8 kUSD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "symbol": ";", "color": "yellow", @@ -59,8 +59,8 @@ "weight": "200 g", "volume": "150 ml", "material": [ { "type": "aluminum", "portion": 75 }, { "type": "plastic", "portion": 25 } ], - "price": 9000, - "price_postapoc": 100, + "price": "90 USD", + "price_postapoc": "1 USD", "symbol": ";", "color": "light_gray", "ammo": [ "battery" ], @@ -107,8 +107,8 @@ "weight": "454 g", "volume": "500 ml", "longest_side": "60 cm", - "price": 800, - "price_postapoc": 250, + "price": "8 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "copper", "wood" ], "symbol": ",", @@ -122,8 +122,8 @@ "description": "A pair of electronic handcuffs, used by police and riot bots to detain captives. Their continuous siren clearly identifies the wearer as an arrested criminal and alerts human police. Wait for their arrival, don't try to escape or to remove the cuffs - they will administer an electric shock.\nHowever, since the only police likely to respond are undead, you may have a long wait ahead, unless you get creative…", "weight": "2000 g", "volume": "500 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -8, "material": [ "plastic", "steel" ], "symbol": ";", @@ -144,8 +144,8 @@ "weight": "250 g", "volume": "250 ml", "longest_side": "25 cm", - "price": 20000, - "price_postapoc": 100, + "price": "200 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "plastic" ], "symbol": ";", @@ -218,8 +218,8 @@ "description": "This device has many ports attached, allowing it to connect to almost any control panel or other electronic machine (but not computers). With a little skill, it can be used to crack passwords and more. It requires 25 charges of battery power per use.", "weight": "114 g", "volume": "500 ml", - "price": 40000, - "price_postapoc": 500, + "price": "400 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "plastic", "aluminum" ], "ascii_picture": "electrohack", @@ -246,8 +246,8 @@ "description": "A tool for measuring radiation. Using it will prompt you to choose whether to scan yourself or the terrain, or to turn on continuous scan, which will provide continuous feedback on ambient radiation. It is currently off.", "weight": "225 g", "volume": "500 ml", - "price": 15000, - "price_postapoc": 1000, + "price": "150 USD", + "price_postapoc": "10 USD", "material": [ "plastic", "aluminum" ], "symbol": ";", "color": "green", @@ -316,8 +316,8 @@ "description": "A strange apparatus, seemingly consisting of a glass-encased microphone linked to a small thermal printer and digital screen. The screen remains perpetually blank, save for a battery indicator on its upper right, and on its left side lies a single red button: \"PRINT DATA\".", "weight": "225 g", "volume": "2735 ml", - "price": 15000, - "price_postapoc": 100, + "price": "150 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "aluminum" ], "symbol": ";", "color": "red", @@ -347,8 +347,8 @@ "description": "A hand-powered battery charger. It has an adjustable receptacle designed to accept a wide variety of rechargeable battery cells.", "weight": "2000 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "symbol": ":", "color": "light_gray", @@ -376,8 +376,8 @@ "weight": "2721 g", "volume": "2500 ml", "longest_side": "40 cm", - "price": 75000, - "price_postapoc": 250, + "price": "750 USD", + "price_postapoc": "2 USD 50 cent", "ammo": [ "battery" ], "charges_per_use": 1, "use_action": [ @@ -459,8 +459,8 @@ "description": "This battery-powered device is loaded up with someone's music collection. Fortunately, there's lots of songs you like, and listening to it will raise your morale slightly. Use it to turn it on.", "weight": "140 g", "volume": "75 ml", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ { "type": "aluminum", "portion": 75 }, { "type": "plastic", "portion": 25 } ], "ascii_picture": "mp3", "symbol": ";", @@ -497,8 +497,8 @@ "description": "A device constructed by 'enhancing' a speaker with some amplifier circuits. It has no other use besides emitting loud crackling static noise that could distract zombies.", "weight": "340 g", "volume": "1 L", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "plastic", "aluminum" ], "symbol": ";", @@ -549,8 +549,8 @@ "description": "This device detects and reads out different electromagnetic wave lengths. It beeps with proximity and is sensitive enough you could use it to get a sense of direction.", "weight": "240 g", "volume": "355 ml", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "plastic", "aluminum" ], "symbol": ";", @@ -600,8 +600,8 @@ "description": "A portable video game console, with a backlit screen allowing you to play in the dark. You can use it to play a game, but this requires batteries. Multiple game systems can be linked together for multiplayer games.", "weight": "200 g", "volume": "230 ml", - "price": 12000, - "price_postapoc": 100, + "price": "120 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": ";", "color": "light_gray", @@ -634,8 +634,8 @@ "weight": "200 g", "volume": "100 ml", "longest_side": "15 cm", - "price": 20000, - "price_postapoc": 200, + "price": "200 USD", + "price_postapoc": "2 USD", "material": [ { "type": "aluminum", "portion": 75 }, { "type": "plastic", "portion": 25 } ], "looks_like": "cell_phone", "symbol": ";", @@ -737,8 +737,8 @@ "description": "A unified power supply, or UPS. It is a device developed jointly by military and scientific interests for use in combat and the field. The UPS is designed to power tools, smartphones, armor, and some guns, but drains batteries quickly.", "weight": "680 g", "volume": "2500 ml", - "price": 280000, - "price_postapoc": 1500, + "price": "2 kUSD 800 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -762,8 +762,8 @@ "//": "Intended as an inverter that attaches to a battery, therefore it's volume will expand based on the size of battery attached.", "weight": "680 g", "volume": "2500 ml", - "price": 280000, - "price_postapoc": 1500, + "price": "2 kUSD 800 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -795,8 +795,8 @@ "//": "Intended as an inverter that attaches to a battery, therefore it's volume will expand based on the size of battery attached.", "weight": "680 g", "volume": "2500 ml", - "price": 280000, - "price_postapoc": 1500, + "price": "2 kUSD 800 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -829,8 +829,8 @@ "weight": "7800 g", "volume": "24390 ml", "longest_side": "448 mm", - "price": 280000, - "price_postapoc": 1500, + "price": "2 kUSD 800 USD", + "price_postapoc": "15 USD", "material": [ "aluminum", "plastic" ], "symbol": ";", "color": "light_gray", @@ -846,8 +846,8 @@ "weight": "453 g", "volume": "500 ml", "longest_side": "25 cm", - "price": 5500, - "price_postapoc": 100, + "price": "55 USD", + "price_postapoc": "1 USD", "material": [ "aluminum", "plastic" ], "symbol": ";", "color": "dark_gray", @@ -871,8 +871,8 @@ "description": "A compact thermoelectric generator. Burns propane gas to charge UPS devices. Use it to turn it on.", "weight": "680 g", "volume": "2500 ml", - "price": 280000, - "price_postapoc": 1500, + "price": "2 kUSD 800 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "aluminum", "plastic" ], "symbol": ";", diff --git a/data/json/items/tool/entry_tools.json b/data/json/items/tool/entry_tools.json index 100cce8b2437d..752c9db5bc876 100644 --- a/data/json/items/tool/entry_tools.json +++ b/data/json/items/tool/entry_tools.json @@ -9,7 +9,7 @@ "//1": "With the assumption that it's a cylinder of 18in length and 1.5in diameter. Listing says 0.5in width BUT the crowbar itself is curved a little and package dimensions said 1.57in so I rounded it down slightly.", "longest_side": "46 cm", "price": "26 USD", - "price_postapoc": 500, + "price_postapoc": "5 USD", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, "material": [ "steel" ], "symbol": ";", @@ -30,8 +30,8 @@ "ascii_picture": "crude_picklock", "weight": "25 g", "volume": "5 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "steel" ], "symbol": ";", "color": "dark_gray", @@ -45,8 +45,8 @@ "ascii_picture": "crude_picklock", "weight": "23 g", "volume": "5 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -60,8 +60,8 @@ "weight": "300 g", "volume": "140 ml", "longest_side": "50 cm", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "to_hit": { "grip": "weapon", "length": "short", "surface": "point", "balance": "neutral" }, "material": [ "steel", "aluminum" ], "symbol": ";", @@ -81,8 +81,8 @@ "copy-from": "pipe", "category": "tools", "longest_side": "45 cm", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, "material": [ "steel" ], "symbol": ";", @@ -102,8 +102,8 @@ "ascii_picture": "picklocks", "weight": "544 g", "volume": "100 ml", - "price": 20000, - "price_postapoc": 1000, + "price": "200 USD", + "price_postapoc": "10 USD", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -115,8 +115,8 @@ "name": { "str": "bio lockpick" }, "description": "this a pseudo item", "volume": "0 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "symbol": ";", "color": "light_gray", "qualities": [ [ "LOCKPICK", 40 ] ], @@ -133,7 +133,7 @@ "//1": "With the assumption that it's a cylinder of 60in length and 1.5in diameter. Assuming 2.5in in diameter left it at 4l+ - item dimensions on the listing are yet again package dimensions that would inflate the volume.", "longest_side": "152 cm", "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "uneven" }, - "price_postapoc": 4000, + "price_postapoc": "40 USD", "color": "red", "symbol": "/", "material": [ "steel" ], diff --git a/data/json/items/tool/explosives.json b/data/json/items/tool/explosives.json index 4092ef084187f..91a056c8149e6 100644 --- a/data/json/items/tool/explosives.json +++ b/data/json/items/tool/explosives.json @@ -8,8 +8,8 @@ "weight": "650 g", "volume": "680 ml", "longest_side": "132 mm", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "glass" ], "symbol": "*", @@ -31,8 +31,8 @@ "description": "A block of military-grade RDX composition explosive. A label reads: \"Highly explosive, use with extreme caution!\" It comes with a small timer.", "weight": "1570 g", "volume": "1 L", - "price": 9000, - "price_postapoc": 2000, + "price": "90 USD", + "price_postapoc": "20 USD", "to_hit": -4, "material": [ "rdx" ], "symbol": ";", @@ -48,7 +48,7 @@ "description": "A block of military-grade RDX composition explosive. A label reads: \"Highly explosive, use with extreme caution!\" It comes with a small timer, which is currently ticking down.", "weight": "1570 g", "volume": "1 L", - "price": 0, + "price": "0 cent", "to_hit": -4, "material": [ "rdx" ], "symbol": ";", @@ -65,8 +65,8 @@ "description": "Several sticks of explosives, bundled together with a fuse attached. Use this item to light the fuse. You will, of course, need a lighter or matches in your inventory to do this. Shortly after lighting the fuse, this item will explode, so get away!", "weight": "1133 g", "volume": "750 ml", - "price": 6000, - "price_postapoc": 1000, + "price": "60 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ { "type": "tnt", "portion": 95 }, { "type": "paper", "portion": 5 } ], "symbol": "*", @@ -106,8 +106,8 @@ "description": "Several sticks of explosives stuffed inside a metal container and surrounded with shrapnel. The fuse is sticking out through a small hole. Use this item to light the fuse. You will, of course, need a lighter or matches in your inventory to do this. Shortly after lighting the fuse, this item will explode, so get away!", "weight": "2531 g", "volume": "2430 ml", - "price": 6000, - "price_postapoc": 1500, + "price": "60 USD", + "price_postapoc": "15 USD", "to_hit": -3, "material": [ { "type": "tnt", "portion": 95 }, { "type": "steel", "portion": 40 }, { "type": "paper", "portion": 5 } ], "symbol": "*", @@ -146,8 +146,8 @@ "description": "This substantial device is a bomb that generates an electromagnetic pulse. When activated, the plutonium fuel cell is drained into a flux compression generator, the detonation of which creates a strong magnetic field. When this magnetic field is fed into the antenna, it creates a strong electro-magnetic pulse.", "weight": "4543 g", "volume": "15500 ml", - "price": 60000, - "price_postapoc": 3000, + "price": "600 USD", + "price_postapoc": "30 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -173,8 +173,8 @@ "description": "This EMP bomb is active and will shortly detonate, creating a large EMP field that damages robots and drains bionic energy, as well as a sizeable explosion. You may not want to be holding it much longer.", "weight": "4543 g", "volume": "15500 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -199,8 +199,8 @@ "description": "A solitary firecracker with a short fuse. Use this item to light the fuse. Of course, you will need a lighter or some matches to do so. Shortly after you light the fuse it will explode, so throw it quickly!", "weight": "3 g", "volume": "25 ml", - "price": 4, - "price_postapoc": 10, + "price": "4 cent", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "paper" ], "symbol": ";", @@ -215,8 +215,8 @@ "description": "A firecracker that has been lit; the fuse is hissing. Throw it quickly before it explodes.", "weight": "3 g", "volume": "10 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -3, "material": [ "paper" ], "symbol": ";", @@ -233,8 +233,8 @@ "description": "A pack of 25 firecrackers with a starter fuse. Use this item to light the fuse. Of course, you will need a lighter or some matches to do so. Shortly after you light the fuse they will begin to explode, so throw them quickly!", "weight": "75 g", "volume": "50 ml", - "price": 100, - "price_postapoc": 100, + "price": "1 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "paper" ], "symbol": "*", @@ -249,8 +249,8 @@ "description": "A pack of 25 firecrackers that has been lit; the fuse is hissing. Throw them quickly before they start to explode.", "weight": "75 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -3, "material": [ "paper" ], "symbol": "*", @@ -266,8 +266,8 @@ "description": "A military police-style flashbang. Use this item to pull the pin and start the fuse. You will then have five seconds before it detonates with intense light and sound, blinding, deafening, and disorienting anyone nearby.", "weight": "236 g", "volume": "270 ml", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -289,8 +289,8 @@ "copy-from": "flashbang", "name": { "str": "active flashbang" }, "description": "This flashbang is active, and will soon detonate with intense light and sound, blinding, deafening, and disorienting anyone nearby. It may be a good idea to throw it!", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "use_action": { "type": "message", "message": "You've already pulled the %s's pin, try throwing it instead.", "name": "Pull pin" }, "countdown_action": { "type": "explosion", "do_flashbang": true }, "flags": [ "TRADER_AVOID" ] @@ -300,8 +300,8 @@ "copy-from": "gasbomb", "type": "GENERIC", "name": { "str": "fungicidal gas grenade" }, - "price": 3600, - "price_postapoc": 750, + "price": "36 USD", + "price_postapoc": "7 USD 50 cent", "description": "A canister grenade filled with fungicidal solution. Use this item to pull the pin and start the fuse, turning it into an active fungicidal grenade. In five seconds it will begin to expel a volatile gas that is highly toxic to fungal life forms.", "use_action": { "need_wielding": true, @@ -325,8 +325,8 @@ "copy-from": "gasbomb", "type": "GENERIC", "name": { "str": "makeshift fungicidal gas grenade" }, - "price": 3600, - "price_postapoc": 500, + "price": "36 USD", + "price_postapoc": "5 USD", "description": "A makeshift canister grenade filled with fungicidal solution. Use this item to pull the pin and start the fuse, turning it into an active fungicidal grenade. In five seconds it will begin to expel a volatile gas that is highly toxic to fungal life forms.", "use_action": { "need_wielding": true, @@ -353,8 +353,8 @@ "description": "A crude gas bomb made using household chemicals. Use this item to arm it. In three seconds it will begin to expel a highly toxic gas for a short time. This gas poisons those exposed to it, in addition to obscuring vision and scent.", "weight": "1264 g", "volume": "270 ml", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "use_action": { "need_wielding": true, "target": "gasbomb_makeshift_act", @@ -373,8 +373,8 @@ "description": "This homemade canister of poison gas has been unsealed, and is (or will shortly be) expelling highly toxic gas. You should consider getting rid of it soon.", "weight": "1264 g", "volume": "270 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "steel" ], "symbol": "*", @@ -399,8 +399,8 @@ "description": "A military-grade fragmentation hand grenade. Use this item to pull the pin and start the fuse. You will then have five seconds before it explodes; throwing it would be a good idea.", "weight": "397 g", "volume": "540 ml", - "price": 1500, - "price_postapoc": 1000, + "price": "15 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -424,8 +424,8 @@ "description": "This fragmentation grenade is active, and will explode any second now. Better throw it!", "weight": "397 g", "volume": "270 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -443,9 +443,9 @@ "description": "A grenade that generates an electromagnetic pulse with a low-inductance capacitor bank discharged into a single-loop antenna. It also produces a mild electric shock cloud. Use this item to pull the pin and light the fuse, turning it into an active EMP grenade. You will then have three seconds before it detonates, creating an EMP field that damages robots and drains bionic energy.", "weight": "400 g", "volume": "270 ml", - "price": 6000, + "price": "60 USD", "//": "Something this useful doesn't come cheap after the apocalypse", - "price_postapoc": 4000, + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -470,8 +470,8 @@ "description": "This EMP grenade is active and will shortly detonate, creating a large EMP field that damages robots and drains bionic energy, as well as a mild electric shock cloud. You may not want to be holding it much longer.", "weight": "400 g", "volume": "270 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -496,8 +496,8 @@ "description": "A military-grade incendiary hand grenade. Use this item to pull the pin and start the fuse. You will then have five seconds before it explodes into a raging inferno; throwing it would be a good idea.", "weight": "180 g", "volume": "270 ml", - "price": 2000, - "price_postapoc": 1500, + "price": "20 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "steel" ], "symbol": "*", @@ -521,8 +521,8 @@ "description": "An active incendiary grenade, likely to burst into an inferno any second now. Better throw it!", "weight": "180 g", "volume": "270 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "steel" ], "symbol": "*", @@ -543,8 +543,8 @@ "material": [ "steel" ], "symbol": "*", "color": "dark_gray", - "price": 3600, - "price_postapoc": 250, + "price": "36 USD", + "price_postapoc": "2 USD 50 cent", "description": "A canister grenade filled with noxious irritant. Use this item to pull the pin and start the fuse, turning it into an active tear gas grenade. In five seconds it will begin to expel a highly toxic gas for some time. This gas damages and slows those who enter it, as well as obscuring vision and scent.", "use_action": { "need_wielding": true, @@ -562,7 +562,7 @@ "looks_like": "smokebomb_act", "type": "GENERIC", "name": { "str": "armed tear gas grenade" }, - "price_postapoc": 0, + "price_postapoc": "0 cent", "description": "This tear gas grenade has had its pin removed and is (or will shortly be) expelling highly noxious gas.", "emits": [ "emit_tear_gas_stream" ], "countdown_interval": "50 seconds", @@ -574,8 +574,8 @@ "copy-from": "gasbomb", "type": "GENERIC", "name": { "str": "insecticidal gas grenade" }, - "price": 3600, - "price_postapoc": 750, + "price": "36 USD", + "price_postapoc": "7 USD 50 cent", "description": "A canister grenade filled with insecticidal solution. Use this item to pull the pin and start the fuse, turning it into an active insecticidal grenade. In five seconds it will begin to expel a volatile gas that is highly toxic to insect life forms.", "use_action": { "need_wielding": true, @@ -599,8 +599,8 @@ "copy-from": "gasbomb", "type": "GENERIC", "name": { "str": "makeshift insecticidal gas grenade" }, - "price": 3600, - "price_postapoc": 500, + "price": "36 USD", + "price_postapoc": "5 USD", "description": "A makeshift canister grenade filled with insecticidal solution. Use this item to pull the pin and start the fuse, turning it into an active insecticidal grenade. In five seconds it will begin to expel a volatile gas that is highly toxic to insect life forms.", "use_action": { "need_wielding": true, @@ -628,8 +628,8 @@ "weight": "2500 g", "volume": "1500 ml", "longest_side": "63 cm", - "price": 200000, - "price_postapoc": 4000, + "price": "2 kUSD", + "price_postapoc": "40 USD", "material": [ "aluminum" ], "symbol": ")", "color": "green", @@ -654,8 +654,8 @@ "weight": "26500 g", "volume": "33389 ml", "longest_side": "46 cm", - "price": 180000, - "price_postapoc": 10000, + "price": "1 kUSD 800 USD", + "price_postapoc": "100 USD", "to_hit": -4, "material": [ "aluminum", "nylon" ], "symbol": "*", @@ -679,8 +679,8 @@ "type": "TOOL_ARMOR", "name": { "str": "active SADM mininuke" }, "description": "The nuclear bomb looks no different from the outside, yet you know that the device is armed and counting down. You should probably get far, far away from it.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "use_action": { "type": "message", "message": "You've already set the %s's timer, you might want to get away from it." }, "countdown_action": { "type": "explosion", @@ -701,8 +701,8 @@ "weight": "1000 g", "volume": "960 ml", "longest_side": "276 mm", - "price": 500, - "price_postapoc": 500, + "price": "5 USD", + "price_postapoc": "5 USD", "to_hit": 1, "material": [ "glass", "cotton" ], "symbol": "*", @@ -729,8 +729,8 @@ "weight": "1000 g", "volume": "960 ml", "longest_side": "276 mm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "glass", "cotton" ], "symbol": "*", @@ -747,9 +747,9 @@ "description": "A specialized grenade designed to scramble robots' IFF control chips. This converts the robot to your side for a short time, before the backup systems kick in. Use this item to pull the pin and start the fuse, turning it into an active scrambler grenade.", "weight": "500 g", "volume": "270 ml", - "price": 6000, + "price": "60 USD", "//": "Something this useful doesn't come cheap after the apocalypse", - "price_postapoc": 5000, + "price_postapoc": "50 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -773,8 +773,8 @@ "description": "This scrambler grenade is active and will soon detonate, releasing a control wave that temporarily converts robots to your side.", "weight": "500 g", "volume": "270 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -790,8 +790,8 @@ "type": "GENERIC", "name": { "str": "smoke bomb" }, "description": "A canister grenade filled with a variety of pyrotechnic chemicals. Use this item to pull the pin and start the fuse, turning it into an active smoke bomb. Five seconds after you do that, it will begin to expel a thick black smoke. This smoke will slow those who enter it, as well as obscuring vision and scent.", - "price": 1800, - "price_postapoc": 0, + "price": "18 USD", + "price_postapoc": "0 cent", "weight": "569 g", "use_action": { "need_wielding": true, "type": "transform", "target_timer": "100 seconds", "target": "smokebomb_act" } }, @@ -813,8 +813,8 @@ "description": "A pear-shaped chunk of rocket candy obtained by heating saltpeter with sugar and casting the obtained liquid. Can serve as a rocket fuel, but also as a smokescreen - if you light the narrow end, you should be able to throw it before the flame reaches the broad end.", "weight": "250 g", "volume": "250 ml", - "price": 100, - "price_postapoc": 100, + "price": "1 USD", + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "*", @@ -838,8 +838,8 @@ "description": "A chunk of rocket candy that has been lit on fire and burns with a loud hiss, spewing forth large amounts of smoke.", "weight": "250 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "*", @@ -865,7 +865,7 @@ "description": "An improvised explosive device cobbled together from parts. Use this item to light the fuse. You will then have five seconds before it explodes; throwing it would be a good idea.", "weight": "600 g", "volume": "270 ml", - "price": 1500, + "price": "15 USD", "material": [ "aluminum", "iron" ], "symbol": "*", "color": "green", @@ -888,7 +888,7 @@ "type": "TOOL", "name": { "str": "active military explosive small homemade grenade" }, "description": "The fuse on this improvised grenade is lit, and it will explode any second now. Better throw it!", - "price": 0, + "price": "0 cent", "use_action": { "type": "message", "message": "You've already lit the %s's fuse, try throwing it instead.", "name": "Pull pin" }, "countdown_action": { "type": "explosion", "explosion": { "power": 460, "shrapnel": { "casing_mass": 200, "fragment_mass": 0.4 } } }, "flags": [ "BOMB", "TRADER_AVOID", "DANGEROUS" ] @@ -902,7 +902,7 @@ "description": "An improvised explosive device cobbled together from parts. Use this item to light the fuse. You will then have five seconds before it explodes; throwing it would be a good idea.", "weight": "1200 g", "volume": "540 ml", - "price": 3000, + "price": "30 USD", "material": [ "aluminum", "iron" ], "symbol": "*", "color": "green", @@ -925,7 +925,7 @@ "type": "TOOL", "name": { "str": "active military explosive homemade grenade" }, "description": "The fuse on this improvised grenade is lit, and it will explode any second now. Better throw it!", - "price": 0, + "price": "0 cent", "use_action": { "type": "message", "message": "You've already lit the %s's fuse, try throwing it instead.", "name": "Pull pin" }, "countdown_action": { "type": "explosion", "explosion": { "power": 920, "shrapnel": { "casing_mass": 400, "fragment_mass": 0.4 } } }, "flags": [ "BOMB", "TRADER_AVOID", "DANGEROUS" ] @@ -941,8 +941,8 @@ "//": "Only one third (410 g) of a whole pipe is being used", "volume": "280 ml", "longest_side": "229 mm", - "price": 3000, - "price_postapoc": 3000, + "price": "30 USD", + "price_postapoc": "30 USD", "to_hit": 1, "material": [ "steel" ], "symbol": "*", @@ -965,7 +965,7 @@ "name": { "str": "active military explosive pipebomb" }, "looks_like": "pipebomb_act", "description": "This pipebomb's pin is pulled, and it will explode any second now. Throw it immediately!", - "price": 0, + "price": "0 cent", "color": "light_gray", "use_action": { "type": "message", "message": "You've already pulled the %s's pin, try throwing it instead.", "name": "Pull pin" }, "countdown_action": { "type": "explosion", "explosion": { "power": 920, "shrapnel": { "casing_mass": 410, "fragment_mass": 0.5 } } }, @@ -980,7 +980,7 @@ "description": "A homemade explosive device, consisting of a large plastic jug filled with military explosives and scrap metal, equipped with a delayed fuse. Use this item to pull the pin. Once you do, it should explode after about 20 seconds.", "weight": "8760 g", "volume": "3900 ml", - "price": 20000, + "price": "200 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "*", @@ -1002,7 +1002,7 @@ "name": { "str": "active military explosive bomb" }, "looks_like": "homemade_bomb_act", "description": "A homemade explosive device, consisting of a large plastic jug filled with military explosives and scrap metal. Its fuse has been lit, its final countdown starting.", - "price": 0, + "price": "0 cent", "color": "light_red", "use_action": { "type": "message", "message": "You've already pulled the pin - run!", "name": "Pull pin" }, "countdown_action": { @@ -1020,7 +1020,7 @@ "description": "A metal keg filled with military explosives. Once it has been activated, it will explode after 100 seconds, raining fire and steel on everything in sight.", "weight": "92600 g", "volume": "52500 ml", - "price": 45000, + "price": "450 USD", "to_hit": -5, "material": [ "steel" ], "symbol": "(", @@ -1046,7 +1046,7 @@ "description": "A metal keg filled with military explosives. It has been activated and will soon explode, delivering its entire destructive power to everything in sight.", "weight": "92600 g", "volume": "52500 ml", - "price": 0, + "price": "0 cent", "to_hit": -5, "material": [ "steel" ], "symbol": "(", @@ -1066,7 +1066,7 @@ "description": "A 100 L metal barrel filled with military explosives. Once it has been activated it will explode after 100 seconds, raining fire and steel on everything in sight.", "weight": "172000 g", "volume": "105 L", - "price": 90000, + "price": "900 USD", "to_hit": -5, "material": [ "steel" ], "symbol": "(", @@ -1091,7 +1091,7 @@ "description": "A 100 L metal barrel filled with military explosives. It has been activated and will soon explode, delivering its entire destructive power to everything in sight.", "weight": "172000 g", "volume": "105 L", - "price": 0, + "price": "0 cent", "to_hit": -5, "material": [ "steel" ], "symbol": "(", @@ -1112,7 +1112,7 @@ "description": "An improvised explosive device cobbled together from spare parts. Use this item to light the fuse. You will then have 5 seconds before it explodes; throwing it would be a good idea.", "weight": "460 g", "volume": "270 ml", - "price": 750, + "price": "7 USD 50 cent", "material": [ "aluminum", "iron" ], "symbol": "*", "color": "green", @@ -1135,7 +1135,7 @@ "type": "TOOL", "name": { "str": "active small homemade grenade" }, "description": "The fuse on this improvised grenade is lit, and it will explode any second now. Better throw it!", - "price": 0, + "price": "0 cent", "use_action": { "type": "message", "message": "You've already lit the %s's fuse, try throwing it instead.", "name": "Pull pin" }, "countdown_action": { "type": "explosion", "explosion": { "power": 150, "shrapnel": { "casing_mass": 200, "fragment_mass": 0.4 } } }, "flags": [ "BOMB", "TRADER_AVOID", "DANGEROUS" ] @@ -1147,7 +1147,7 @@ "name": { "str": "homemade grenade" }, "description": "An improvised explosive device cobbled together from spare parts. Use this item to light the fuse. You will then have 5 seconds before it explodes; throwing it would be a good idea.", "weight": "900 g", - "price": 1500, + "price": "15 USD", "material": [ "aluminum", "iron" ], "symbol": "*", "color": "green", @@ -1170,7 +1170,7 @@ "type": "TOOL", "name": { "str": "active homemade grenade" }, "description": "The fuse on this improvised grenade is lit, and it will explode any second now. Better throw it!", - "price": 0, + "price": "0 cent", "use_action": { "type": "message", "message": "You've already lit the %s's fuse, try throwing it instead.", "name": "Pull pin" }, "countdown_action": { "type": "explosion", "explosion": { "power": 300, "shrapnel": { "casing_mass": 400, "fragment_mass": 0.4 } } }, "flags": [ "BOMB", "TRADER_AVOID", "DANGEROUS" ] @@ -1185,7 +1185,7 @@ "weight": "840 g", "//": "Only one third (410 g) of a whole pipe is being used", "volume": "280 ml", - "price": 1500, + "price": "15 USD", "longest_side": "229 mm", "to_hit": 1, "material": [ "steel" ], @@ -1215,7 +1215,7 @@ "weight": "840 g", "volume": "280 ml", "longest_side": "229 mm", - "price": 0, + "price": "0 cent", "to_hit": 1, "material": [ "steel" ], "symbol": "*", @@ -1235,7 +1235,7 @@ "description": "A homemade explosive device, consisting of a large plastic jug filled with stable explosives and scrap metal, equipped with a long fuse. Use this item to light the fuse. Once you do, it should explode after about 20 seconds.", "weight": "6500 g", "volume": "3900 ml", - "price": 10000, + "price": "100 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "*", @@ -1260,7 +1260,7 @@ "description": "A homemade explosive device, consisting of a large plastic jug filled with stable explosives and scrap metal. Its fuse has been lit, its final countdown starting.", "weight": "6500 g", "volume": "3900 ml", - "price": 0, + "price": "0 cent", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "*", @@ -1282,7 +1282,7 @@ "description": "An improvised demolition charge. Use this item to light the fuse. You will, of course, need a lighter or matches in your inventory to do this. 20 seconds after lighting the fuse, it will explode, so get away!", "weight": "3875 g", "volume": "3900 ml", - "price": 0, + "price": "0 cent", "to_hit": -3, "material": [ "plastic", "powder" ], "symbol": "*", @@ -1308,8 +1308,8 @@ "description": "The fuse on this primitive demolition charge is lit and hissing. It'll explode any moment now.", "weight": "3875 g", "volume": "3900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -3, "material": [ "plastic", "powder" ], "symbol": "*", @@ -1329,7 +1329,7 @@ "description": "A metal keg filled with stable explosives. Contains a volatile explosive core, so 100 seconds after the fuse has been lit the charge will detonate completely, delivering its entire destructive power to everything in sight.", "weight": "61620 g", "volume": "52500 ml", - "price": 100000, + "price": "1 kUSD", "to_hit": -5, "material": [ "steel" ], "symbol": "(", @@ -1354,7 +1354,7 @@ "description": "A metal keg filled with stable explosives. The fuse has been lit and once it ignites the primary explosive, the bomb will detonate and rain fire and steel on everything in sight.", "weight": "61620 g", "volume": "52500 ml", - "price": 0, + "price": "0 cent", "to_hit": -5, "material": [ "steel" ], "symbol": "(", @@ -1378,7 +1378,7 @@ "description": "A 100 L metal barrel filled with military explosives. Once it has been activated it will explode after 100 seconds, raining fire and steel on everything in sight.", "weight": "110610 g", "volume": "105 L", - "price": 90000, + "price": "900 USD", "to_hit": -5, "material": [ "steel" ], "symbol": "(", @@ -1403,7 +1403,7 @@ "description": "A 100 L metal barrel filled with military explosives. It has been activated and will soon explode, delivering its entire destructive power to everything in sight.", "weight": "110610 g", "volume": "105 L", - "price": 0, + "price": "0 cent", "to_hit": -5, "material": [ "steel" ], "symbol": "(", diff --git a/data/json/items/tool/fire.json b/data/json/items/tool/fire.json index 5d65415ca753b..cd722db0206ae 100644 --- a/data/json/items/tool/fire.json +++ b/data/json/items/tool/fire.json @@ -6,8 +6,8 @@ "description": "A crudely-made electric firestarter, which can function as an inefficient lighter.", "weight": "14 g", "volume": "50 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "symbol": ",", "color": "light_gray", @@ -31,8 +31,8 @@ "description": "A simple item for starting fires with friction between a notched plank and wooden shaft. The shaft is spun rapidly with a sawing motion by a bowstring wrapped around it. Very slow to acquire a usable ember.", "weight": "240 g", "volume": "400 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": ",", "color": "brown", @@ -50,8 +50,8 @@ "description": "A simple item for starting fires by friction between a notched plank and wooden shaft, with a flywheel attached. The shaft is spun rapidly with a pumping motion by a cord wrapped around it. Slow to acquire a usable ember.", "weight": "900 g", "volume": "500 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "wood", "stone" ], "symbol": ",", "color": "brown", @@ -69,8 +69,8 @@ "description": "A piece of flint paired with a hardened high carbon steel striker. Use it to spark a flame.", "weight": "400 g", "volume": "250 ml", - "price": 300, - "price_postapoc": 250, + "price": "3 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "stone", "hc_steel" ], "symbol": ",", @@ -88,8 +88,8 @@ "description": "A disposable plastic lighter, capable of creating a small flame with the flick of a finger. Allows you to use various drugs like cigarettes, light explosives like Molotov cocktails, or light nearby items on fire.", "weight": "14 g", "volume": "14 ml", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "plastic", "aluminum" ], "symbol": ",", "color": "blue", @@ -113,8 +113,8 @@ "description": "A magnifying glass, for closely examining fine details. It can also be used for starting fires if direct sunlight is available.", "weight": "400 g", "volume": "250 ml", - "price": 600, - "price_postapoc": 50, + "price": "6 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "glass", "plastic" ], "symbol": "o", @@ -130,8 +130,8 @@ "name": { "str": "crude glass lens", "str_pl": "crude glass lenses" }, "category": "spare_parts", "description": "A very low-quality focusing lens, made from non-optical-grade glass. Useless for building most optical devices, but you can start a fire with it if sunlight is available.", - "price": 300, - "price_postapoc": 80, + "price": "3 USD", + "price_postapoc": "80 cent", "material": [ "glass" ], "weight": "50 g", "volume": "20 ml", @@ -146,8 +146,8 @@ "weight": "668 g", "volume": "750 ml", "longest_side": "20 cm", - "price": 300, - "price_postapoc": 250, + "price": "3 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "wood" ], "symbol": ",", "color": "brown", @@ -164,8 +164,8 @@ "category": "container", "weight": "10 g", "volume": "10 ml", - "price": 10, - "price_postapoc": 50, + "price": "10 cent", + "price_postapoc": "50 cent", "material": [ "cardboard" ], "symbol": ",", "color": "blue", @@ -182,8 +182,8 @@ "looks_like": "matches", "weight": "2 g", "volume": "1 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "cardboard" ], "symbol": "|", "color": "red", @@ -202,8 +202,8 @@ "category": "container", "weight": "10 g", "volume": "25 ml", - "price_postapoc": 50, - "price": 10, + "price_postapoc": "50 cent", + "price": "10 cent", "material": [ "cardboard" ], "symbol": ",", "color": "blue", @@ -219,8 +219,8 @@ "description": "A stylish lighter featuring a flip-top cover and a refuelable tank, capable of creating a small flame with the flick of a finger. Allows you to use various drugs like cigarettes, light explosives like Molotov cocktails, or light nearby items on fire.", "weight": "20 g", "volume": "31 ml", - "price": 3000, - "price_postapoc": 150, + "price": "30 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "aluminum" ], "symbol": ",", "color": "light_gray", @@ -256,8 +256,8 @@ "description": "A stylish lighter featuring a flip-top cover and a refuelable tank. It is lit.", "weight": "20 g", "volume": "31 ml", - "price": 3000, - "price_postapoc": 150, + "price": "30 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "aluminum" ], "symbol": ",", "color": "light_gray", @@ -294,8 +294,8 @@ "weight": "200 g", "volume": "176 ml", "longest_side": "15 cm", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "material": [ "aluminum", "plastic" ], "symbol": ",", "color": "white", @@ -312,8 +312,8 @@ "description": "A small container for holding tinder, with holes punched in it to provide a controlled airflow. It can nurture a smoldering ember for a long time, to start fires without modern tools.", "weight": "40 g", "volume": "263 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": ",", "color": "light_gray", @@ -337,8 +337,8 @@ "description": "A small container for holding tinder, with holes punched in it to provide a controlled airflow. An ember is smoldering inside it, and can be used to start a campfire.", "weight": "40 g", "volume": "263 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": ",", "color": "light_gray", @@ -365,8 +365,8 @@ "description": "A miniature disposable plastic lighter, capable of creating a small flame with the flick of a finger. Allows you to use various drugs, like cigarettes, light explosives like Molotov cocktails, or light nearby items on fire.", "weight": "8 g", "volume": "8 ml", - "price": 6, - "price_postapoc": 6, + "price": "6 cent", + "price_postapoc": "6 cent", "material": [ "plastic", "aluminum" ], "symbol": ",", "color": "blue", diff --git a/data/json/items/tool/firefighting.json b/data/json/items/tool/firefighting.json index f7e7d8e81c9d6..23360611a1faa 100644 --- a/data/json/items/tool/firefighting.json +++ b/data/json/items/tool/firefighting.json @@ -8,8 +8,8 @@ "looks_like": "hatchet", "//": "Same stats as a hatchet (as a tool and weapon), except it has prying instead of hammering.", "description": "A short, lightweight emergency tool with a quarter-circular blade, a short pick opposite the blade, and an insulated handle. Used on airplanes to chop down or pry walls or cabinets to gain access in case of a fire.", - "price": 2500, - "price_postapoc": 750, + "price": "25 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "steel" ], "techniques": [ "WBLOCK_1" ], "weight": "907 g", @@ -30,8 +30,8 @@ "weight": "7030 g", "volume": "20000 ml", "longest_side": "50 cm", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "to_hit": -4, "material": [ "steel" ], "symbol": ";", @@ -57,9 +57,9 @@ "description": "A large, two-handed pickhead axe normally used by firefighters. It makes a powerful melee weapon, but is a bit slow to recover between swings.", "weight": "3448 g", "volume": "2 L", - "price": 20000, + "price": "200 USD", "longest_side": "90 cm", - "price_postapoc": 1500, + "price_postapoc": "15 USD", "material": [ "steel", "wood" ], "symbol": "/", "color": "light_gray", @@ -89,8 +89,8 @@ "weight": "4772 g", "volume": "550 ml", "longest_side": "76 cm", - "price": 7500, - "price_postapoc": 1500, + "price": "75 USD", + "price_postapoc": "15 USD", "material": [ "steel" ], "symbol": ";", "color": "dark_gray", @@ -108,8 +108,8 @@ "weight": "1133 g", "volume": "2000 ml", "longest_side": "40 cm", - "price": 4000, - "price_postapoc": 50, + "price": "40 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -137,8 +137,8 @@ "description": "A fire extinguisher in grenade form. While not as effective as a regular fire extinguisher, you can use it from a farther distance. It has a plastic plug that can be pulled, but is primarily activated by heat, so just throw it into the flames.", "weight": "630 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "steel" ], "symbol": "*", @@ -162,8 +162,8 @@ "description": "An active extinguisher grenade, likely to burst any second now. Better throw it!", "weight": "630 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "steel" ], "symbol": "*", @@ -181,7 +181,7 @@ "looks_like": "spear_pipe", "name": { "str": "pike pole" }, "description": "A durable tool consisting of a sturdy fiberglass shaft tipped with a small steel hook.", - "price": 10000, + "price": "100 USD", "material": [ "fiberglass", "steel" ], "techniques": [ "WBLOCK_1", "SWEEP" ], "flags": [ "DURABLE_MELEE", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR", "ALWAYS_TWOHAND" ], @@ -210,7 +210,7 @@ "looks_like": "iceaxe", "name": { "str": "New York hook" }, "description": "A shaft with a pair of hooks on one end and a pry bar on the other, forged from a single piece of steel.", - "price": 5500, + "price": "55 USD", "material": [ "steel" ], "techniques": [ "WBLOCK_1" ], "flags": [ "DURABLE_MELEE", "SHEATH_AXE" ], diff --git a/data/json/items/tool/fishing.json b/data/json/items/tool/fishing.json index f49f241b417b5..c890d66f47846 100644 --- a/data/json/items/tool/fishing.json +++ b/data/json/items/tool/fishing.json @@ -6,8 +6,8 @@ "description": "A makeshift fish trap made from plastic bottles. It's simple, even primitive, but easy to use. The principle of action: the fish swims inside to eat the bait, but can't get out. Not humane and prohibited by law, but there are no cops left to care.", "weight": "85 g", "volume": "2 L", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": ";", @@ -25,8 +25,8 @@ "weight": "800 g", "volume": "12 L", "longest_side": "50 cm", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "dry_plant" ], "symbol": ";", @@ -43,8 +43,8 @@ "description": "A simple metal fishing hook.", "weight": "1 g", "volume": "1 ml", - "price": 25, - "price_postapoc": 25, + "price": "25 cent", + "price_postapoc": "25 cent", "material": [ "steel" ], "symbol": ",", "color": "cyan", @@ -57,8 +57,8 @@ "description": "An improvised fishing hook carved from wood or bone.", "weight": "1 g", "volume": "1 ml", - "price": 25, - "price_postapoc": 25, + "price": "25 cent", + "price_postapoc": "25 cent", "material": [ "bone" ], "symbol": ",", "color": "white", @@ -72,8 +72,8 @@ "weight": "1700 g", "volume": "1250 ml", "longest_side": "90 cm", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, "material": [ "wood" ], "symbol": "/", @@ -90,8 +90,8 @@ "weight": "1000 g", "volume": "1250 ml", "longest_side": "200 cm", - "price": 20000, - "price_postapoc": 1500, + "price": "200 USD", + "price_postapoc": "15 USD", "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "neutral" }, "//": "7 lead subst. for 8 bismuth, which doesn't have its own material", "material": [ @@ -114,8 +114,8 @@ "weight": "1050 g", "volume": "1300 ml", "longest_side": "100 cm", - "price": 22000, - "price_postapoc": 1600, + "price": "220 USD", + "price_postapoc": "16 USD", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, "//": "7 lead subst. for 8 bismuth, which doesn't have its own material", "material": [ @@ -164,8 +164,8 @@ "weight": "1150 g", "volume": "600 ml", "longest_side": "50 cm", - "price": 25000, - "price_postapoc": 1750, + "price": "250 USD", + "price_postapoc": "17 USD 50 cent", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, "//": "7 lead subst. for 8 bismuth, which doesn't have its own material", "material": [ @@ -215,8 +215,8 @@ "weight": "400 g", "volume": "400 ml", "longest_side": "158 mm", - "price": 1300, - "price_postapoc": 750, + "price": "13 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": "/", @@ -233,8 +233,8 @@ "weight": "500 g", "volume": "380 ml", "longest_side": "150 mm", - "price": 3500, - "price_postapoc": 750, + "price": "35 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "wood" ], "symbol": "/", diff --git a/data/json/items/tool/handloading.json b/data/json/items/tool/handloading.json index c2b65f8739e67..fcd00048da94c 100644 --- a/data/json/items/tool/handloading.json +++ b/data/json/items/tool/handloading.json @@ -7,8 +7,8 @@ "weight": "6350 g", "volume": "500 ml", "longest_side": "30 cm", - "price": 10000, - "price_postapoc": 2000, + "price": "100 USD", + "price_postapoc": "20 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": ";", @@ -23,8 +23,8 @@ "weight": "348 g", "volume": "250 ml", "longest_side": "30 cm", - "price": 600, - "price_postapoc": 1500, + "price": "6 USD", + "price_postapoc": "15 USD", "to_hit": -2, "material": [ "wood", "plastic", "brass" ], "symbol": ";", @@ -40,8 +40,8 @@ "weight": "489 g", "volume": "250 ml", "longest_side": "35 cm", - "price": 1000, - "price_postapoc": 2000, + "price": "10 USD", + "price_postapoc": "20 USD", "material": [ "plastic" ], "symbol": ";", "color": "green", diff --git a/data/json/items/tool/integrated.json b/data/json/items/tool/integrated.json index 2fa41dd372a47..176fbaa5b9b95 100644 --- a/data/json/items/tool/integrated.json +++ b/data/json/items/tool/integrated.json @@ -7,7 +7,7 @@ "description": "The internal tank for a gasoline fuel cell bionic.", "volume": "501 ml", "weight": "1 g", - "price": 0, + "price": "0 cent", "material": [ "plastic" ], "symbol": "(", "color": "magenta", @@ -32,7 +32,7 @@ "description": "The internal ethanol tank for an ethanol burner bionic.", "volume": "401 ml", "weight": "1 g", - "price": 0, + "price": "0 cent", "material": [ "plastic" ], "symbol": "(", "color": "magenta", @@ -57,7 +57,7 @@ "description": "The internal oil tank for an oil generator bionic.", "volume": "751 ml", "weight": "1 g", - "price": 0, + "price": "0 cent", "material": [ "plastic" ], "symbol": "(", "color": "magenta", @@ -81,7 +81,7 @@ "description": "The internal compartment for holding medium sized batteries, for a battery system bionic.", "volume": "750 ml", "weight": "1 g", - "price": 0, + "price": "0 cent", "material": [ "plastic" ], "symbol": "(", "color": "magenta", @@ -102,8 +102,8 @@ "category": "armor", "weight": "100 g", "volume": "75 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "symbol": ",", "color": "brown", "warmth": 0, @@ -157,8 +157,8 @@ "category": "armor", "weight": "100 g", "volume": "50 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "symbol": ",", "color": "brown", "warmth": 0, diff --git a/data/json/items/tool/knives.json b/data/json/items/tool/knives.json index 39b70b4fe10c7..d97b5c3fbff57 100644 --- a/data/json/items/tool/knives.json +++ b/data/json/items/tool/knives.json @@ -7,8 +7,8 @@ "weight": "200 g", "volume": "300 ml", "longest_side": "25 cm", - "price": 3000, - "price_postapoc": 10, + "price": "30 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "copper" ], "symbol": ";", @@ -27,8 +27,8 @@ "weight": "450 g", "volume": "250 ml", "longest_side": "20 cm", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "neutral" }, "material": [ "bronze", "leather" ], "symbol": "/", @@ -48,8 +48,8 @@ "description": "A short, sturdy knife with a serrated edge for cutting lines and straps, and a blunt tip for prying. Used primarily by divers, this knife has been fitted with cork to slow its descent if dropped underwater, so it takes up more space than usual.", "weight": "226 g", "volume": "250 ml", - "price": 14000, - "price_postapoc": 500, + "price": "140 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -68,8 +68,8 @@ "weight": "580 g", "volume": "250 ml", "longest_side": "46 cm", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "steel" ], "symbol": ",", @@ -86,8 +86,8 @@ "description": "A small pocket knife. It isn't great for combat, but it's better than nothing. It's sharp enough to butcher with.", "weight": "20 g", "volume": "10 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", @@ -105,8 +105,8 @@ "weight": "453 g", "volume": "250 ml", "longest_side": "25 cm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -3, "material": [ "wood", "stone" ], "symbol": ";", @@ -124,8 +124,8 @@ "weight": "23 g", "volume": "20 ml", "longest_side": "12 cm", - "price": 400, - "price_postapoc": 100, + "price": "4 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", diff --git a/data/json/items/tool/landscaping.json b/data/json/items/tool/landscaping.json index 6112305fa0562..9e08fea06a402 100644 --- a/data/json/items/tool/landscaping.json +++ b/data/json/items/tool/landscaping.json @@ -8,8 +8,8 @@ "weight": "1133 g", "volume": "1500 ml", "longest_side": "90 cm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "wood" ], "symbol": "/", @@ -26,8 +26,8 @@ "weight": "280 g", "volume": "500 ml", "longest_side": "25 cm", - "price": 20, - "price_postapoc": 50, + "price": "20 cent", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "steel" ], "symbol": "/", @@ -45,8 +45,8 @@ "weight": "1088 g", "volume": "3500 ml", "longest_side": "140 cm", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "steel", "wood" ], "symbol": "/", @@ -66,8 +66,8 @@ "weight": "3100 g", "volume": "3500 ml", "longest_side": "140 cm", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "bronze", "wood" ], "symbol": "/", @@ -88,7 +88,7 @@ "weight": "1581 g", "volume": "4 L", "longest_side": "120 cm", - "price": 100, + "price": "1 USD", "material": [ "wood" ], "symbol": "/", "color": "brown", @@ -103,8 +103,8 @@ "weight": "1500 g", "volume": "3500 ml", "longest_side": "150 cm", - "price": 1000, - "price_postapoc": 150, + "price": "10 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "steel", "wood" ], "symbol": "/", "color": "brown", @@ -119,8 +119,8 @@ "weight": "1000 g", "volume": "3500 ml", "longest_side": "150 cm", - "price": 750, - "price_postapoc": 100, + "price": "7 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "plastic", "wood" ], "symbol": "/", "color": "brown", @@ -135,8 +135,8 @@ "weight": "2140 g", "volume": "3250 ml", "longest_side": "140 cm", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "uneven" }, "material": [ "steel", "wood" ], "symbol": "/", @@ -160,8 +160,8 @@ "extend": { "flags": [ "FRAGILE_MELEE" ] }, "material": [ "aluminum", "wood" ], "weight": "1840 g", - "price": 4000, - "price_postapoc": 40 + "price": "40 USD", + "price_postapoc": "40 cent" }, { "id": "scythe_toy", @@ -173,8 +173,8 @@ "weight": "586 g", "volume": "3550 ml", "longest_side": "150 cm", - "price": 3000, - "price_postapoc": 5, + "price": "30 USD", + "price_postapoc": "5 cent", "to_hit": { "grip": "solid", "length": "long", "surface": "any", "balance": "uneven" }, "material": [ "plastic" ], "flags": [ "NONCONDUCTIVE", "FRAGILE_MELEE", "POLEARM", "SHEATH_SPEAR", "REACH_ATTACK" ], @@ -189,8 +189,8 @@ "weight": "2032 g", "volume": "3500 ml", "longest_side": "140 cm", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 3, "material": [ "steel", "wood" ], "symbol": "/", @@ -209,8 +209,8 @@ "weight": "2000 g", "volume": "4000 ml", "longest_side": "150 cm", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 2, "material": [ "steel", "wood" ], "symbol": "/", @@ -229,8 +229,8 @@ "weight": "1500 g", "volume": "3500 ml", "longest_side": "150 cm", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": 2, "material": [ "plastic", "wood" ], "symbol": "/", @@ -247,8 +247,8 @@ "weight": "470 g", "volume": "800 ml", "longest_side": "35 cm", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "stone", "wood" ], "symbol": "/", @@ -267,8 +267,8 @@ "weight": "907 g", "volume": "1250 ml", "longest_side": "50 cm", - "price": 3800, - "price_postapoc": 250, + "price": "38 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "steel", "wood" ], "symbol": "/", @@ -287,8 +287,8 @@ "weight": "1 kg", "volume": "1250 ml", "longest_side": "50 cm", - "price": 1800, - "price_postapoc": 250, + "price": "18 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "bronze", "wood" ], "symbol": "L", @@ -307,8 +307,8 @@ "weight": "2400 g", "volume": "2500 ml", "longest_side": "150 cm", - "price": 5500, - "price_postapoc": 250, + "price": "55 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "wood", "steel" ], "symbol": "/", "color": "brown", @@ -327,8 +327,8 @@ "weight": "3000 g", "volume": "2500 ml", "longest_side": "150 cm", - "price": 5500, - "price_postapoc": 250, + "price": "55 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "wood", "bronze" ], "symbol": "/", "color": "yellow", @@ -347,8 +347,8 @@ "weight": "4500 g", "volume": "2500 ml", "longest_side": "100 cm", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "/", diff --git a/data/json/items/tool/lighting.json b/data/json/items/tool/lighting.json index dfe11a87023eb..606a7655907d0 100644 --- a/data/json/items/tool/lighting.json +++ b/data/json/items/tool/lighting.json @@ -7,8 +7,8 @@ "description": "Powered by the magic of nuclear decay and low-energy LEDs, this very expensive lamp will emit a small amount of light for at least a decade. Before the Cataclysm, it was mostly an expensive way to show off your preparedness. Now, it's actually really useful. Use it to close the cover and hide the light.", "weight": "1438 g", "volume": "1 L", - "price": 175000, - "price_postapoc": 4000, + "price": "1 kUSD 750 USD", + "price_postapoc": "40 USD", "to_hit": -2, "material": [ "plastic", "aluminum" ], "symbol": ",", @@ -25,8 +25,8 @@ "description": "Powered by the magic of nuclear decay and low-energy LEDs, this very expensive lamp will emit a small amount of light for at least a decade. Before the Cataclysm, it was mostly an expensive way to show off your preparedness. Now, it's actually really useful. The cover is closed. Use it to open the cover and show the light.", "weight": "1438 g", "volume": "1 L", - "price": 175000, - "price_postapoc": 4000, + "price": "1 kUSD 750 USD", + "price_postapoc": "40 USD", "to_hit": -2, "material": [ "plastic", "aluminum" ], "symbol": ",", @@ -49,8 +49,8 @@ "description": "Powered by the magic of nuclear decay and low-energy LEDs, this extremely expensive little light will provide just enough light to read by for at least a decade. It is also available with a cute cartoon bear cover to turn it into a nightlight for a very wealthy child with a fear of the dark. Use it to close the cover and hide the light.", "weight": "214 g", "volume": "250 ml", - "price": 125000, - "price_postapoc": 4000, + "price": "1 kUSD 250 USD", + "price_postapoc": "40 USD", "to_hit": -2, "material": [ "plastic", "aluminum" ], "symbol": ",", @@ -72,8 +72,8 @@ "description": "Powered by the magic of nuclear decay and low-energy LEDs, this extremely expensive little light will provide just enough light to read by for at least a decade. It is also available with a cute cartoon bear cover to turn it into a nightlight for a very wealthy child with a fear of the dark. The cover is closed. Use it to open the cover and show the light.", "weight": "214 g", "volume": "250 ml", - "price": 125000, - "price_postapoc": 4000, + "price": "1 kUSD 250 USD", + "price_postapoc": "40 USD", "to_hit": -2, "material": [ "plastic", "aluminum" ], "symbol": ",", @@ -96,8 +96,8 @@ "weight": "370 g", "volume": "550 ml", "longest_side": "12 cm", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "paraffin_wax" ], "symbol": ",", @@ -140,8 +140,8 @@ "description": "A battery-powered lamp. It does not provide much light, but it lasts a long time.", "weight": "980 g", "volume": "1 L", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": 2, "material": [ "plastic" ], "symbol": ";", @@ -194,8 +194,8 @@ "weight": "280 g", "volume": "270 ml", "longest_side": "14 cm", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "charges_per_use": 1, "ammo": [ "battery" ], "flags": [ "BELT_CLIP", "WATER_BREAK_ACTIVE", "HELMET_HEAD_ATTACHMENT", "HEAD_STRAP_MOUNT" ], @@ -245,8 +245,8 @@ "weight": "48 g", "volume": "45 ml", "longest_side": "10 cm", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "charges_per_use": 1, "ammo": [ "battery" ], "flags": [ "BELT_CLIP", "HELMET_HEAD_ATTACHMENT", "HEAD_STRAP_MOUNT" ], @@ -297,8 +297,8 @@ "weight": "40 g", "volume": "38 ml", "longest_side": "10 cm", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "charges_per_use": 1, "ammo": [ "battery" ], "flags": [ "BELT_CLIP", "HELMET_HEAD_ATTACHMENT", "HEAD_STRAP_MOUNT" ], @@ -349,8 +349,8 @@ "weight": "182 g", "volume": "185 ml", "longest_side": "13 cm", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "charges_per_use": 1, "ammo": [ "battery" ], "flags": [ "BELT_CLIP", "HELMET_HEAD_ATTACHMENT", "HEAD_STRAP_MOUNT", "WRIST_MOUNT_ATTACHMENT" ], @@ -471,8 +471,8 @@ "description": "A small gasoline-powered lantern. It does not provide much light, but it lasts a long time. Use it to turn it on.", "weight": "1400 g", "volume": "750 ml", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "to_hit": 2, "material": [ "glass", "steel" ], "symbol": ";", @@ -519,8 +519,8 @@ "description": "A small blue-light glowstick. Use it to bend the plastic and break the glass cylinder inside to start the reaction. It will produce a small amount of light.", "weight": "29 g", "volume": "25 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": ";", @@ -544,8 +544,8 @@ "description": "A spent glowstick. It is essentially trash.", "weight": "29 g", "volume": "25 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": ";", @@ -580,8 +580,8 @@ "color": "light_red", "weight": "128 g", "volume": "250 ml", - "price": 400, - "price_postapoc": 100, + "price": "4 USD", + "price_postapoc": "1 USD", "pocket_data": [ { "pocket_type": "MAGAZINE", "ammo_restriction": { "flare_nitrate": 300 }, "rigid": true } ], "ammo": "flare_nitrate", "use_action": { @@ -627,8 +627,8 @@ "weight": "450 g", "volume": "470 ml", "longest_side": "37 cm", - "price": 950, - "price_postapoc": 200, + "price": "9 USD 50 cent", + "price_postapoc": "2 USD", "material": [ "aluminum" ], "symbol": ";", "color": "blue", @@ -675,8 +675,8 @@ "name": { "str": "lightstrip base" }, "weight": "27 g", "volume": "50 ml", - "price": 500, - "price_postapoc": 25, + "price": "5 USD", + "price_postapoc": "25 cent", "to_hit": 2, "material": [ "plastic", "aluminum" ], "symbol": ";", @@ -734,8 +734,8 @@ "description": "An oil-fueled lamp. It does not provide much light, but it lasts a long time. Use it to turn it on.", "weight": "1720 g", "volume": "1 L", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": 2, "material": [ "glass", "iron" ], "symbol": ";", @@ -782,8 +782,8 @@ "description": "A specialized small clay container with a wick, an ancient form of oil lamp. Unlike newer designs, it isn't windproof, so the flame is likely to be extinguished if exposed to wind; better use it indoors. It does not provide much light, but it lasts a long time. Use it to light it.", "weight": "620 g", "volume": "300 ml", - "price": 800, - "price_postapoc": 100, + "price": "8 USD", + "price_postapoc": "1 USD", "material": [ "clay" ], "symbol": ";", "color": "brown", @@ -831,8 +831,8 @@ "description": "An antique brass lamp designed to run from a pressurized cylinder of acetylene. It is an efficient, if somewhat dangerous, light source.", "weight": "800 g", "volume": "500 ml", - "price": 6500, - "price_postapoc": 100, + "price": "65 USD", + "price_postapoc": "1 USD", "symbol": ";", "color": "red", "material": [ "copper", "glass" ], @@ -868,8 +868,8 @@ "description": "A little clip-on LED light, meant for reading books in the dark.", "weight": "90 g", "volume": "100 ml", - "price": 100, - "price_postapoc": 100, + "price": "1 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "aluminum" ], "symbol": ";", "color": "white", @@ -917,8 +917,8 @@ "description": "A smart lamp that can be activated remotely.", "weight": "400 g", "volume": "500 ml", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "plastic", "aluminum" ], "symbol": "&", @@ -978,8 +978,8 @@ "volume": "1089 ml", "longest_side": "122 cm", "//": "dimensions from pool_cue as least heavy ingredient from all", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ { "type": "wood", "portion": 14 }, { "type": "cotton", "portion": 1 }, { "type": "gasoline", "portion": 1 } ], "symbol": "/", @@ -1006,8 +1006,8 @@ "weight": "623 g", "volume": "1089 ml", "longest_side": "122 cm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ { "type": "wood", "portion": 14 }, { "type": "cotton", "portion": 1 }, { "type": "gasoline", "portion": 1 } ], "symbol": "/", @@ -1038,8 +1038,8 @@ "description": "A small propane-powered lantern. It does not provide much light, but it lasts a long time. Use it to turn it on.", "weight": "1400 g", "volume": "750 ml", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "to_hit": 2, "material": [ "glass", "steel" ], "symbol": ";", diff --git a/data/json/items/tool/masonry.json b/data/json/items/tool/masonry.json index 2423dd12e8ba9..1c59defbe3b23 100644 --- a/data/json/items/tool/masonry.json +++ b/data/json/items/tool/masonry.json @@ -7,8 +7,8 @@ "weight": "4500 g", "volume": "2500 ml", "longest_side": "25 cm", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": "/", @@ -91,8 +91,8 @@ "weight": "4500 g", "volume": "2500 ml", "longest_side": "25 cm", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": "/", @@ -186,8 +186,8 @@ "name": { "str": "grinder blade" }, "description": "A 125 mm angle grinder blade. You could make a power tool with it, or throw it. Wielding it without sturdy gloves is a bad idea.", "category": "spare_parts", - "price": 20, - "price_postapoc": 500, + "price": "20 cent", + "price_postapoc": "5 USD", "material": [ "steel" ], "weight": "349 g", "volume": "250 ml", diff --git a/data/json/items/tool/med.json b/data/json/items/tool/med.json index 38400c0bc4f42..21e657d543e6c 100644 --- a/data/json/items/tool/med.json +++ b/data/json/items/tool/med.json @@ -7,8 +7,8 @@ "description": "A small medical dressing made of a piece of sterile cloth and sticky tape, used for small injuries not serious enough to require a full-size bandage.", "weight": "2 g", "volume": "2 ml", - "price": 5, - "price_postapoc": 2, + "price": "5 cent", + "price_postapoc": "2 cent", "material": "cotton", "symbol": "!", "color": "white", @@ -23,8 +23,8 @@ "description": "A wet wipe saturated with alcohol and stored in a sterile package. Used for personal hygiene or disinfecting small wounds.", "weight": "2 g", "volume": "3 ml", - "price": 10, - "price_postapoc": 6, + "price": "10 cent", + "price_postapoc": "6 cent", "symbol": ",", "color": "white", "flags": [ "SINGLE_USE", "IRREPLACEABLE_CONSUMABLE" ], @@ -38,8 +38,8 @@ "category": "drugs", "weight": "100 g", "volume": "3250 ml", - "price": 1000, - "price_postapoc": 1500, + "price": "10 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "glass" ], "symbol": "!", @@ -56,8 +56,8 @@ "description": "A sterile cloth bandage. Used for stopping blood loss and protecting wounds from aggravation to help them heal faster.", "weight": "70 g", "volume": "27 ml", - "price": 65, - "price_postapoc": 20, + "price": "65 cent", + "price_postapoc": "20 cent", "material": [ "cotton" ], "symbol": "!", "color": "white", @@ -73,7 +73,7 @@ "//": "10 x 60 cm, three out of a sheet", "weight": "12600 mg", "volume": "16 ml", - "price_postapoc": 3, + "price_postapoc": "3 cent", "flags": [ "SINGLE_USE" ], "use_action": { "type": "heal", "bandages_power": 2, "bleed": 10, "move_cost": 6000 } }, @@ -83,7 +83,7 @@ "name": { "str": "bleached makeshift bandage" }, "copy-from": "bandages_makeshift", "description": "A piece of cloth treated with a bleach solution to sterilize it for use as a bandage.", - "price_postapoc": 15, + "price_postapoc": "15 cent", "flags": [ "SINGLE_USE" ], "use_action": { "type": "heal", "bandages_power": 3, "bleed": 10, "move_cost": 6000 } }, @@ -93,7 +93,7 @@ "name": { "str": "boiled makeshift bandage" }, "copy-from": "bandages_makeshift", "description": "A piece of cloth boiled in water to sterilize it for use as a bandage.", - "price_postapoc": 15, + "price_postapoc": "15 cent", "flags": [ "SINGLE_USE" ], "use_action": { "type": "heal", "bandages_power": 3, "bleed": 10, "move_cost": 6000 } }, @@ -105,8 +105,8 @@ "category": "spare_parts", "weight": "22 g", "volume": "25 ml", - "price": 50, - "price_postapoc": 5, + "price": "50 cent", + "price_postapoc": "5 cent", "material": [ "cotton" ], "symbol": "*", "color": "white", @@ -122,8 +122,8 @@ "weight": "80 g", "//": "Can't copy-from rag, it breaks the stacking for some reason!", "volume": "250 ml", - "price": 250, - "price_postapoc": 50, + "price": "2 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": ",", "color": "white", @@ -145,8 +145,8 @@ "weight": "25 g", "//": "Can't copy-from cotton_ball, breaks volume", "volume": "30 ml", - "price": 250, - "price_postapoc": 50, + "price": "2 USD 50 cent", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "*", "color": "white", @@ -167,8 +167,8 @@ "description": "An albuterol inhaler. Used in the treatment of bronchospasm, it is a lifeline for people with asthma. A mild stimulant, it may cause anxiety or tremors.", "weight": "85 g", "volume": "100 ml", - "price": 5000, - "price_postapoc": 750, + "price": "50 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "plastic" ], "symbol": "!", "color": "light_blue", @@ -193,8 +193,8 @@ "description": "A decent-sized piece of cotton, sterilized and sealed. It's designed for medical purposes.", "weight": "90 g", "volume": "200 ml", - "price": 350, - "price_postapoc": 200, + "price": "3 USD 50 cent", + "price_postapoc": "2 USD", "material": [ "cotton" ], "symbol": ",", "color": "white", @@ -210,8 +210,8 @@ "//1": "stats *exclude* contents", "weight": "5 g", "volume": "50 ml", - "price": 25, - "price_postapoc": 5, + "price": "25 cent", + "price_postapoc": "5 cent", "material": [ "plastic" ], "symbol": "!", "color": "white", @@ -236,8 +236,8 @@ "category": "drugs", "weight": "316 g", "volume": "500 ml", - "price": 100000, - "price_postapoc": 1500, + "price": "1 kUSD", + "price_postapoc": "15 USD", "material": [ "ceramic", "superalloy" ], "symbol": ",", "color": "light_gray", @@ -255,8 +255,8 @@ "weight": "23 g", "volume": "15 ml", "longest_side": "13 cm", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "steel" ], "symbol": ",", @@ -274,8 +274,8 @@ "weight": "800 g", "volume": "1100 ml", "longest_side": "22 cm", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", @@ -297,8 +297,8 @@ "volume": "10ml", "longest_side": "10 cm", "to_hit": { "grip": "none", "length": "hand", "surface": "point", "balance": "neutral" }, - "price": 2500, - "price_postapoc": 10, + "price": "25 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": ",", "color": "white", @@ -313,8 +313,8 @@ "description": "A plastic thermometer that can read the air temperature.", "weight": "10 g", "volume": "25 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "plastic" ], "ascii_picture": "thermometer", @@ -331,8 +331,8 @@ "weight": "2721 g", "volume": "3750 ml", "longest_side": "42 cm", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -353,8 +353,8 @@ "description": "A kit for drawing blood, including a test tube for holding the sample. Use this tool to draw blood, either from yourself or from a corpse you are standing on.", "weight": "13 g", "volume": "262 ml", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "plastic" ], "symbol": ";", @@ -379,8 +379,8 @@ "description": "A badge that detects radiation dosage, sealed in a radiation-blocking bag. Use it to remove it from the bag.", "weight": "25 g", "volume": "25 ml", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": ",", "color": "light_blue", @@ -400,8 +400,8 @@ "weight": "50 g", "volume": "95 ml", "longest_side": "14 cm", - "price": 700, - "price_postapoc": 20, + "price": "7 USD", + "price_postapoc": "20 cent", "to_hit": -1, "material": [ "steel" ], "symbol": ",", @@ -427,8 +427,8 @@ "//": "250 g of solution, 5g of bag, 8 g of tube with cannula", "weight": "263 g", "volume": "295 ml", - "price": 999, - "price_postapoc": 25, + "price": "9 USD 99 cent", + "price_postapoc": "25 cent", "symbol": ")", "color": "light_gray", "use_action": [ @@ -455,8 +455,8 @@ "description": "A sealed plastic bag for liquids used in intravenous therapy, with rubber tube and cannula - all you need to perform an infusion. Holds 500 mL of completely sterile saline, therefore it is safe to put it inside your veins, if you know how.", "weight": "518 g", "volume": "590 ml", - "price": 749, - "price_postapoc": 50, + "price": "7 USD 49 cent", + "price_postapoc": "50 cent", "symbol": ")", "color": "light_gray", "use_action": [ @@ -483,8 +483,8 @@ "description": "A large, sealed plastic bag for liquids used in intravenous therapy, with rubber tube and cannula - all you need to perform an infusion. Holds a liter of completely sterile saline, therefore it is safe to put it inside your veins, if you know how.", "weight": "1028 g", "volume": "1180 ml", - "price": 942, - "price_postapoc": 100, + "price": "9 USD 42 cent", + "price_postapoc": "1 USD", "symbol": ")", "color": "light_gray", "use_action": [ @@ -511,8 +511,8 @@ "description": "A huge, sealed plastic bag for liquids used in intravenous therapy, with rubber tube and cannula - all you need to perform an infusion. Holds two liters of completely sterile saline, therefore it is safe to put it inside your veins, if you know how.", "weight": "2048 g", "volume": "2360 ml", - "price": 1399, - "price_postapoc": 200, + "price": "13 USD 99 cent", + "price_postapoc": "2 USD", "symbol": ")", "color": "light_gray", "use_action": [ diff --git a/data/json/items/tool/metalworking.json b/data/json/items/tool/metalworking.json index 029f0e12dc930..f669ecce2bebb 100644 --- a/data/json/items/tool/metalworking.json +++ b/data/json/items/tool/metalworking.json @@ -6,8 +6,8 @@ "description": "A heavy block of oddly-shaped steel complete with a pritchel hole and hardy hole. Once installed, it can be used in most metalworking fabrication recipes.", "weight": "26 kg", "volume": "12 L", - "price": 100000, - "price_postapoc": 2000, + "price": "1 kUSD", + "price_postapoc": "20 USD", "to_hit": -5, "material": [ "steel" ], "symbol": ";", @@ -22,8 +22,8 @@ "description": "A block of oddly-shaped bronze complete with a pritchel hole and hardy hole. Once installed, it can be used in most metalworking fabrication recipes.", "weight": "26 kg", "volume": "12 L", - "price": 60000, - "price_postapoc": 750, + "price": "600 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -5, "material": [ "bronze" ], "symbol": ";", @@ -38,8 +38,8 @@ "description": "An absolutely enormous block of oddly-shaped steel with all the bells and whistles a blacksmith could ask for on an anvil. Necessary for heavy-duty metalworking or dropping on roadrunners.", "weight": "225 kg", "volume": "110 L", - "price": 100000, - "price_postapoc": 2000, + "price": "1 kUSD", + "price_postapoc": "20 USD", "to_hit": -5, "material": [ "steel" ], "symbol": ";", @@ -54,8 +54,8 @@ "description": "An anvil-shaped object cut out of some form of metal stock or a railroad track. Usable on its own for simpler metalworking, but could be improved for more advanced recipes.", "weight": "27 kg", "volume": "12 L", - "price": 100000, - "price_postapoc": 2000, + "price": "1 kUSD", + "price_postapoc": "20 USD", "to_hit": -5, "material": [ "steel" ], "symbol": ";", @@ -72,7 +72,7 @@ "volume": "2750 ml", "longest_side": "46 cm", "price": "22 USD", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ { "type": "steel", "portion": 17 }, { "type": "plastic", "portion": 3 } ], "symbol": ";", "color": "red", @@ -89,8 +89,8 @@ "description": "A portable, charcoal-fired metalworking forge. With the right tools, you could use this for metalworking.", "weight": "8600 g", "volume": "8 L", - "price": 20000, - "price_postapoc": 3000, + "price": "200 USD", + "price_postapoc": "30 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -109,8 +109,8 @@ "description": "A stout metal box used for producing charcoal via pyrolysis: the incomplete burning of organic materials in the absence of oxygen.", "weight": "6400 g", "volume": "7500 ml", - "price": 16000, - "price_postapoc": 1000, + "price": "160 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -125,8 +125,8 @@ "description": "A short, stout metalworking chisel. It's used in some metalworking fabrication recipes.", "weight": "660 g", "volume": "250 ml", - "price": 1600, - "price_postapoc": 250, + "price": "16 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel" ], "symbol": ";", @@ -142,7 +142,7 @@ "name": { "str": "bronze chisel" }, "description": "A short, stout metalworking chisel made of bronze. It's used in some metalworking fabrication recipes. Bronze chisels spark less than their steel counterparts, but are less durable.", "weight": "735 g", - "price": 2000, + "price": "20 USD", "material": [ "bronze" ], "qualities": [ [ "CHISEL", 2 ], [ "CHISEL_WOOD", 2 ] ] }, @@ -153,8 +153,8 @@ "description": "A small metalworking crucible. Looks like a stout drink tumbler. It's used in some metalworking fabrication recipes.", "weight": "1400 g", "volume": "2 L", - "price": 100000, - "price_postapoc": 750, + "price": "1 kUSD", + "price_postapoc": "7 USD 50 cent", "to_hit": -2, "material": [ "ceramic" ], "symbol": ";", @@ -179,8 +179,8 @@ "description": "A primitive metalworking crucible made of clay. Looks like a stout drink tumbler. You could use it for metalworking.", "weight": "1642 g", "volume": "2500 ml", - "price": 60000, - "price_postapoc": 250, + "price": "600 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "clay" ], "symbol": ";", @@ -205,8 +205,8 @@ "description": "An electric metalworking forge, powered by your electric grid. With the right tools, you could use this for metalworking.", "weight": "10000 g", "volume": "6 L", - "price": 40000, - "price_postapoc": 4000, + "price": "400 USD", + "price_postapoc": "40 USD", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": ";", @@ -224,8 +224,8 @@ "description": "A charcoal kiln that has finished burning. Disassemble it to get the charcoal.", "weight": "8142 g", "volume": "10 L", - "price": 100, - "price_postapoc": 500, + "price": "1 USD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -239,8 +239,8 @@ "description": "A kiln filled with wood which will become charcoal after a slow period of burning.", "weight": "15142 g", "volume": "10 L", - "price": 100, - "price_postapoc": 500, + "price": "1 USD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "steel", "wood" ], "symbol": ";", @@ -263,8 +263,8 @@ "description": "A kiln full of wood that has been lit; better drop it!", "weight": "15142 g", "volume": "10 L", - "price": 100, - "price_postapoc": 500, + "price": "1 USD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "steel", "wood" ], "symbol": ";", @@ -287,8 +287,8 @@ "description": "A sheet of riveted chainmail. With some skill, several of these sheets could be connected to make effective armor.", "weight": "1000 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "material": [ "iron" ], "symbol": ",", "color": "light_gray", @@ -302,8 +302,8 @@ "description": "A sheet of riveted chainmail. With some skill, several of these sheets could be connected to make effective armor.", "weight": "1000 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "material": [ "lc_steel" ], "symbol": ",", "color": "light_gray", @@ -344,8 +344,8 @@ "description": "A set of swages and dies for metalsmithing. These loops and metal blocks are used in some metalworking fabrication recipes.", "weight": "2620 g", "volume": "2 L", - "price": 16000, - "price_postapoc": 250, + "price": "160 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "steel" ], "symbol": ";", @@ -367,8 +367,8 @@ "description": "A hardened chisel-like object for metalsmithing. It's used to cut lengths of metal in some metalworking fabrication recipes.", "weight": "800 g", "volume": "500 ml", - "price": 1600, - "price_postapoc": 200, + "price": "16 USD", + "price_postapoc": "2 USD", "to_hit": 1, "material": [ "steel" ], "symbol": ";", @@ -383,8 +383,8 @@ "description": "A hardened spike-like object for metalsmithing. It's used to make holes in metal in some metalworking fabrication recipes.", "weight": "1200 g", "volume": "750 ml", - "price": 2400, - "price_postapoc": 200, + "price": "24 USD", + "price_postapoc": "2 USD", "to_hit": 1, "material": [ "steel" ], "symbol": ";", @@ -401,7 +401,7 @@ "volume": "210 ml", "longest_side": "30 cm", "price": "13 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -427,7 +427,7 @@ "volume": "662 ml", "longest_side": "44 cm", "price": "39 USD", - "price_postapoc": 300, + "price_postapoc": "3 USD", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -445,8 +445,8 @@ "description": "A sheet of rough paper. It is commonly used in metalworking and carpentry.", "weight": "10 g", "volume": "50 ml", - "price": 1600, - "price_postapoc": 10, + "price": "16 USD", + "price_postapoc": "10 cent", "material": "paper", "symbol": "`", "color": "brown", @@ -459,8 +459,8 @@ "description": "A patch of leather paired with a handful of sand. Works as a substitute for sandpaper.", "weight": "25160 mg", "volume": "23 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": "leather", "symbol": "`", "color": "brown", @@ -473,8 +473,8 @@ "description": "A piece of metal with holes of varying size drilled into it. Used as part of wire drawing.", "weight": "200 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "steel" ], "symbol": "]", @@ -522,8 +522,8 @@ "weight": "19200 g", "volume": "36 L", "longest_side": "40 cm", - "price": 800, - "price_postapoc": 10, + "price": "8 USD", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "sand", "clay", "wood" ], "symbol": ";", @@ -538,8 +538,8 @@ "description": "A large natural stone with a flat surface to grind against.", "weight": "8000 g", "volume": "3 L", - "price": 400, - "price_postapoc": 15, + "price": "4 USD", + "price_postapoc": "15 cent", "to_hit": -2, "material": [ "stone" ], "color": "dark_gray", @@ -555,8 +555,8 @@ "description": "A round, pedal-powered grindstone, useful for grinding metal.", "weight": "15000g", "volume": "4 L", - "price": 1500, - "price_postapoc": 35, + "price": "15 USD", + "price_postapoc": "35 cent", "to_hit": -5, "material": [ "stone", "wood", "steel" ], "color": "dark_gray", @@ -571,8 +571,8 @@ "description": "A hardened steel tool similar to a drawknife, but for metal.", "weight": "500g", "volume": "500 ml", - "price": 1200, - "price_postapoc": 20, + "price": "12 USD", + "price_postapoc": "20 cent", "to_hit": -1, "material": [ "wood", "steel" ], "color": "brown", @@ -589,8 +589,8 @@ "description": "A gas-fueled metalworking forge. With the right tools, you could use this for metalworking.", "weight": "32205 g", "volume": "8 L", - "price": 80000, - "price_postapoc": 10000, + "price": "800 USD", + "price_postapoc": "100 USD", "to_hit": -5, "material": [ "steel" ], "symbol": ";", diff --git a/data/json/items/tool/misc.json b/data/json/items/tool/misc.json index 038eb89cf8bed..ad81ae562118c 100644 --- a/data/json/items/tool/misc.json +++ b/data/json/items/tool/misc.json @@ -6,8 +6,8 @@ "description": "A small can of compressed air attached to a plastic horn. Pressing the button on top causes it to emit a loud honking sound.", "weight": "467 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "to_hit": -4, "material": [ "plastic", "aluminum" ], "symbol": ";", @@ -34,8 +34,8 @@ "description": "A wind-up alarm clock. Though the noise it makes is unpleasant to wake up to, it's always good to get an early start to your day. Can also be disassembled into some useful parts.", "weight": "562 g", "volume": "250 ml", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "aluminum", "glass" ], "symbol": ",", @@ -54,8 +54,8 @@ "looks_like": "spray_can", "weight": "364 g", "volume": "500 ml", - "price": 1500, - "price_postapoc": 250, + "price": "15 USD", + "price_postapoc": "2 USD 50 cent", "charges_per_use": 1, "pocket_data": [ { "pocket_type": "MAGAZINE", "watertight": true, "rigid": true, "ammo_restriction": { "butane": 400 } } ], "material": [ "aluminum" ], @@ -74,8 +74,8 @@ "weight": "610 g", "volume": "1035 ml", "longest_side": "30 cm", - "price": 500, - "price_postapoc": 5, + "price": "5 USD", + "price_postapoc": "5 cent", "material": [ "wood" ], "pocket_data": [ { "pocket_type": "MAGAZINE", "ammo_restriction": { "notch": 24 } } ], "flags": [ "NO_RELOAD", "NO_UNLOAD" ] @@ -92,8 +92,8 @@ "weight": "375 g", "volume": "625 ml", "longest_side": "32 cm", - "price": 500, - "price_postapoc": 5, + "price": "5 USD", + "price_postapoc": "5 cent", "material": [ "wood" ], "pocket_data": [ { "pocket_type": "MAGAZINE", "ammo_restriction": { "notch": 10 } } ], "flags": [ "NO_RELOAD", "NO_UNLOAD" ] @@ -106,8 +106,8 @@ "description": "A clay container for storing cremated ashes.", "weight": "1600 g", "volume": "4280 ml", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "clay" ], "symbol": ")", "color": "brown", @@ -131,7 +131,7 @@ "volume": "300 ml", "longest_side": "20 cm", "price": "10 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "to_hit": 1, "material": [ { "type": "steel", "portion": 95 }, { "type": "rubber", "portion": 5 } ], "symbol": ";", @@ -147,8 +147,8 @@ "description": "An exquisite, translucent container for cremated ashes, decorated with floral patterns.", "weight": "1400 g", "volume": "4280 ml", - "price": 125000, - "price_postapoc": 500, + "price": "1 kUSD 250 USD", + "price_postapoc": "5 USD", "material": [ "crystal" ], "symbol": ")", "color": "magenta", @@ -171,8 +171,8 @@ "weight": "453 g", "volume": "1 L", "longest_side": "23 cm", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "/", "color": "dark_gray", @@ -187,8 +187,8 @@ "description": "A human skull covered with strange etchings.", "weight": "311 g", "volume": "750 ml", - "price": 300000, - "price_postapoc": 10, + "price": "3 kUSD", + "price_postapoc": "10 cent", "material": [ "bone" ], "symbol": ";", "color": "white", @@ -201,8 +201,8 @@ "description": "A bedroll made of pelts which can be rolled up for transport. It insulates you from the floor, making it easier to sleep. Use it to unroll and place on the ground.", "weight": "1800 g", "volume": "3 L", - "price": 4000, - "price_postapoc": 1250, + "price": "40 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -1, "material": [ "fur" ], "symbol": ";", @@ -226,8 +226,8 @@ "weight": "1632 g", "volume": "1500 ml", "longest_side": "30 cm", - "price": 600, - "price_postapoc": 300, + "price": "6 USD", + "price_postapoc": "3 USD", "material": [ "rubber" ], "symbol": ",", "color": "green", @@ -243,7 +243,7 @@ "weight": "1980 g", "volume": "2500 ml", "copy-from": "rope_30", - "price_postapoc": 500, + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "cotton", "steel" ], "symbol": ";", @@ -268,8 +268,8 @@ "flags": [ "DURABLE_MELEE", "BELT_CLIP", "ALLOWS_BODY_BLOCK" ], "volume": "750 ml", "to_hit": -3, - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "qualities": [ [ "HAMMER", 1 ], [ "BUTCHER", -5 ] ], "melee_damage": { "bash": 2, "stab": 6 }, "weapon_category": [ "SHIVS" ] @@ -281,8 +281,8 @@ "color": "blue", "name": { "str": "hand pump" }, "description": "A hand-powered pump suitable for pumping air into inflatable objects.", - "price": 400, - "price_postapoc": 250, + "price": "4 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "aluminum", "plastic" ], "weight": "113 g", "volume": "500 ml", @@ -297,8 +297,8 @@ "description": "A bellow is a device constructed to furnish a strong blast of air", "weight": "450 g", "volume": "2500 ml", - "price": 0, - "price_postapoc": 100, + "price": "0 cent", + "price_postapoc": "1 USD", "qualities": [ [ "WINNOW", 1 ] ], "to_hit": 1, "material": [ "leather", "wood" ], @@ -313,8 +313,8 @@ "description": "A simple bulb horn found on many bicycles. Activate it to honk. Honk honk.", "weight": "170 g", "volume": "500 ml", - "price": 400, - "price_postapoc": 10, + "price": "4 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "plastic", "aluminum" ], "symbol": ";", @@ -339,8 +339,8 @@ "description": "A very loud horn, usually found on large trucks like semis.", "weight": "310 g", "volume": "1500 ml", - "price": 12000, - "price_postapoc": 10, + "price": "120 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -355,8 +355,8 @@ "description": "A car horn meant to be attached to a car's electrical system.", "weight": "270 g", "volume": "500 ml", - "price": 9000, - "price_postapoc": 10, + "price": "90 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -370,8 +370,8 @@ "description": "A portable electric heater that steadily emits warm air. Raises temperature about 10 degrees Celsius, and fills a larger volume of air than the smaller version.", "weight": "12000 g", "volume": "7500 ml", - "price": 20000, - "price_postapoc": 500, + "price": "200 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -428,8 +428,8 @@ "description": "A small personal water filter. The instructions say to set the lifestraw in suspect water, let sit for one minute then drink. The two-part filtration system will purify the water you drink up to a certain amount. Water taken from uncertain sources like a river may be dirty.", "weight": "104 g", "volume": "592 ml", - "price": 4000, - "price_postapoc": 1000, + "price": "40 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "cotton", "plastic" ], "symbol": "i", @@ -452,8 +452,8 @@ "weight": "5 g", "volume": "30 ml", "//": "gasket sizes range from 1in diameter to 6in.", - "price": 150, - "price_postapoc": 50, + "price": "1 USD 50 cent", + "price_postapoc": "50 cent", "to_hit": { "grip": "bad", "length": "hand", "surface": "any", "balance": "neutral" }, "material": [ "plastic" ], "melee_damage": { "bash": 1 } @@ -465,8 +465,8 @@ "description": "A King Size™ industrial-strength permanent marker, about halfway between a typical marker and a can of spray paint in size. Activate it to write something down. However, writing \"Elbereth\" probably won't help you.", "weight": "28 g", "volume": "50 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": ",", "color": "dark_gray", @@ -482,8 +482,8 @@ "description": "An old-fashioned pocket watch. Tells the time and looks good doing it. Can also be disassembled into some useful parts.", "weight": "65 g", "volume": "25 ml", - "price": 25000, - "price_postapoc": 100, + "price": "250 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "gold", "glass" ], "symbol": ",", @@ -497,8 +497,8 @@ "description": "A container for holding the remains of a loved one. Its prior owners must have taken good care of it, as you can see your face reflected clearly upon its surface.", "weight": "1600 g", "volume": "4280 ml", - "price": 35000, - "price_postapoc": 250, + "price": "350 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "porcelain" ], "symbol": ")", "color": "white", @@ -520,8 +520,8 @@ "description": "A sheet of foam which can be rolled tightly for storage. It insulates you from the floor, making it easier to sleep. Use it to unroll and place on the ground.", "weight": "250 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": ";", @@ -544,8 +544,8 @@ "description": "A secure combination-lock box. Sadly, you don't know the combination. Breaking into it would destroy anything of value.", "weight": "2267 g", "volume": "3750 ml", - "price": 8000, - "price_postapoc": 10, + "price": "80 USD", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -561,8 +561,8 @@ "description": "A printout displaying a string of numbers, the passcode to access the elevator in the hazardous waste sarcophagus.", "weight": "5 g", "volume": "4 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "paper" ], "symbol": ";", @@ -576,8 +576,8 @@ "description": "A portable electric heater that steadily emits warm air. Raises temperature about 10 degrees Celsius.", "weight": "6000 g", "volume": "3750 ml", - "price": 5000, - "price_postapoc": 1500, + "price": "50 USD", + "price_postapoc": "15 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -635,8 +635,8 @@ "weight": "340 g", "volume": "250 ml", "longest_side": "21 cm", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "material": [ "aluminum" ], "symbol": ";", "color": "light_gray", @@ -653,8 +653,8 @@ "weight": "20000 g", "volume": "50 L", "longest_side": "150 cm", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "wood" ], "symbol": "H", @@ -669,8 +669,8 @@ "description": "A sharpened piece of charcoal used as an improvised pencil. Almost guaranteed to get your hands all covered in charcoal. Activate it to write something down.", "weight": "113 g", "volume": "15 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "charcoal" ], "symbol": ",", "color": "dark_gray", @@ -687,8 +687,8 @@ "description": "A homemade collapsible telescope, perfect for a pirate. Too large and inaccurate to use as a weapon scope, but carrying it in your inventory will double the distance that is mapped around you during your travels.", "weight": "500 g", "volume": "250 ml", - "price": 600, - "price_postapoc": 750, + "price": "6 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "glass", "plastic" ], "symbol": "o", @@ -704,8 +704,8 @@ "weight": "96 g", "volume": "100 ml", "longest_side": "9 cm", - "price": 1000, - "price_postapoc": 150, + "price": "10 USD", + "price_postapoc": "1 USD 50 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": ";", @@ -777,8 +777,8 @@ "weight": "411 g", "volume": "1500 ml", "longest_side": "25 cm", - "price": 12000, - "price_postapoc": 100, + "price": "120 USD", + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "plastic", "aluminum" ], "symbol": ",", @@ -809,8 +809,8 @@ "weight": "411 g", "volume": "1500 ml", "longest_side": "101 cm", - "price": 12000, - "price_postapoc": 100, + "price": "120 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "plastic", "aluminum" ], "symbol": ",", @@ -830,8 +830,8 @@ "description": "HOLY SHIT THIS THING IS ON FIRE", "weight": "64 g", "volume": "250 ml", - "price": 98000, - "price_postapoc": 100, + "price": "980 USD", + "price_postapoc": "1 USD", "to_hit": 100, "material": [ "steel" ], "symbol": "/", @@ -847,8 +847,8 @@ "description": "Who is this Tindalos guy?", "weight": "22 g", "volume": "1 ml", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "material": [ "superalloy" ], "symbol": ";", "color": "yellow", @@ -863,8 +863,8 @@ "weight": "411 g", "longest_side": "101 cm", "volume": "1500 ml", - "price": 2400, - "price_postapoc": 50, + "price": "24 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "plastic", "aluminum" ], "ascii_picture": "umbrella", @@ -882,8 +882,8 @@ "description": "A stone with spirals all over it and holes around its perimeter. Though it is fairly large, it weighs next to nothing. Air seems to gather around it.", "weight": "1 g", "volume": "250 ml", - "price": 300000, - "price_postapoc": 2000, + "price": "3 kUSD", + "price_postapoc": "20 USD", "material": [ "stone" ], "symbol": ";", "color": "light_gray", @@ -900,8 +900,8 @@ "description": "A plastic bucket holding a small spade and rake, perfect for building sand castles!", "weight": "250 g", "volume": "1050 ml", - "price": 300, - "price_postapoc": 3, + "price": "3 USD", + "price_postapoc": "3 cent", "material": [ "plastic" ], "symbol": "u", "color": "red", @@ -924,8 +924,8 @@ "description": "A cheap gadget combining a whistle, thermometer, magnifying glass, and compass.", "weight": "7 g", "volume": "25 ml", - "price": 200, - "price_postapoc": 250, + "price": "2 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "plastic" ], "symbol": ";", @@ -955,8 +955,8 @@ "weight": "15750 g", "volume": "50 L", "longest_side": "150 cm", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "aluminum" ], "symbol": "H", @@ -971,8 +971,8 @@ "description": "A handheld tool used for controlled breaking of glass. A necessity for any glass cutting projects.", "weight": "700 g", "volume": "500 ml", - "price": 1200, - "price_postapoc": 500, + "price": "12 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -989,8 +989,8 @@ "looks_like": "m79", "weight": "1850 g", "volume": "3850 ml", - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "P", @@ -1008,8 +1008,8 @@ "weight": "90 g", "volume": "732 ml", "longest_side": "1100 mm", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "epoxy", "nylon" ], "flags": [ "REACH_ATTACK", "REACH3" ], "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "neutral" }, @@ -1025,8 +1025,8 @@ "weight": "68 g", "volume": "1480 ml", "longest_side": "600 mm", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "epoxy", "leather" ], "flags": [ "REACH_ATTACK" ], "to_hit": { "grip": "solid", "length": "long", "surface": "point", "balance": "neutral" }, diff --git a/data/json/items/tool/musical_instruments.json b/data/json/items/tool/musical_instruments.json index aeb516fb3b844..447f7ab25163f 100644 --- a/data/json/items/tool/musical_instruments.json +++ b/data/json/items/tool/musical_instruments.json @@ -9,8 +9,8 @@ "weight": "2800 g", "volume": "3 L", "longest_side": "72 cm", - "price": 7500, - "price_postapoc": 500, + "price": "75 USD", + "price_postapoc": "5 USD", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "clumsy" }, "flags": [ "FRAGILE_MELEE" ], "material": [ { "type": "wood", "portion": 7 }, { "type": "steel" }, { "type": "nylon", "portion": 2 } ], @@ -42,8 +42,8 @@ "weight": "250 g", "volume": "400 ml", "longest_side": "32 cm", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "bone" ], "symbol": "-", "color": "white", @@ -74,8 +74,8 @@ "weight": "550 g", "volume": "1500 ml", "longest_side": "60 cm", - "price": 5500, - "price_postapoc": 250, + "price": "55 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ { "type": "wood", "portion": 9 }, { "type": "silver" } ], "symbol": "|", @@ -106,8 +106,8 @@ "weight": "550 g", "volume": "3000 ml", "longest_side": "46 cm", - "price": 5500, - "price_postapoc": 250, + "price": "55 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "wood" ], "symbol": "(", @@ -137,8 +137,8 @@ "weight": "440 g", "volume": "500 ml", "longest_side": "66 cm", - "price": 5000, - "price_postapoc": 150, + "price": "50 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "silver" ], "//": "Moved this to just being silver. Flutes aren't made of iron, and a full size sterling silver flute weighs 440g, which is the existing weight.", "symbol": "-", @@ -169,8 +169,8 @@ "weight": "1100 g", "volume": "2500 ml", "longest_side": "50 cm", - "price": 7500, - "price_postapoc": 300, + "price": "75 USD", + "price_postapoc": "3 USD", "to_hit": 1, "material": [ "brass" ], "symbol": "-", @@ -201,8 +201,8 @@ "weight": "600 g", "volume": "2500 ml", "longest_side": "58 cm", - "price": 7500, - "price_postapoc": 250, + "price": "75 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "clumsy" }, "flags": [ "FRAGILE_MELEE" ], "material": [ "wood" ], @@ -234,8 +234,8 @@ "weight": "500 g", "volume": "2500 ml", "longest_side": "60 cm", - "price": 7500, - "price_postapoc": 600, + "price": "75 USD", + "price_postapoc": "6 USD", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "clumsy" }, "flags": [ "FRAGILE_MELEE" ], "material": [ "wood" ], @@ -267,8 +267,8 @@ "weight": "13000 g", "volume": "2500 ml", "longest_side": "60 cm", - "price": 1000000, - "price_postapoc": 1000, + "price": "10 kUSD", + "price_postapoc": "10 USD", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "clumsy" }, "material": [ "gold" ], "symbol": "}", @@ -299,8 +299,8 @@ "weight": "13000 g", "volume": "12 L", "longest_side": "100 cm", - "price": 1000000, - "price_postapoc": 1000, + "price": "10 kUSD", + "price_postapoc": "10 USD", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "clumsy" }, "material": [ "gold" ], "symbol": "}", @@ -336,8 +336,8 @@ "weight": "2800 g", "volume": "56629 ml", "longest_side": "28 cm", - "price": 7500, - "price_postapoc": 500, + "price": "75 USD", + "price_postapoc": "5 USD", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "clumsy" }, "flags": [ "FRAGILE_MELEE" ], "material": [ { "type": "wood", "portion": 7 }, { "type": "steel" }, { "type": "nylon", "portion": 2 } ], @@ -368,8 +368,8 @@ "weight": "2800 g", "volume": "56629 ml", "longest_side": "28 cm", - "price": 7500, - "price_postapoc": 500, + "price": "75 USD", + "price_postapoc": "5 USD", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "clumsy" }, "flags": [ "FRAGILE_MELEE" ], "material": [ { "type": "wood", "portion": 7 }, { "type": "steel" }, { "type": "leather", "portion": 2 } ], @@ -412,8 +412,8 @@ }, "symbol": "-", "description": "A harmonica with a holder, so that you can play it without a free hand.", - "price": 1000, - "price_postapoc": 150, + "price": "10 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "steel" ], "volume": "250 ml", "longest_side": "18 cm", @@ -446,8 +446,8 @@ }, "symbol": "-", "description": "A simple wooden acoustic guitar with a strap so you can wear it around, even when not playing.", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "material": [ { "type": "wood", "portion": 19 }, { "type": "steel" } ], "volume": "6750 ml", "longest_side": "97 cm", @@ -487,8 +487,8 @@ }, "symbol": "-", "description": "A standard factory-made electric guitar. It's probably better at smashing heads than melting faces, these days. Has a strap.", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "//": "Electric guitar less awesome when there's no electricity. So I made it much quieter and less fun to play.", "material": [ { "type": "wood", "portion": 9 }, { "type": "steel" } ], "volume": "6750 ml", @@ -529,8 +529,8 @@ }, "symbol": "-", "description": "A traditional musical instrument, using enclosed reeds fed from a reservoir of air contained within a leather bag. It has a strap so you can wear it around, even when not playing.", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "material": [ "leather", "wood" ], "volume": "5 L", "longest_side": "65 cm", @@ -565,8 +565,8 @@ "//~": "ol' is an informal short-form for old, and here is part of big-ol as large-and-cumbersome.", "str": "A big ol' tuba. Much easier to play when you're wearing it. Thankfully, this one has a harness attached." }, - "price": 5500, - "price_postapoc": 250, + "price": "55 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "brass" ], "volume": "12500 ml", "longest_side": "107 cm", @@ -612,8 +612,8 @@ }, "symbol": "{", "description": "A brass alto saxophone with a neck strap, so you can wear it while playing.", - "price": 7500, - "price_postapoc": 250, + "price": "75 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "brass" ], "volume": "4500 ml", "longest_side": "70 cm", diff --git a/data/json/items/tool/pets.json b/data/json/items/tool/pets.json index 0970b7db9c95f..f4d5137579b87 100644 --- a/data/json/items/tool/pets.json +++ b/data/json/items/tool/pets.json @@ -6,8 +6,8 @@ "description": "A wire container made for transporting chickens, but you can use it to hold any tiny animal. Use it on a suitable animal to capture, use it on an empty tile to release.", "weight": "250 g", "volume": "2500 ml", - "price": 100, - "price_postapoc": 100, + "price": "1 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -23,8 +23,8 @@ "description": "A small whistle. When blown into, it produces a high tone that causes nearby friendly dogs to either follow you closely and stop attacking, or start attacking enemies if they are currently docile.", "weight": "22 g", "volume": "5 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": ";", "color": "yellow", @@ -37,8 +37,8 @@ "description": "A set of shears designed to obtain wool from sheep.", "weight": "820 g", "volume": "750 ml", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -55,8 +55,8 @@ "description": "A set of heavy-duty shears designed to obtain wool from sheep. Made of two steel blades connected by spring leaf.", "weight": "820 g", "volume": "750 ml", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel" ], "symbol": ";", @@ -73,8 +73,8 @@ "description": "A set of forged single-piece bronze shears for cutting fabrics. Made of two painstakingly sharpened blades connected by a carefully tempered twisted bridge.", "weight": "900 g", "volume": "750 ml", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "bronze" ], "symbol": ";", @@ -92,8 +92,8 @@ "description": "Electric shears, used to quickly shear animals.", "weight": "1200 g", "volume": "1200 ml", - "price": 2400, - "price_postapoc": 250, + "price": "24 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "plastic", "steel" ], "symbol": ";", @@ -120,8 +120,8 @@ "description": "A saddle, bridle, and associated tack that can be placed on a tamed animal that is capable of being ridden.", "weight": "2 kg", "volume": "7 L", - "price": 0, - "price_postapoc": 1000, + "price": "0 cent", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "leather", "steel" ], "symbol": "M", @@ -141,8 +141,8 @@ "weight": "52800 g", "volume": "40000 ml", "longest_side": "196 cm", - "price": 1200000, - "price_postapoc": 50, + "price": "12 kUSD", + "price_postapoc": "50 cent", "to_hit": -8, "material": [ "steel", "rubber" ], "ammo": [ "battery" ], @@ -166,8 +166,8 @@ "description": "A plastic container meant to hold pets for transport. Use it on a suitable animal to capture, use it on an empty tile to release.", "weight": "1000 g", "volume": "5 L", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -184,8 +184,8 @@ "description": "A wooden container meant to hold pets for transport. Use it on a suitable animal to capture, use it on an empty tile to release.", "weight": "1500 g", "volume": "6250 ml", - "price": 800, - "price_postapoc": 50, + "price": "8 USD", + "price_postapoc": "50 cent", "material": [ "wood" ], "symbol": "#", "color": "brown", @@ -198,8 +198,8 @@ "description": "A glass container meant to hold plants and/or insects. They come in a variety of sizes.", "weight": "5 kg", "volume": "37 L", - "price": 800, - "price_postapoc": 50, + "price": "8 USD", + "price_postapoc": "50 cent", "material": [ "glass" ], "symbol": "#", "color": "white_yellow", @@ -215,8 +215,8 @@ "description": "Some enterprising survivor has decided to turn this terrarium into a light source, using what appear to be a giant firefly and triffid vegetation.", "weight": "30 kg", "volume": "37 L", - "price": 800, - "price_postapoc": 1200, + "price": "8 USD", + "price_postapoc": "12 USD", "material": [ "glass" ], "symbol": "#", "color": "white_yellow", @@ -230,8 +230,8 @@ "description": "A whistle carved out of hardwood. When blown into, it produces a high tone that causes nearby friendly dogs to either follow you closely and stop attacking, or start attacking enemies if they are currently docile.", "weight": "50 g", "volume": "20 ml", - "price": 800, - "price_postapoc": 100, + "price": "8 USD", + "price_postapoc": "1 USD", "material": [ "wood" ], "symbol": ";", "color": "yellow", diff --git a/data/json/items/tool/radio_tools.json b/data/json/items/tool/radio_tools.json index 41427af2d8156..babceb425c330 100644 --- a/data/json/items/tool/radio_tools.json +++ b/data/json/items/tool/radio_tools.json @@ -13,8 +13,8 @@ "turns_per_charge": 5, "weight": "670 g", "volume": "500 ml", - "price": 6000, - "price_postapoc": 250, + "price": "60 USD", + "price_postapoc": "2 USD 50 cent", "use_action": [ "RADIOCONTROL" ], "tick_action": [ "RADIOCONTROL_TICK" ], "pocket_data": [ @@ -37,8 +37,8 @@ "charges_per_use": 1, "weight": "2340 g", "volume": "1500 ml", - "price": 24000, - "price_postapoc": 250, + "price": "240 USD", + "price_postapoc": "2 USD 50 cent", "use_action": [ "RADIOCAR" ], "flags": [ "RADIO_CONTAINER", "WATER_BREAK", "ELECTRONIC" ], "pocket_data": [ @@ -85,8 +85,8 @@ "description": "A small electronic device that can be attached to certain items to activate them with a radio signal from an RC car controller.", "weight": "142 g", "volume": "250 ml", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -101,8 +101,8 @@ "description": "A portable radio. Using this radio turns it on. It will pick up any nearby signals being broadcasted and play them audibly.", "weight": "295 g", "volume": "1 L", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "plastic", "aluminum" ], "symbol": ";", @@ -144,8 +144,8 @@ "description": "A radio with a transmitting unit. You could use it to contact someone who also has one.", "weight": "431 g", "volume": "500 ml", - "price": 2000, - "price_postapoc": 750, + "price": "20 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "plastic", "aluminum" ], "symbol": ";", "color": "green", @@ -170,8 +170,8 @@ "description": "A remote controller for a real car. Can turn onboard devices on and off. Some cars can be driven remotely.", "weight": "907 g", "volume": "1 L", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": "#", diff --git a/data/json/items/tool/raincatchers.json b/data/json/items/tool/raincatchers.json index 3f39da75c26d6..604332a3e96b8 100644 --- a/data/json/items/tool/raincatchers.json +++ b/data/json/items/tool/raincatchers.json @@ -6,8 +6,8 @@ "description": "A small birchbark funnel. Place it above an outdoor container to collect rainwater.", "weight": "30 g", "volume": "250ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "wood" ], "symbol": ";", @@ -29,8 +29,8 @@ "description": "A plastic funnel used to collect rainwater. Use it outside and place a container beneath it to collect water when it rains.", "weight": "150 g", "volume": "500 ml", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "plastic" ], "symbol": ";", @@ -53,8 +53,8 @@ "description": "A small leather funnel used to collect rainwater. Use it outside and place a container beneath it to collect water when it rains.", "weight": "40 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 100, + "price": "0 cent", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "leather" ], "symbol": ";", @@ -76,8 +76,8 @@ "description": "A small makeshift funnel used to collect rainwater. Use it outside and place a container beneath it to collect water when it rains.", "weight": "40 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ";", @@ -99,8 +99,8 @@ "description": "A large metal funnel used to collect rainwater. Less portable than plastic funnels, but collects more water. Use it outside and place a container beneath it to collect water when it rains.", "weight": "4017 g", "volume": "4 L", - "price": 1500, - "price_postapoc": 250, + "price": "15 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "steel" ], "symbol": ";", @@ -123,8 +123,8 @@ "description": "A collection of sticks and string with a tarpaulin to set up as an improvised raincatcher.", "weight": "3980 g", "volume": "4 L", - "price": 6000, - "price_postapoc": 100, + "price": "60 USD", + "price_postapoc": "1 USD", "material": [ "wood", "plastic" ], "symbol": ";", "color": "yellow", diff --git a/data/json/items/tool/science.json b/data/json/items/tool/science.json index 1d32fdfe1c1c4..48b08785d84b8 100644 --- a/data/json/items/tool/science.json +++ b/data/json/items/tool/science.json @@ -7,8 +7,8 @@ "description": "A plastic barometer that can read atmospheric pressure.", "weight": "10 g", "volume": "50 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "plastic" ], "symbol": ";", @@ -23,8 +23,8 @@ "description": "A metal canister with a label reading: \"Warning: contains highly toxic and corrosive materials. Contents may be sentient. Open at your own risk.\" You think you can feel something moving inside it.", "weight": "1596 g", "volume": "270 ml", - "price": 35000, - "price_postapoc": 1000, + "price": "350 USD", + "price_postapoc": "10 USD", "to_hit": 1, "material": [ "steel" ], "symbol": ";", @@ -44,8 +44,8 @@ "looks_like": "box_medium", "weight": "5200 g", "volume": "4500 ml", - "price": 20000, - "price_postapoc": 1000, + "price": "200 USD", + "price_postapoc": "10 USD", "to_hit": -5, "material": [ "glass", "cotton" ], "symbol": ";", @@ -67,8 +67,8 @@ "weight": "1884 g", "looks_like": "box_medium", "volume": "2750 ml", - "price": 3200, - "price_postapoc": 500, + "price": "32 USD", + "price_postapoc": "5 USD", "to_hit": -5, "material": [ "glass", "cotton" ], "symbol": ";", @@ -83,8 +83,8 @@ "description": "A set of wiring and electrodes for applying a direct current, usually to a liquid. Useful for crafting. Load with a storage battery or 12 V vehicle battery to use.", "weight": "250 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 750, + "price": "10 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "steel", "copper", "plastic" ], "symbol": ";", "ammo": [ "battery" ], @@ -105,8 +105,8 @@ "description": "A section of glass pipe with a bulb in the middle, which contains an electrical heating element. It is used for producing ketene via pyrolysis of acetone or 1,3-butadiene from cyclohexane, for use in other chemical reactions. Due to the instability of ketene, it can't be stored and must be used immediately.", "weight": "3 kg", "volume": "2 L", - "price": 20000, - "price_postapoc": 1000, + "price": "200 USD", + "price_postapoc": "10 USD", "material": [ "glass", "plastic" ], "symbol": ";", "color": "light_gray", @@ -129,8 +129,8 @@ "description": "A kit with hundreds of pieces and dozens of blueprints for small engineering projects designed for beginner learners. Explore mechanics and hydraulics!", "weight": "3200 g", "volume": "1500 ml", - "price": 20000, - "price_postapoc": 1000, + "price": "200 USD", + "price_postapoc": "10 USD", "to_hit": -5, "material": [ "steel", "plastic" ], "symbol": "^", @@ -168,8 +168,8 @@ "description": "A complete robotics engineering system, for learning the basics of building and programming robots. Using sensors, motors, a core controller, and hundreds of snap-together building pieces, you can follow the instructions to assemble 12 different robots. The versatile parts also allow you to make robots according to your own designs.", "weight": "3200 g", "volume": "1500 ml", - "price": 20000, - "price_postapoc": 1000, + "price": "200 USD", + "price_postapoc": "10 USD", "to_hit": -5, "material": [ "plastic" ], "symbol": ":", @@ -207,8 +207,8 @@ "description": "A Stirling engine kit that demonstrates the principles behind the generation of electricity through the use of hot air.", "weight": "3200 g", "volume": "1500 ml", - "price": 20000, - "price_postapoc": 1000, + "price": "200 USD", + "price_postapoc": "10 USD", "to_hit": -5, "material": [ "steel", "glass" ], "symbol": "^", @@ -240,8 +240,8 @@ "weight": "40860 g", "ammo": [ "battery" ], "volume": "27 L", - "price": 100000, - "price_postapoc": 3000, + "price": "1 kUSD", + "price_postapoc": "30 USD", "to_hit": -10, "material": [ "steel" ], "symbol": "E", @@ -260,8 +260,8 @@ "looks_like": "still", "weight": "36000 g", "volume": "60 L", - "price": 500000, - "price_postapoc": 6000, + "price": "5 kUSD", + "price_postapoc": "60 USD", "to_hit": -10, "material": [ "steel" ], "flags": [ "ALLOWS_REMOTE_USE", "WATER_BREAK" ], @@ -278,8 +278,8 @@ "looks_like": "still", "weight": "181600 g", "volume": "240 L", - "price": 2000000, - "price_postapoc": 10000, + "price": "20 kUSD", + "price_postapoc": "100 USD", "to_hit": -10, "material": [ "steel" ], "symbol": "E", @@ -300,7 +300,7 @@ "looks_like": "55gal_drum", "weight": "22700 g", "volume": "210 L", - "price": 20000, + "price": "200 USD", "to_hit": -5, "material": [ "steel" ], "qualities": [ [ "EXTRACT", 1 ] ], @@ -317,7 +317,7 @@ "looks_like": "f_catalytic_cracking_reactor", "weight": "500 kg", "volume": "500 L", - "price": 20000, + "price": "200 USD", "to_hit": -5, "material": [ "steel" ], "melee_damage": { "bash": 8 } @@ -332,8 +332,8 @@ "looks_like": "paper", "weight": "20 g", "volume": "25 ml", - "price": 100, - "price_postapoc": 100, + "price": "1 USD", + "price_postapoc": "1 USD", "initial_charges": 200, "max_charges": 200, "material": [ "paper" ], @@ -358,8 +358,8 @@ "looks_like": "plastic_chunk", "weight": "15 g", "volume": "90 ml", - "price": 450, - "price_postapoc": 150, + "price": "4 USD 50 cent", + "price_postapoc": "1 USD 50 cent", "initial_charges": 200, "max_charges": 200, "to_hit": { "grip": "bad", "length": "hand", "surface": "any", "balance": "neutral" }, @@ -376,8 +376,8 @@ "looks_like": "motor", "weight": "22700 g", "volume": "6 L", - "price": 300000, - "price_postapoc": 4500, + "price": "3 kUSD", + "price_postapoc": "45 USD", "to_hit": -5, "material": [ "iron" ], "flags": [ "ALLOWS_REMOTE_USE", "WATER_BREAK" ], @@ -416,8 +416,8 @@ "looks_like": "well_pump", "weight": "27240 g", "volume": "8 L", - "price": 280000, - "price_postapoc": 3500, + "price": "2 kUSD 800 USD", + "price_postapoc": "35 USD", "to_hit": -5, "material": [ "steel" ], "melee_damage": { "bash": 10 } @@ -431,8 +431,8 @@ "weight": "65 kg", "volume": "90 L", "longest_side": "100 cm", - "price": 800000, - "price_postapoc": 120000, + "price": "8 kUSD", + "price_postapoc": "1 kUSD 200 USD", "to_hit": -4, "material": [ "steel" ], "symbol": ";", @@ -453,8 +453,8 @@ "weight": "340 kg", "volume": "200 L", "longest_side": "300 cm", - "price": 800000, - "price_postapoc": 120000, + "price": "8 kUSD", + "price_postapoc": "1 kUSD 200 USD", "to_hit": -4, "material": [ "steel" ], "symbol": ";", @@ -475,8 +475,8 @@ "weight": "120 kg", "volume": "100 L", "longest_side": "300 cm", - "price": 800000, - "price_postapoc": 120000, + "price": "8 kUSD", + "price_postapoc": "1 kUSD 200 USD", "to_hit": -4, "material": [ "steel" ], "symbol": ";", @@ -497,8 +497,8 @@ "weight": "50 kg", "volume": "70 L", "longest_side": "150 cm", - "price": 100000, - "price_postapoc": 10000, + "price": "1 kUSD", + "price_postapoc": "100 USD", "to_hit": -4, "material": [ "steel" ], "symbol": ";", @@ -531,8 +531,8 @@ "weight": "7500 g", "volume": "24000 ml", "longest_side": "50 cm", - "price": 25000, - "price_postapoc": 1000, + "price": "250 USD", + "price_postapoc": "10 USD", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -560,8 +560,8 @@ "category": "other", "weight": "2268 g", "volume": "1500 ml", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -588,8 +588,8 @@ "category": "container", "weight": "2268 g", "volume": "3 L", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -616,8 +616,8 @@ "description": "A plastic hygrometer that can read the relative humidity in the air.", "weight": "10 g", "volume": "50 ml", - "price": 100, - "price_postapoc": 500, + "price": "1 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "plastic" ], "symbol": ";", @@ -633,8 +633,8 @@ "category": "other", "weight": "2268 g", "volume": "1500 ml", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -662,8 +662,8 @@ "weight": "19050 g", "volume": "28000 ml", "longest_side": "92 cm", - "price": 13400, - "price_postapoc": 500, + "price": "134 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -691,8 +691,8 @@ "description": "A metal grille with a layer of platinum plating, suitable for use as a catalyst for some chemical reactions.", "weight": "660 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "platinum" ], "symbol": ";", @@ -708,8 +708,8 @@ "description": "A rare, bizarre, and arcane device of an otherworldly nature. It's giving you a headache just looking at it. It is covered in alien markings.", "weight": "1133 g", "volume": "500 ml", - "price": 660000, - "price_postapoc": 1000, + "price": "6 kUSD 600 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "superalloy", "plastic" ], "symbol": ";", @@ -727,8 +727,8 @@ "description": "A kit for a teleporter trap, consisting of a teleporter and a solar cell that is triggered when stepped upon.", "weight": "2000 g", "volume": "1 L", - "price": 700000, - "price_postapoc": 1000, + "price": "7 kUSD", + "price_postapoc": "10 USD", "to_hit": -4, "material": [ "plastic", "aluminum" ], "symbol": ";", @@ -744,8 +744,8 @@ "description": "An experimental device that will teleport you a short distance when activated.", "weight": "1360 g", "volume": "2 L", - "price": 600000, - "price_postapoc": 1000, + "price": "6 kUSD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "plastic", "aluminum" ], "symbol": ";", @@ -764,8 +764,8 @@ "description": "A briefcase with a built-in laptop that looks like it's from the 80s. Its vintage monochrome monitor displays a plethora of meteorological data. No sign of the FLDSMDFR, however.", "weight": "1000 g", "volume": "2500 ml", - "price": 200, - "price_postapoc": 500, + "price": "2 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "plastic", "aluminum" ], "symbol": ";", @@ -792,8 +792,8 @@ "description": "A hefty kit containing some basic things you should probably not try to do precise chemistry without: a small balance scale, a spectrophotometer, a melting point apparatus, a pH meter, and a set of paper for thin layer chromatography. This makes it a lot easier to feel confident that the chemical you've made is what you think it is.", "weight": "12500 g", "volume": "5 L", - "price": 25000, - "price_postapoc": 1000, + "price": "250 USD", + "price_postapoc": "10 USD", "ammo": [ "battery" ], "flags": [ "WATER_BREAK", "ELECTRONIC" ], "to_hit": -5, @@ -812,8 +812,8 @@ "description": "A simple scale that uses a set of steel weights on sliding bars to measure a sample's mass quite accurately.", "weight": "1000 g", "volume": "2 L", - "price": 1600, - "price_postapoc": 100, + "price": "16 USD", + "price_postapoc": "1 USD", "to_hit": -5, "material": [ "steel" ], "symbol": ";", @@ -828,8 +828,8 @@ "description": "A ubiquitous analytical chemistry tool that measures the light absorption of a liquid sample in a special tube called a cuvette.", "weight": "5000 g", "volume": "2 L", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "ammo": [ "battery" ], "flags": [ "WATER_BREAK", "ELECTRONIC" ], "to_hit": -5, @@ -854,8 +854,8 @@ "description": "A small box filled with precisely-calibrated square plastic tubes for laboratory spectrometer use.", "weight": "70 g", "volume": "250 ml", - "price": 1200, - "price_postapoc": 250, + "price": "12 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "plastic" ], "symbol": ";", @@ -870,8 +870,8 @@ "description": "A pair of glass probes attached to a voltmeter. By putting one probe into a calibration solution (conveniently included) and the other in a substance, you can calculate the substance's acidity.", "weight": "3000 g", "volume": "1500 ml", - "price": 6000, - "price_postapoc": 250, + "price": "60 USD", + "price_postapoc": "2 USD 50 cent", "ammo": [ "battery" ], "flags": [ "WATER_BREAK" ], "to_hit": -5, @@ -896,8 +896,8 @@ "description": "A device with two probes that let you measure the electrical potential between two points.", "weight": "500 g", "volume": "1500 ml", - "price": 6000, - "price_postapoc": 250, + "price": "60 USD", + "price_postapoc": "2 USD 50 cent", "ammo": [ "battery" ], "charges_per_use": 1, "to_hit": -5, @@ -925,8 +925,8 @@ "//": "Dimensions from a sampling of consumer digital multimeter models online.", "weight": "500 g", "volume": "650 ml", - "price": 9000, - "price_postapoc": 250, + "price": "90 USD", + "price_postapoc": "2 USD 50 cent", "ammo": [ "battery" ], "charges_per_use": 1, "to_hit": -5, @@ -953,8 +953,8 @@ "description": "A hot plate with a metal housing attached. The metal housing has a magnification viewport and a slot into which a capillary tube containing a crystallized sample is inserted. The device lets you precisely measure the melting point of a crystal, a property very useful in identifying what it is and how pure it is.", "weight": "5000 g", "volume": "1500 ml", - "price": 6000, - "price_postapoc": 250, + "price": "60 USD", + "price_postapoc": "2 USD 50 cent", "ammo": [ "battery" ], "to_hit": -5, "material": [ "plastic", "glass" ], @@ -971,8 +971,8 @@ "description": "A small, hefty, boring-looking machine. Its weighted trapezoidal frame has a single on-off switch and a speed dial, and on top of it sits a rubber receptacle. Pressing a test tube into the receptacle would, with power, rapidly shake and mix the contents of the test tube. It's surprisingly fun to use.", "weight": "3500 g", "volume": "750 ml", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "to_hit": -5, "material": [ "steel", "plastic" ], "symbol": "n", @@ -987,8 +987,8 @@ "description": "A photodiode on a chip, designed to convert incoming light to electrical energy for quantification.", "weight": "5 g", "volume": "20 ml", - "price": 400, - "price_postapoc": 250, + "price": "4 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "looks_like": "e_scrap", "flags": [ "WATER_BREAK", "ELECTRONIC" ], @@ -1005,8 +1005,8 @@ "description": "A high-quality crystal glass prism for separating and redirecting light.", "weight": "50 g", "volume": "20 ml", - "price": 50, - "price_postapoc": 50, + "price": "50 cent", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "glass" ], "symbol": "^", @@ -1022,8 +1022,8 @@ "weight": "9 g", "volume": "30ml", "//": "Volume here is displacement volume of a corked 25mL test tube.", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "to_hit": -5, "material": [ "glass" ], "symbol": "|", @@ -1038,8 +1038,8 @@ "description": "A classic tool for the ages! This hefty, durable piece of lab equipment makes small things look bigger. Without electricity the light doesn't work, but the rest of it is surprisingly functional. Unfortunately it's not useful for very much at the moment.", "weight": "2000 g", "volume": "3800ml", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "steel", "glass" ], "symbol": "G", @@ -1054,8 +1054,8 @@ "description": "This microscope has less magnification than a standard one. It's also stereoscopic and produces a neat 3-D image of the surface. It was typically used for performing dissections and other fine-detail work on small creatures. It still works pretty well with an added light source, but what would you do with it?", "weight": "2200 g", "volume": "4000ml", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -5, "material": [ "steel", "glass" ], "symbol": "G", @@ -1070,8 +1070,8 @@ "description": "This thing doesn't look much like a funnel. It's a teardrop-shaped piece of glass with a stopper at the wide end and a valve at the other. It can be used to wash one liquid with another, like water and an oil, and then draw off whichever of the two liquids contains a higher amount of whatever compound you're trying to isolate. With a high level of skill, it can also be used to make juvenile farting noises.", "weight": "200 g", "volume": "700ml", - "price": 100, - "price_postapoc": 100, + "price": "1 USD", + "price_postapoc": "1 USD", "to_hit": -5, "material": [ "glass", "plastic" ], "looks_like": "flask_glass", @@ -1088,8 +1088,8 @@ "description": "A tall glass column with a stopcock at the end. If you're serious about chemistry, you probably have a tattoo of one of these somewhere.", "weight": "300 g", "volume": "1000ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": -4, "material": [ "glass", "plastic" ], "looks_like": "glass_tube_small", @@ -1105,8 +1105,8 @@ "description": "Just looking at this thing makes you feel like a proper mad scientist. It's a series of glass tubes and round flasks, connected to a central motor and a heating element. The heating element warms one flask, kept rotating by the motor, evaporating the contents. The vapor is then condensed in the tubes and collected in another flask, in case you wanted to save it for later.", "weight": "18000 g", "volume": "60000ml", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "to_hit": -5, "material": [ "steel", "glass" ], "flags": [ "WATER_BREAK", "ELECTRONIC" ], @@ -1125,8 +1125,8 @@ "description": "One of the classic pieces of mad science glassware, this is a small-volume still that passes vapor through a fractional distillation column and then condenses the distillate in a cooled collection column. A grad student or a robot (is there really any difference?) collects the distillate in fractions so that specific contents can be analyzed. Going a few milliliters at a time, it would not be very effective to try to distill whiskey in this thing.", "weight": "1000 g", "volume": "5000ml", - "price": 2000, - "price_postapoc": 750, + "price": "20 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -5, "material": [ "glass" ], "looks_like": "glass_tube_small", @@ -1143,8 +1143,8 @@ "description": "A set of plastic trays, electrodes, and a power supply designed to create an electric voltage gradient through a liquid solution containing a solid gel. Stuff like proteins and DNA would then get separated on the gel according to electrical charge and size. Pretty useless now for anything but salvage.", "weight": "1000 g", "volume": "5000ml", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "to_hit": -5, "material": [ "plastic" ], "looks_like": "geiger_off", @@ -1160,8 +1160,8 @@ "description": "A smaller, benchtop version of the larger furniture-sized centrifuge. Don't be fooled by its portable scale; it's still a very powerful piece of equipment that can spin stuff really quickly. It's not a toy!", "weight": "2000 g", "volume": "1500ml", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "to_hit": -5, "material": [ "aluminum", "steel", "plastic" ], "looks_like": "f_centrifuge", @@ -1190,8 +1190,8 @@ "description": "Stop giggling. This is a tiny plastic valve, get your mind out of the gutter.", "weight": "1 g", "volume": "1ml", - "price": 5, - "price_postapoc": 10, + "price": "5 cent", + "price_postapoc": "10 cent", "to_hit": -5, "material": [ "plastic" ], "looks_like": "plastic_chunk", @@ -1207,8 +1207,8 @@ "description": "A plastic box with holes in it. Not that exciting, unless you're desperate for a place to store a test tube. Then it's great.", "weight": "90 g", "volume": "250ml", - "price": 25, - "price_postapoc": 10, + "price": "25 cent", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "plastic" ], "looks_like": "plastic_chunk", @@ -1224,8 +1224,8 @@ "description": "A plastic tray riddled with small holes, for storing microcentrifuge tubes.", "weight": "70 g", "volume": "150ml", - "price": 25, - "price_postapoc": 10, + "price": "25 cent", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "plastic" ], "looks_like": "plastic_chunk", @@ -1244,7 +1244,7 @@ "//1": "The volume is lowered. The volume of the package of the attached amazon article is 5l+ but a lot of the parts are small enough to actually not take up much space. Yes, the number is relatively an asspull, but I refuse to believe a ring stand would be larger than a cooking pot in volume.", "longest_side": "41 cm", "price": "19 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "to_hit": { "grip": "none", "length": "short", "surface": "any", "balance": "clumsy" }, "material": [ "steel" ], "looks_like": "rebar", @@ -1261,8 +1261,8 @@ "description": "A small box with a jumbled assortment of clamps for mounting on ring stands. There seems to be some sort of rule that all of them are missing at least one wing nut for tightening; twist ties, duct tape, and other random stuff has been used to compensate.", "weight": "300 g", "volume": "450ml", - "price": 75, - "price_postapoc": 10, + "price": "75 cent", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "looks_like": "scrap", @@ -1278,8 +1278,8 @@ "description": "A tool for measuring angles of distant objects. It can be used for measuring the altitude of the sun.", "weight": "500 g", "volume": "500 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "plastic" ], "symbol": ";", @@ -1294,8 +1294,8 @@ "description": "A tool for measuring illuminance.", "weight": "100 g", "volume": "300 ml", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "plastic" ], "symbol": ";", @@ -1341,8 +1341,8 @@ "description": "A piece of mi-go biotechnology.", "weight": "1 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 10000, + "price": "30 USD", + "price_postapoc": "100 USD", "symbol": "!", "color": "light_red", "use_action": { @@ -1420,8 +1420,8 @@ "volume": "4 L", "longest_side": "50 cm", "to_hit": -3, - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "symbol": "W", "color": "light_blue", "use_action": [ "WEATHER_TOOL" ], @@ -1437,8 +1437,8 @@ "weight": "3000 g", "volume": "2 L", "longest_side": "40 cm", - "price": 100, - "price_postapoc": 300, + "price": "1 USD", + "price_postapoc": "3 USD", "to_hit": -3, "material": [ "wood", "steel" ], "symbol": ";", @@ -1455,8 +1455,8 @@ "weight": "600 g", "volume": "700 ml", "longest_side": "15 cm", - "price": 100, - "price_postapoc": 200, + "price": "1 USD", + "price_postapoc": "2 USD", "to_hit": -3, "material": [ "glass" ], "symbol": ";", diff --git a/data/json/items/tool/shelters.json b/data/json/items/tool/shelters.json index 0e1ede15612b4..03bda43745d54 100644 --- a/data/json/items/tool/shelters.json +++ b/data/json/items/tool/shelters.json @@ -7,8 +7,8 @@ "weight": "1360 g", "volume": "7500 ml", "longest_side": "90 cm", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -3, "material": [ "wood", "leather" ], "symbol": ";", @@ -22,8 +22,8 @@ "color": "brown", "name": { "str": "large damaged shelter" }, "description": "A huge shelter made of sticks and skins, very bulky but with plenty of space. This is broken and cannot be deployed.", - "price": 10000, - "price_postapoc": 150, + "price": "100 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "wood", "leather" ], "weight": "15 kg", "volume": "17 L", @@ -39,8 +39,8 @@ "weight": "2266 g", "volume": "10 L", "longest_side": "90 cm", - "price": 50000, - "price_postapoc": 1500, + "price": "500 USD", + "price_postapoc": "15 USD", "to_hit": -3, "material": [ "plastic", "aluminum" ], "symbol": ";", @@ -65,8 +65,8 @@ "weight": "1360 g", "volume": "7500 ml", "longest_side": "90 cm", - "price": 6500, - "price_postapoc": 500, + "price": "65 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "wood", "leather" ], "symbol": ";", @@ -90,8 +90,8 @@ "weight": "21 kg", "volume": "22 L", "longest_side": "300 cm", - "price": 6500, - "price_postapoc": 500, + "price": "65 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "wood", "leather" ], "symbol": ";", @@ -116,8 +116,8 @@ "weight": "1133 g", "volume": "2500 ml", "longest_side": "90 cm", - "price": 15000, - "price_postapoc": 1000, + "price": "150 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "plastic", "aluminum" ], "symbol": ";", diff --git a/data/json/items/tool/smoking.json b/data/json/items/tool/smoking.json index 0b735df42441d..69503189668ab 100644 --- a/data/json/items/tool/smoking.json +++ b/data/json/items/tool/smoking.json @@ -7,8 +7,8 @@ "category": "drugs", "weight": "100 g", "volume": "100 ml", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "steel" ], "symbol": "!", @@ -34,8 +34,8 @@ "description": "A fine glass tube with a bulb with a bowl on one end. It's used to partake of certain illicit substances.", "weight": "242 g", "volume": "80 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -10, "material": [ "glass" ], "symbol": ",", @@ -49,8 +49,8 @@ "description": "A hand-blown glass pipe. It's commonly used to smoke recreational substances.", "weight": "163 g", "volume": "80 ml", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "to_hit": -10, "material": [ "glass" ], "symbol": ",", @@ -66,8 +66,8 @@ "weight": "100 g", "volume": "150 ml", "longest_side": "15 cm", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "to_hit": -10, "material": [ "wood" ], "symbol": ",", diff --git a/data/json/items/tool/stationery.json b/data/json/items/tool/stationery.json index 3add5ac26f490..5b5136874cb64 100644 --- a/data/json/items/tool/stationery.json +++ b/data/json/items/tool/stationery.json @@ -9,7 +9,7 @@ "volume": "320 ml", "longest_side": "16 cm", "price": "6 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "material": [ { "type": "plastic", "portion": 17 }, { "type": "aluminum", "portion": 3 } ], "symbol": ";", "color": "light_gray", @@ -23,8 +23,8 @@ "description": "A metal tool that can punch a single hole in a piece of paper. I mean, you could do more if you wanted, but you'd have to do them one at a time. Or, if you really wanted more holes with one punch, I suppose you could fold the paper…. This is a one-cylinder hole puncher.", "weight": "68 g", "volume": "80 ml", - "price": 400, - "price_postapoc": 10, + "price": "4 USD", + "price_postapoc": "10 cent", "material": [ "aluminum" ], "symbol": ";", "color": "light_gray" @@ -38,8 +38,8 @@ "weight": "23 g", "volume": "90 ml", "longest_side": "18 cm", - "price": 4800, - "price_postapoc": 100, + "price": "48 USD", + "price_postapoc": "1 USD", "material": [ "silver" ], "symbol": ";", "techniques": [ "PRECISE" ], @@ -59,7 +59,7 @@ "volume": "93 ml", "longest_side": "18 cm", "price": "14 USD", - "price_postapoc": 25, + "price_postapoc": "25 cent", "to_hit": { "grip": "solid", "length": "short", "surface": "point", "balance": "neutral" }, "material": [ "steel", "plastic" ], "symbol": ",", @@ -79,8 +79,8 @@ "weight": "50 g", "volume": "80 ml", "longest_side": "13 cm", - "price": 400, - "price_postapoc": 15, + "price": "4 USD", + "price_postapoc": "15 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ",", @@ -99,8 +99,8 @@ "weight": "65 g", "volume": "110 ml", "longest_side": "16 cm", - "price": 1500, - "price_postapoc": 10, + "price": "15 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "symbol": ",", "color": "light_red", @@ -116,8 +116,8 @@ "weight": "9 g", "volume": "40 ml", "longest_side": "13 cm", - "price": 100, - "price_postapoc": 15, + "price": "1 USD", + "price_postapoc": "15 cent", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -141,8 +141,8 @@ "weight": "9 g", "volume": "40 ml", "longest_side": "13 cm", - "price": 15, - "price_postapoc": 10, + "price": "15 cent", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": "!", "color": "yellow", @@ -160,8 +160,8 @@ "weight": "9 g", "volume": "40 ml", "longest_side": "13 cm", - "price": 20, - "price_postapoc": 10, + "price": "20 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "!", "color": "dark_gray", @@ -179,8 +179,8 @@ "weight": "9 g", "volume": "40 ml", "longest_side": "13 cm", - "price": 20, - "price_postapoc": 10, + "price": "20 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "!", "color": "blue", @@ -198,8 +198,8 @@ "weight": "9 g", "volume": "40 ml", "longest_side": "13 cm", - "price": 20, - "price_postapoc": 10, + "price": "20 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "!", "color": "red", @@ -217,8 +217,8 @@ "weight": "9 g", "volume": "40 ml", "longest_side": "13 cm", - "price": 20, - "price_postapoc": 10, + "price": "20 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "!", "color": "green", diff --git a/data/json/items/tool/stoneworking.json b/data/json/items/tool/stoneworking.json index 4f521aabb19ab..b76bf51a92182 100644 --- a/data/json/items/tool/stoneworking.json +++ b/data/json/items/tool/stoneworking.json @@ -7,7 +7,7 @@ "name": { "str": "bone billet" }, "description": "A thick, short bone, usually used in flintknapping for soft-hammer percussion.", "category": "tools", - "price": 10, + "price": "10 cent", "material": "bone", "weight": "150 g", "volume": "100 ml", @@ -24,7 +24,7 @@ "name": { "str": "wooden billet" }, "description": "A thick, short wooden stick, usually used in flintknapping for soft-hammer percussion.", "category": "tools", - "price": 10, + "price": "10 cent", "material": "wood", "weight": "150 g", "volume": "100 ml", @@ -41,7 +41,7 @@ "name": { "str": "primitive rock drill" }, "description": "A thick, blunted wooden stick. Can be used to drill rough holes in rock, if water and sand are available, but the process is lengthy.", "category": "tools", - "price": 10, + "price": "10 cent", "material": "wood", "weight": "150 g", "volume": "100 ml", @@ -58,7 +58,7 @@ "name": { "str": "bone punch", "str_pl": "bone punches" }, "description": "A thick, short bone with a small, pointy tip, usually used in flintknapping for indirect percussion and pressure flaking.", "category": "tools", - "price": 10, + "price": "10 cent", "material": "bone", "weight": "92 g", "volume": "100 ml", @@ -76,7 +76,7 @@ "name": { "str": "nail punch", "str_pl": "nail punches" }, "description": "Two pieces of wood with a steel nail secured between them with some cordage. Usually used in flintknapping for indirect percussion and pressure flaking.", "category": "tools", - "price": 10, + "price": "10 cent", "material": [ "steel", "wood" ], "weight": "150 g", "volume": "100 ml", diff --git a/data/json/items/tool/tailoring.json b/data/json/items/tool/tailoring.json index 6fb5991003172..cfdb87bd46173 100644 --- a/data/json/items/tool/tailoring.json +++ b/data/json/items/tool/tailoring.json @@ -7,8 +7,8 @@ "description": "A crude, sharpened bone awl, used for leatherworking before metal was discovered. It can also serve as an improvised stabbing weapon, but will break quickly.", "weight": "140 g", "volume": "100 ml", - "price": 300, - "price_postapoc": 50, + "price": "3 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "bone" ], "symbol": ";", @@ -26,8 +26,8 @@ "weight": "50 g", "volume": "42 ml", "longest_side": "13 cm", - "price": 800, - "price_postapoc": 100, + "price": "8 USD", + "price_postapoc": "1 USD", "material": [ "steel", "wood" ], "qualities": [ [ "LEATHER_AWL", 2 ] ], "melee_damage": { "bash": 2, "cut": 10 } @@ -42,7 +42,7 @@ "volume": "40 ml", "longest_side": "36 cm", "price": "7 USD", - "price_postapoc": 15, + "price_postapoc": "15 cent", "material": [ "wood" ], "symbol": ",", "color": "brown", @@ -59,8 +59,8 @@ "description": "A rather bulky and primitive wooden frame which can be used to weave cloth sheets. The process is very slow, though.", "weight": "3804 g", "volume": "6000 ml", - "price": 4000, - "price_postapoc": 750, + "price": "40 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "wood" ], "symbol": ";", "color": "yellow" @@ -72,8 +72,8 @@ "description": "A sharp needle made from a bone. Useful for making rough clothing and items. Its low quality makes it rather unsuitable for anything requiring speed or precision.", "weight": "15 g", "volume": "10 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "bone" ], "symbol": ";", "color": "white", @@ -114,8 +114,8 @@ "description": "A curved, sharp needle made of steel. Its rounded shape allows it to make stitches that only pierce one side of the material. While unsuitable for most tailoring projects, it's a necessity for stitching neoprene.", "weight": "5 g", "volume": "3 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -142,8 +142,8 @@ "description": "A wooden needle whittled down to a sharp point. It has a narrow hole carved into the head for threading. Its low quality makes it rather unsuitable for anything requiring speed or precision, or involving tougher materials like Kevlar.", "weight": "3 g", "volume": "5 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": ";", "color": "brown", @@ -170,8 +170,8 @@ "description": "A stainless steel needle. It would be useful for making clothing and items.", "weight": "8 g", "volume": "1 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -212,8 +212,8 @@ "description": "A plastic kit with a variety of needles, some plastic spools for thread, small scissors, and a few other useful textile tools. Use a sewing kit on an article of clothing to attempt to repair or refit if applicable. This uses your tailoring skill.", "weight": "85 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "plastic", "steel" ], "symbol": ",", @@ -254,8 +254,8 @@ "description": "A short, thin, flat wooden stick, used as a tool while weaving cloth with a frame loom.", "weight": "300 g", "volume": "250 ml", - "price": 100, - "price_postapoc": 15, + "price": "1 USD", + "price_postapoc": "15 cent", "material": [ "wood" ], "symbol": ";", "color": "yellow", @@ -269,8 +269,8 @@ "description": "A treated animal hide that is undergoing the chemical processes required to become leather. You will be able to activate it to unroll and make use of it when it is done.", "weight": "600 g", "volume": "1 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "flesh", "leather" ], "symbol": ",", @@ -294,8 +294,8 @@ "description": "A treated animal pelt that is undergoing the chemical processes required to become fur. You will be able to activate it to unroll and make use of it when it is done.", "weight": "684 g", "volume": "1 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "fur", "flesh" ], "symbol": ",", @@ -319,8 +319,8 @@ "description": "A large set of tailoring patterns made from paper. They're useful for making any kind of cloth or leather items from scratch, but are necessary for more advanced projects.", "weight": "1000 g", "volume": "833 ml", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": ";", "color": "yellow" @@ -333,8 +333,8 @@ "ascii_picture": "scissors", "weight": "113 g", "volume": "145 ml", - "price": 3500, - "price_postapoc": 350, + "price": "35 USD", + "price_postapoc": "3 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ",", @@ -354,8 +354,8 @@ "weight": "5200 g", "volume": "2700 ml", "longest_side": "43 cm", - "price": 800, - "price_postapoc": 50, + "price": "8 USD", + "price_postapoc": "50 cent", "to_hit": -5, "material": [ "plastic", "steel" ], "symbol": ";", @@ -378,8 +378,8 @@ "description": "A high-quality kit consisting of a variety of needles, some plastic spools for thread, scissors and shears, and an awl. Use a tailor's kit on an article of clothing to attempt to repair or refit if applicable. This uses your tailoring skill.", "weight": "100 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 1000, + "price": "10 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": ";", diff --git a/data/json/items/tool/toiletries.json b/data/json/items/tool/toiletries.json index abd4c9c2d33d6..e1ca435318df2 100644 --- a/data/json/items/tool/toiletries.json +++ b/data/json/items/tool/toiletries.json @@ -9,8 +9,8 @@ "weight": "1200 g", "volume": "2250 ml", "longest_side": "30 cm", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "steel" ], "use_action": { "type": "weigh_self", "max_weight": "150 kg" }, @@ -25,8 +25,8 @@ "weight": "70 g", "volume": "350 ml", "longest_side": "14 cm", - "price": 200, - "price_postapoc": 10, + "price": "2 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": "/", @@ -44,8 +44,8 @@ "weight": "65600 mg", "volume": "43 ml", "//1": "Calculated from cotton density because if I took exact product dimensions you'd have <2ml of volume BUT no way in hell is the player folding the towel so neatly.", - "price": 127, - "price_postapoc": 20, + "price": "1 USD 27 cent", + "price_postapoc": "20 cent", "material": [ "cotton" ], "symbol": ",", "color": "white", @@ -70,8 +70,8 @@ "weight": "138 g", "volume": "191 ml", "longest_side": "15 cm", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "plastic", "aluminum" ], "symbol": ";", @@ -97,8 +97,8 @@ "weight": "780 g", "volume": "1470 ml", "longest_side": "130 cm", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "wood" ], "symbol": "/", @@ -118,8 +118,8 @@ "weight": "730 g", "volume": "760 ml", "longest_side": "630 mm", - "price": 1500, - "price_postapoc": 15, + "price": "15 USD", + "price_postapoc": "15 cent", "to_hit": -2, "material": [ "plastic" ], "symbol": "/", @@ -140,8 +140,8 @@ "weight": "5 g", "volume": "6 ml", "//": "This is calculated from medium weight cotton at 203 GSM, with a size of 6 inches square", - "price": 200, - "price_postapoc": 2, + "price": "2 USD", + "price_postapoc": "2 cent", "material": [ "cotton" ], "symbol": ",", "qualities": [ [ "SIEVE", 1 ], [ "STRAIN", 2 ] ], @@ -159,8 +159,8 @@ "color": "light_cyan", "name": { "str": "razor blade" }, "description": "A double-edged razor blade.", - "price": 600, - "price_postapoc": 100, + "price": "6 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "weight": "1 g", "volume": "1 ml", @@ -175,8 +175,8 @@ "weight": "99 g", "volume": "735 ml", "longest_side": "21 cm", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "plastic" ], "symbol": ";", @@ -193,8 +193,8 @@ "description": "A cleaning aid made of soft, porous material. Typically used for cleaning hard objects.", "weight": "17 g", "volume": "156 ml", - "price": 66, - "price_postapoc": 10, + "price": "66 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": "s", "color": "yellow", @@ -219,8 +219,8 @@ "weight": "642 g", "volume": "1 L", "longest_side": "20 cm", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "leather", "glass" ], "symbol": ";", @@ -236,8 +236,8 @@ "weight": "540 g", "volume": "750 ml", "longest_side": "15 cm", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "leather", "glass" ], "symbol": ";", @@ -256,8 +256,8 @@ "weight": "1160 g", "volume": "900 ml", "longest_side": "40 cm", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "wood" ], "symbol": ";", @@ -273,8 +273,8 @@ "weight": "866 g", "volume": "2246 ml", "longest_side": "40 cm", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "material": [ "wood", "plastic" ], "symbol": "%", "color": "yellow", @@ -290,8 +290,8 @@ "weight": "154 g", "volume": "2250 ml", "longest_side": "21 cm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "cardboard", "plastic" ], "symbol": ")", "color": "brown", diff --git a/data/json/items/tool/traps.json b/data/json/items/tool/traps.json index 6888f20d949ab..c75b6f7eec835 100644 --- a/data/json/items/tool/traps.json +++ b/data/json/items/tool/traps.json @@ -7,8 +7,8 @@ "description": "A spring-loaded pair of steel jaws connected to a sensitive pressure plate. Use it to set it on the ground, creating a trap that will ensnare and damage anything that steps on it. If you are carrying a shovel, you will have the option of burying it.", "weight": "14000 g", "volume": "1500 ml", - "price": 6000, - "price_postapoc": 1000, + "price": "60 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -35,8 +35,8 @@ "weight": "2500 g", "volume": "3150 ml", "longest_side": "80 cm", - "price": 1500, - "price_postapoc": 500, + "price": "15 USD", + "price_postapoc": "5 USD", "material": "wood", "symbol": ";", "color": "brown", @@ -57,8 +57,8 @@ "description": "A machete attached laterally to a motor, with a tripwire controlling its throttle. When the tripwire is pulled, the blade is swung around with great force. The trap forms a 3x3 area of effect.", "weight": "10142 g", "volume": "9500 ml", - "price": 5000, - "price_postapoc": 1500, + "price": "50 USD", + "price_postapoc": "15 USD", "to_hit": -4, "material": [ "steel" ], "symbol": ";", @@ -83,8 +83,8 @@ "weight": "3917 g", "volume": "3750 ml", "longest_side": "65 cm", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "to_hit": -3, "material": [ "wood" ], "symbol": ";", @@ -108,8 +108,8 @@ "description": "A crude explosive device triggered by a piece of string. Use it to set it up and wait for some poor bastard to trigger it.", "weight": "586 g", "volume": "750 ml", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -131,8 +131,8 @@ "description": "A sheet of plastic covered with air-filled bubbles. Use it to set it on the ground, creating a trap that will warn you with noise when something steps on it.", "weight": "6 g", "volume": "250 ml", - "price": 50, - "price_postapoc": 10, + "price": "50 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": ";", "color": "light_cyan", @@ -154,8 +154,8 @@ "description": "A handful of small metal objects covered with many sharp points. If an unsuspecting victim steps on one, they'll get a spine through the foot.", "weight": "264 g", "volume": "250 ml", - "price": 900, - "price_postapoc": 100, + "price": "9 USD", + "price_postapoc": "1 USD", "to_hit": -4, "material": [ "iron" ], "symbol": ";", @@ -178,8 +178,8 @@ "description": "A handful of glass shards glued together to expose all their sharp edges. If an unsuspecting victim steps on one, they'll get cut.", "weight": "264 g", "volume": "500 ml", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "to_hit": -4, "material": [ "glass" ], "symbol": ";", @@ -202,8 +202,8 @@ "description": "A simple tripwire attached to the trigger of a loaded crossbow. When the tripwire is pulled, the crossbow fires. Only a single bolt can be used, after which the trap is disabled.", "weight": "1772 g", "volume": "1750 ml", - "price": 6000, - "price_postapoc": 1000, + "price": "60 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "steel", "wood" ], "symbol": ";", @@ -226,8 +226,8 @@ "description": "A military anti-personnel fragmentation mine that is triggered when stepped on.", "weight": "2360 g", "volume": "500 ml", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel" ], "symbol": ";", @@ -252,8 +252,8 @@ "description": "A simple tripwire attached to the trigger of a loaded double slam-fire shotgun. When the tripwire is pulled, the shotgun fires. Two shells are loaded; the first time the trigger is pulled, one or both shells may be discharged.", "weight": "2922 g", "volume": "1750 ml", - "price": 25000, - "price_postapoc": 1000, + "price": "250 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -276,8 +276,8 @@ "description": "A length of thin string with some affixing tools on either end. It must be placed across a doorway or other thin passage to function. Its purpose is to trip up trespassers, causing them to stumble and possibly hurt themselves slightly.", "weight": "40 g", "volume": "250 ml", - "price": 300, - "price_postapoc": 10, + "price": "3 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": ";", @@ -300,8 +300,8 @@ "description": "A handful of small impossibly-sharp teeth glued together. If an unsuspecting victim steps on one, they'll get a tooth through the foot.", "weight": "264 g", "volume": "500 ml", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "to_hit": -4, "material": [ "bone" ], "symbol": ";", diff --git a/data/json/items/tool/unfoldable.json b/data/json/items/tool/unfoldable.json index 4c23c5a608580..9194c486c73ed 100644 --- a/data/json/items/tool/unfoldable.json +++ b/data/json/items/tool/unfoldable.json @@ -5,8 +5,8 @@ "name": { "str_sp": "seeing this is a bug" }, "description": "seeing this is a bug", "volume": "0 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "symbol": "/", "color": "light_gray", "flags": [ "ZERO_WEIGHT" ], diff --git a/data/json/items/tool/woodworking.json b/data/json/items/tool/woodworking.json index e7d452d1d9a1c..85a4cfad72936 100644 --- a/data/json/items/tool/woodworking.json +++ b/data/json/items/tool/woodworking.json @@ -7,8 +7,8 @@ "weight": "2227 g", "volume": "2000 ml", "longest_side": "78 cm", - "price": 10500, - "price_postapoc": 750, + "price": "105 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "wood", "steel" ], "symbol": "/", @@ -45,8 +45,8 @@ "weight": "6577 g", "volume": "2500 ml", "longest_side": "82 cm", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": "/", @@ -130,8 +130,8 @@ "weight": "9525 g", "volume": "2500 ml", "longest_side": "275 cm", - "price": 40000, - "price_postapoc": 450, + "price": "400 USD", + "price_postapoc": "4 USD 50 cent", "to_hit": { "grip": "solid", "length": "long", "surface": "line", "balance": "clumsy" }, "looks_like": "chainsaw_off", "material": [ "steel", "plastic" ], @@ -213,8 +213,8 @@ "weight": "2940 g", "volume": "750 ml", "longest_side": "44 cm", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": "/", @@ -300,8 +300,8 @@ "weight": "379 g", "volume": "1000 ml", "longest_side": "35 cm", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "to_hit": { "grip": "weapon", "length": "short", "surface": "line", "balance": "neutral" }, "material": [ "wood", "copper" ], "symbol": ";", @@ -319,8 +319,8 @@ "weight": "1489 g", "volume": "2000 ml", "longest_side": "56 cm", - "price": 5500, - "price_postapoc": 250, + "price": "55 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "wood", "bronze" ], "symbol": "/", @@ -339,8 +339,8 @@ "color": "light_gray", "name": { "str": "hatchet" }, "description": "A one-handed hatchet. Makes a great melee weapon, and is useful both for chopping things and hammering them.", - "price": 2500, - "price_postapoc": 500, + "price": "25 USD", + "price_postapoc": "5 USD", "material": [ "steel", "wood" ], "techniques": [ "WBLOCK_1" ], "weight": "907 g", @@ -362,8 +362,8 @@ "weight": "1600 g", "volume": "1500 ml", "longest_side": "28 cm", - "price": 20000, - "price_postapoc": 250, + "price": "200 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": ";", @@ -380,8 +380,8 @@ "weight": "6577 g", "volume": "2500 ml", "longest_side": "82 cm", - "price": 8000, - "price_postapoc": 500, + "price": "80 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": "/", @@ -545,8 +545,8 @@ "description": "A broad piece of stone with an edge narrow enough to roughly chop wood.", "weight": "453 g", "volume": "230 ml", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "to_hit": -3, "material": [ "stone" ], "symbol": ";", @@ -573,8 +573,8 @@ "weight": "950 g", "volume": "1 L", "longest_side": "56 cm", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "stone", "wood" ], "symbol": ";", @@ -591,8 +591,8 @@ "weight": "822 g", "volume": "1 L", "longest_side": "56 cm", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "wood", "stone" ], "symbol": "/", @@ -610,8 +610,8 @@ "weight": "283 g", "volume": "1 L", "longest_side": "46 cm", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "steel", "wood" ], "symbol": ";", @@ -629,7 +629,7 @@ "weight": "600 g", "volume": "250 ml", "longest_side": "20 cm", - "price": 200, + "price": "2 USD", "to_hit": 2, "material": [ "stone" ], "symbol": ";", diff --git a/data/json/items/tool/workshop.json b/data/json/items/tool/workshop.json index 8d299467bdb29..aa992c0a53fb4 100644 --- a/data/json/items/tool/workshop.json +++ b/data/json/items/tool/workshop.json @@ -7,8 +7,8 @@ "weight": "35000 g", "volume": "12500 ml", "longest_side": "122 cm", - "price": 100, - "price_postapoc": 0, + "price": "1 USD", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "soil", "wood" ], "symbol": "#", @@ -34,8 +34,8 @@ "weight": "30000 g", "volume": "12500 ml", "longest_side": "122 cm", - "price": 40000, - "price_postapoc": 250, + "price": "400 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "ceramic", "wood" ], "symbol": "#", @@ -52,8 +52,8 @@ "description": "A bulky device that turns water and calcium carbide into unpressurized acetylene.", "weight": "8000 g", "volume": "3 L", - "price": 3200, - "price_postapoc": 500, + "price": "32 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel" ], "melee_damage": { "bash": 12 } @@ -65,8 +65,8 @@ "description": "A widespread power tool, often used for removing excess material or polishing surfaces.", "weight": "2780 g", "volume": "1750 ml", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": "/", @@ -95,8 +95,8 @@ "name": { "str": "cutoff disc" }, "description": "A manufactured disc for an angle grinder, with a thin, abrasive edge designed for cutting metal.", "category": "spare_parts", - "price": 20, - "price_postapoc": 500, + "price": "20 cent", + "price_postapoc": "5 USD", "material": [ "steel" ], "weight": "349 g", "volume": "250 ml", @@ -110,8 +110,8 @@ "name": { "str": "metal grinding disc" }, "description": "A manufactured disc for an angle grinder, with a thick, abrasive surface designed for grinding and shaping metal.", "category": "spare_parts", - "price": 20, - "price_postapoc": 500, + "price": "20 cent", + "price_postapoc": "5 USD", "material": [ "steel" ], "weight": "349 g", "volume": "250 ml", @@ -124,8 +124,8 @@ "description": "A portable coal-or-charcoal-fired kiln. It is designed for firing bricks, but you could use it to fire anything made of clay.", "weight": "9600 g", "volume": "30 L", - "price": 25000, - "price_postapoc": 1000, + "price": "250 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -144,8 +144,8 @@ "weight": "360 g", "volume": "500 ml", "longest_side": "265 mm", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "wood" ], "symbol": ";", @@ -160,8 +160,8 @@ "weight": "2000 g", "volume": "5 L", "longest_side": "35 cm", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "plastic", "wood" ], "symbol": ";", @@ -179,8 +179,8 @@ "weight": "1770 g", "volume": "4100 ml", "longest_side": "35 cm", - "price": 2500, - "price_postapoc": 2000, + "price": "25 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -198,8 +198,8 @@ "weight": "60 g", "volume": "300 ml", "longest_side": "5 cm", - "price": 7000, - "price_postapoc": 15, + "price": "70 USD", + "price_postapoc": "15 cent", "to_hit": 1, "material": [ "steel", "wood" ], "symbol": ";", @@ -214,8 +214,8 @@ "description": "A metal clamp, useful for holding things in place, especially if you have several of them.", "weight": "320 g", "volume": "300 ml", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -233,7 +233,7 @@ "//1": "With the assumption that it's a cylinder of 9.2in length and 2in diameter. Listing says 10in length but that's a lie - comparison images attached show it's 9.2in length. 2 inches diameter due to larger curvature than a normal crowbar.", "longest_side": "24 cm", "price": "19 USD", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "solid", "length": "hand", "surface": "any", "balance": "neutral" }, "material": [ "steel" ], "symbol": ";", @@ -255,7 +255,7 @@ "longest_side": "118 cm", "//1": "Calculated by assuming a cylinder with dimensions taken from the drum opening (14.5in) and product length (46.5in) and then doubling it. Calculating volume from the product dimensions inflated it artifically as it counted all the free space inbetween the handles, wheels, etc resulting in 600+l of volume (a portable concrete mixer that can't be transported in a vehicle lmao).", "price": "400 USD", - "price_postapoc": 500, + "price_postapoc": "5 USD", "to_hit": { "grip": "bad", "length": "long", "surface": "line", "balance": "clumsy" }, "material": [ "plastic", "steel" ], "pocket_data": [ @@ -287,8 +287,8 @@ "weight": "2721 g", "volume": "750 ml", "longest_side": "22 cm", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": ";", @@ -316,8 +316,8 @@ "weight": "2721 g", "volume": "750 ml", "longest_side": "22 cm", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": ";", @@ -340,8 +340,8 @@ "weight": "2900 g", "volume": "900 ml", "longest_side": "22 cm", - "price": 20000, - "price_postapoc": 250, + "price": "200 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": ";", @@ -370,8 +370,8 @@ "weight": "612 g", "volume": "1500 ml", "longest_side": "61 cm", - "price": 7000, - "price_postapoc": 15, + "price": "70 USD", + "price_postapoc": "15 cent", "to_hit": 1, "material": [ "wood" ], "symbol": "/", @@ -387,8 +387,8 @@ "weight": "40000 g", "volume": "12 L", "longest_side": "81 cm", - "price": 40000, - "price_postapoc": 500, + "price": "400 USD", + "price_postapoc": "5 USD", "to_hit": -8, "material": [ "steel" ], "symbol": ";", @@ -408,8 +408,8 @@ "weight": "952 g", "volume": "1 L", "longest_side": "30 cm", - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "steel" ], "symbol": ";", @@ -428,7 +428,7 @@ "volume": "500 ml", "longest_side": "25 cm", "price": "16 USD", - "price_postapoc": 100, + "price_postapoc": "1 USD", "to_hit": { "grip": "solid", "length": "hand", "surface": "point", "balance": "neutral" }, "material": [ { "type": "steel", "portion": 17 }, { "type": "plastic", "portion": 3 } ], "symbol": ";", @@ -447,8 +447,8 @@ "longest_side": "25 cm", "weight": "566 g", "volume": "320 ml", - "price": 700, - "price_postapoc": 100, + "price": "7 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": ";", @@ -468,7 +468,7 @@ "ascii_picture": "hammer", "weight": "500 g", "price": "1 USD", - "price_postapoc": 50, + "price_postapoc": "50 cent", "material": [ "bronze", "wood" ], "qualities": [ [ "HAMMER", 3 ], [ "HAMMER_FINE", 1 ] ], "use_action": [ ], @@ -484,7 +484,7 @@ "volume": "340 ml", "longest_side": "25 cm", "price": "1 USD", - "price_postapoc": 50, + "price_postapoc": "50 cent", "material": [ "bronze" ], "qualities": [ [ "PRYING_NAIL", 1 ], [ "HAMMER", 1 ], [ "PRY", 1 ] ], "melee_damage": { "bash": 6 } @@ -499,7 +499,7 @@ "volume": "1 L", "longest_side": "50 cm", "price": "1 USD", - "price_postapoc": 50, + "price_postapoc": "50 cent", "material": [ "bronze" ], "qualities": [ [ "AXE", 1 ], [ "SAW_W", 2 ] ], "melee_damage": { "bash": 2 } @@ -512,8 +512,8 @@ "weight": "907 g", "volume": "250 ml", "longest_side": "25 cm", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "wood", "steel" ], "symbol": ";", @@ -529,8 +529,8 @@ "weight": "544 g", "volume": "500 ml", "longest_side": "24 cm", - "price": 200, - "price_postapoc": 100, + "price": "2 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "rubber" ], "symbol": ",", @@ -549,8 +549,8 @@ "weight": "5000 g", "volume": "1500 ml", "longest_side": "25 cm", - "price": 18000, - "price_postapoc": 500, + "price": "180 USD", + "price_postapoc": "5 USD", "to_hit": -2, "qualities": [ [ "JACK", 16 ] ], "melee_damage": { "bash": 8 } @@ -566,8 +566,8 @@ "weight": "1800 g", "volume": "1 L", "longest_side": "18 cm", - "price": 800, - "price_postapoc": 100, + "price": "8 USD", + "price_postapoc": "1 USD", "to_hit": -2, "qualities": [ [ "JACK", 3 ] ], "melee_damage": { "bash": 4 } @@ -583,8 +583,8 @@ "weight": "3000 g", "volume": "750 ml", "longest_side": "14 cm", - "price": 5000, - "price_postapoc": 750, + "price": "50 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -2, "qualities": [ [ "JACK", 4 ] ], "melee_damage": { "bash": 4 } @@ -597,8 +597,8 @@ "weight": "27215 g", "volume": "10 L", "longest_side": "92 cm", - "price": 40000, - "price_postapoc": 1000, + "price": "400 USD", + "price_postapoc": "10 USD", "to_hit": -8, "material": [ "steel" ], "symbol": ";", @@ -618,8 +618,8 @@ "description": "An electric kiln, powered by your electric grid. It is designed for firing bricks, but you could use it to fire anything made of clay. With a little mechanical know-how, you could probably even convert it to run directly off a vehicle's power system.", "weight": "12000 g", "volume": "7500 ml", - "price": 50000, - "price_postapoc": 750, + "price": "500 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -637,8 +637,8 @@ "weight": "9860 g", "volume": "2500 ml", "longest_side": "36 cm", - "price": 5000, - "price_postapoc": 1500, + "price": "50 USD", + "price_postapoc": "15 USD", "to_hit": -2, "material": [ "steel", "aluminum" ], "symbol": ";", @@ -693,8 +693,8 @@ "weight": "1020 g", "volume": "320 ml", "longest_side": "30 cm", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": ";", @@ -718,8 +718,8 @@ "weight": "76 g", "volume": "250 ml", "longest_side": "13 cm", - "price": 300, - "price_postapoc": 100, + "price": "3 USD", + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -735,8 +735,8 @@ "weight": "362 g", "volume": "400 ml", "longest_side": "15 cm", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "iron" ], "symbol": ",", "color": "light_gray", @@ -751,8 +751,8 @@ "weight": "386 g", "volume": "1500 ml", "longest_side": "46 cm", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -784,8 +784,8 @@ "weight": "250 g", "volume": "70 ml", "longest_side": "12 cm", - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel" ], "symbol": ";", @@ -805,8 +805,8 @@ "weight": "212 g", "volume": "70 ml", "longest_side": "12 cm", - "price": 4000, - "price_postapoc": 700, + "price": "40 USD", + "price_postapoc": "7 USD", "to_hit": -4, "material": [ "steel" ], "symbol": ";", @@ -848,8 +848,8 @@ "description": "A compact tool kit intended for welding and cutting metal, this portable oxygen-acetylene torch includes a torch handle and cutting attachment in an easy-to-carry tote. It needs to be connected to a pressurized cylinder of an appropriate welding gas before use. In addition to its metalworking uses, you can activate it in order to destroy metal barriers.", "weight": "1600 g", "volume": "1 L", - "price": 20000, - "price_postapoc": 750, + "price": "200 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "steel", "plastic" ], "symbol": ";", "color": "red", @@ -870,8 +870,8 @@ "weight": "60 g", "volume": "350 ml", "longest_side": "21 cm", - "price": 7000, - "price_postapoc": 10, + "price": "70 USD", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "wood" ], "symbol": ";", @@ -886,8 +886,8 @@ "weight": "4535 g", "volume": "3 L", "longest_side": "91 cm", - "price": 16000, - "price_postapoc": 1250, + "price": "160 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -2, "material": [ "wood", "steel" ], "symbol": "/", @@ -906,8 +906,8 @@ "weight": "6 kg", "volume": "3 L", "longest_side": "91 cm", - "price": 16000, - "price_postapoc": 1250, + "price": "160 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -2, "material": [ "wood", "bronze" ], "symbol": "/", @@ -926,8 +926,8 @@ "weight": "76 g", "volume": "20 ml", "longest_side": "13 cm", - "price": 300, - "price_postapoc": 100, + "price": "3 USD", + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -944,8 +944,8 @@ "weight": "225 g", "volume": "107 ml", "longest_side": "17 cm", - "price": 800, - "price_postapoc": 100, + "price": "8 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -962,8 +962,8 @@ "weight": "800 g", "volume": "280 ml", "longest_side": "30 cm", - "price": 800, - "price_postapoc": 100, + "price": "8 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -980,8 +980,8 @@ "weight": "320 g", "volume": "222 ml", "longest_side": "18 cm", - "price": 1200, - "price_postapoc": 100, + "price": "12 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -996,8 +996,8 @@ "description": "An electric polisher, used to buff metal surfaces until they are reflective like a mirror.", "weight": "1000 g", "volume": "3500 ml", - "price": 35000, - "price_postapoc": 250, + "price": "350 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": ";", @@ -1025,8 +1025,8 @@ "weight": "1020 g", "volume": "400 ml", "longest_side": "30 cm", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "stone", "wood" ], "symbol": ";", @@ -1042,8 +1042,8 @@ "description": "A battery-powered tool, commonly known by the generic trademark Sawzall, that uses an electric motor to push a straight sawblade back and forth to rapidly cut wood or metal. It is useful for heavy demolition and construction work, but poorly suited to precision tasks.", "weight": "2 kg", "volume": "3 L", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": "/", @@ -1072,8 +1072,8 @@ "weight": "500 g", "volume": "250 ml", "longest_side": "60 cm", - "price": 1500, - "price_postapoc": 10, + "price": "15 USD", + "price_postapoc": "10 cent", "to_hit": -1, "material": [ "nylon", "steel", "plastic" ], "symbol": ";", @@ -1106,8 +1106,8 @@ "weight": "170 g", "volume": "40 ml", "longest_side": "12 cm", - "price": 450, - "price_postapoc": 50, + "price": "4 USD 50 cent", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -1126,8 +1126,8 @@ "weight": "340 g", "volume": "500 ml", "longest_side": "28 cm", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -1145,8 +1145,8 @@ "weight": "340 g", "volume": "500 ml", "longest_side": "28 cm", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -1165,8 +1165,8 @@ "weight": "1300 g", "volume": "1200 ml", "longest_side": "25 cm", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -1183,8 +1183,8 @@ "weight": "2420 g", "volume": "1500 ml", "longest_side": "32 cm", - "price": 1500, - "price_postapoc": 750, + "price": "15 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -1239,8 +1239,8 @@ "weight": "90 g", "volume": "120 ml", "longest_side": "22 cm", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ { "type": "plastic", "portion": 75 }, { "type": "copper", "portion": 25 } ], "symbol": ",", "color": "light_gray", @@ -1297,7 +1297,7 @@ "longest_side": "46 cm", "volume": "460 ml", "price": "23 USD", - "price_postapoc": 300, + "price_postapoc": "3 USD", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "clumsy" }, "material": [ "steel" ], "symbol": "L", @@ -1316,7 +1316,7 @@ "volume": "8000 ml", "longest_side": "42 cm", "price": "17 USD", - "price_postapoc": 100, + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -1334,8 +1334,8 @@ "weight": "8618 g", "volume": "34400 ml", "longest_side": "66 cm", - "price": 14099, - "price_postapoc": 3250, + "price": "140 USD 99 cent", + "price_postapoc": "32 USD 50 cent", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -1350,8 +1350,8 @@ "description": "A cable-powered tool for welding metal pieces together using an electric arc. It is an indispensable tool for construction or repair.", "weight": "4200 g", "volume": "2500 ml", - "price": 9000, - "price_postapoc": 750, + "price": "90 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "steel" ], "symbol": ";", @@ -1401,8 +1401,8 @@ "description": "A crude arc welder fashioned from a few small transformers, some wire, an improvised electrode holder, and a complete disregard for personal safety. While it's not as efficient as a factory-made welder, it will serve in a pinch.", "weight": "7250 g", "volume": "3500 ml", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -1452,8 +1452,8 @@ "description": "A welder combined with a fireproof insulating blanket allows for advanced welds and repairs to tempered steels.", "weight": "10500 g", "volume": "12500 ml", - "price": 9000, - "price_postapoc": 750, + "price": "90 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "steel", "asbestos" ], "symbol": ";", @@ -1506,8 +1506,8 @@ "weight": "2000 g", "volume": "3500 ml", "longest_side": "61 cm", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -3, "material": [ "wood" ], "symbol": "/", @@ -1523,8 +1523,8 @@ "description": "A natural cluster of wool fibers. Could be processed into felt patches or yarn.", "weight": "200 g", "volume": "500 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -4, "material": [ "wool" ], "symbol": ",", @@ -1539,8 +1539,8 @@ "weight": "23 g", "volume": "20 ml", "longest_side": "10 cm", - "price": 400, - "price_postapoc": 100, + "price": "4 USD", + "price_postapoc": "1 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", @@ -1560,8 +1560,8 @@ "weight": "110 g", "volume": "20 ml", "longest_side": "15 cm", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -1578,7 +1578,7 @@ "volume": "75 ml", "longest_side": "25 cm", "price": "18 USD", - "price_postapoc": 100, + "price_postapoc": "1 USD", "to_hit": { "grip": "solid", "length": "hand", "surface": "any", "balance": "neutral" }, "material": [ "steel" ], "symbol": ";", @@ -1599,8 +1599,8 @@ "weight": "1900 g", "volume": "250 ml", "longest_side": "46 cm", - "price": 1200, - "price_postapoc": 100, + "price": "12 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -1616,8 +1616,8 @@ "weight": "600 g", "volume": "500 ml", "longest_side": "24 cm", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "material": [ "leather" ], "symbol": ",", "color": "green", @@ -1631,8 +1631,8 @@ "weight": "1354 g", "volume": "1 L", "longest_side": "42 cm", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "to_hit": -3, "material": [ "wood", "steel" ], "symbol": ";", @@ -1648,8 +1648,8 @@ "description": "A machine designed specifically for turning metal rods into wire.", "weight": "26 kg", "volume": "20 L", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -1673,8 +1673,8 @@ "description": "A compact tool kit intended for cutting metal, this portable propane torch includes a torch handle and cutting attachment in an easy-to-carry tote. It needs to be connected to a pressurized propane cylinder before use. While not appropriate for welding, you can activate it in order to destroy metal barriers.", "weight": "1600 g", "volume": "1 L", - "price": 20000, - "price_postapoc": 750, + "price": "200 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "steel", "plastic" ], "symbol": ";", "color": "red", @@ -1699,8 +1699,8 @@ "description": "A sturdy metal housing with a number of pulleys that can be used with a thick rope or a chain to gain mechanical advantage on a lift.", "weight": "500 g", "volume": "400 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "&", "color": "light_gray" @@ -1713,8 +1713,8 @@ "description": "A wooden housing with a pair of pulleys that can be used with a thick rope or a chain to gain mechanical advantage on a lift. Not as durable as a metal set.", "weight": "230 g", "volume": "400 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "material": [ "wood" ], "symbol": "&", "color": "brown" @@ -1726,8 +1726,8 @@ "description": "A non-flammable mat used to protect surfaces from welding splatter, or to insulate a weld when repairing tempered metal. This one is made with asbestos.", "weight": "6 kg", "volume": "11500 ml", - "price": 30000, - "price_postapoc": 500, + "price": "300 USD", + "price_postapoc": "5 USD", "material": [ "asbestos" ], "symbol": "#", "color": "light_gray" @@ -1739,8 +1739,8 @@ "description": "A makeshift mostly-non-flammable mat used to protect surfaces from welding splatter or to insulate a weld when repairing tempered metal. This one is stitched together from oven insulation batts.", "weight": "3 kg", "volume": "11500 ml", - "price": 3000, - "price_postapoc": 200, + "price": "30 USD", + "price_postapoc": "2 USD", "material": [ "epoxy", "kevlar" ], "symbol": "#", "color": "light_gray" @@ -1753,8 +1753,8 @@ "weight": "1500 g", "volume": "750 ml", "longest_side": "40 cm", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel" ], "qualities": [ [ "THREAD_TAP", 2 ], [ "THREAD_CUT", 2 ] ], @@ -1768,8 +1768,8 @@ "description": "A machine for separating seed from chaff. It mechanized the winnowing process, in which the grain was separated from the lighter chaff and straw by blowing a leather bellows.", "weight": "15000 g", "volume": "75 L", - "price": 25000, - "price_postapoc": 1000, + "price": "250 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "wood" ], "symbol": ";", diff --git a/data/json/items/tool_armor.json b/data/json/items/tool_armor.json index c9c02e5ccfafd..e0f7370247979 100644 --- a/data/json/items/tool_armor.json +++ b/data/json/items/tool_armor.json @@ -6,8 +6,8 @@ "description": "A tool to help set arm bones and hold them in place.", "weight": "300 g", "volume": "1 L", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "material": [ "wood", "cotton" ], "symbol": "[", "looks_like": "armguard_hard", @@ -27,8 +27,8 @@ "looks_like": "arm_splint", "weight": "600 g", "volume": "2 L", - "price": 25000, - "price_postapoc": 50, + "price": "250 USD", + "price_postapoc": "50 cent", "material": [ "wood", "cotton" ], "flags": [ "OVERSIZE", "WATER_FRIENDLY", "OUTER", "SPLINT" ] }, @@ -41,8 +41,8 @@ "looks_like": "arm_splint", "weight": "150 g", "volume": "500 ml", - "price": 15000, - "price_postapoc": 50, + "price": "150 USD", + "price_postapoc": "50 cent", "flags": [ "UNDERSIZE", "WATER_FRIENDLY", "OUTER", "SPLINT" ] }, { @@ -52,8 +52,8 @@ "description": "A first aid device used to apply pressure to a limb or extremity in order to limit blood flow. Should be employed only to manage heavy bleeding, because prolonged use will harm the limb. It can be adjusted in size to fit different limbs.", "weight": "300 g", "volume": "300 ml", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "material": [ "wood", "cotton" ], "symbol": "{", "looks_like": "armguard_hard", @@ -130,8 +130,8 @@ "description": "A crude eye covering woven from blades of grass with string attached to fasten it. Useful for sleeping in bright areas. Use to raise it.", "weight": "32 g", "volume": "200 ml", - "price": 5, - "price_postapoc": 1, + "price": "5 cent", + "price_postapoc": "1 cent", "use_action": { "type": "transform", "msg": "You uncover your eyes.", "target": "makeshift_blindfold_up", "menu_text": "Raise" }, "material": [ "dry_plant" ], "symbol": "[", @@ -150,8 +150,8 @@ "description": "A crude eye covering woven from blades of grass with string attached to fasten it. It's currently raised, letting you see. Use to lower it.", "weight": "32 g", "volume": "200 ml", - "price": 5, - "price_postapoc": 1, + "price": "5 cent", + "price_postapoc": "1 cent", "use_action": { "type": "transform", "msg": "You cover your eyes.", "target": "makeshift_blindfold", "menu_text": "Lower" }, "material": [ "dry_plant" ], "symbol": "[", @@ -170,8 +170,8 @@ "description": "A simple fabric covering tied over the eyes to block sight. Useful for sleeping in bright areas. Use to raise it.", "weight": "72 g", "volume": "100 ml", - "price": 600, - "price_postapoc": 10, + "price": "6 USD", + "price_postapoc": "10 cent", "use_action": { "type": "transform", "msg": "You uncover your eyes.", "target": "blindfold_up", "menu_text": "Raise" }, "material": [ "cotton" ], "symbol": "[", @@ -190,8 +190,8 @@ "description": "A simple fabric covering tied over the eyes to block sight. It's currently raised, letting you see. Use to lower it.", "weight": "72 g", "volume": "100 ml", - "price": 600, - "price_postapoc": 10, + "price": "6 USD", + "price_postapoc": "10 cent", "use_action": { "type": "transform", "msg": "You cover your eyes.", "target": "blindfold", "menu_text": "Lower" }, "material": [ "cotton" ], "symbol": "[", @@ -210,8 +210,8 @@ "description": "A simple covering tied over the eyes to block sight, made out of duct tape. Useful for sleeping in bright areas. Use to raise it.", "weight": "20 g", "volume": "60 ml", - "price": 10, - "price_postapoc": 5, + "price": "10 cent", + "price_postapoc": "5 cent", "use_action": { "type": "transform", "msg": "You uncover your eyes.", "target": "blindfold_duct_up", "menu_text": "Raise" }, "material": [ "plastic" ], "symbol": "[", @@ -230,8 +230,8 @@ "description": "A simple covering tied over the eyes to block sight, made out of duct tape. It's currently raised, letting you see. Use to lower it.", "weight": "20 g", "volume": "60 ml", - "price": 10, - "price_postapoc": 5, + "price": "10 cent", + "price_postapoc": "5 cent", "use_action": { "type": "transform", "msg": "You cover your eyes.", "target": "blindfold_duct", "menu_text": "Lower" }, "material": [ "plastic" ], "symbol": "[", @@ -250,8 +250,8 @@ "description": "Industrial-grade ear plugs. They fit inside the ears.", "weight": "10 g", "volume": "10 ml", - "price": 10, - "price_postapoc": 50, + "price": "10 cent", + "price_postapoc": "50 cent", "material": [ "plastic" ], "symbol": ";", "color": "light_gray", @@ -265,8 +265,8 @@ "description": "A huge duffel bag with a backpack attached, both packed to the gills. Judging by the feel, a National Guardsman could have packed this to be ready for deployment. Activate to unpack and enjoy.", "weight": "18043 g", "volume": "35750 ml", - "price": 100000, - "price_postapoc": 1000, + "price": "1 kUSD", + "price_postapoc": "10 USD", "to_hit": -5, "material": [ "cotton", "plastic" ], "symbol": "[", @@ -301,8 +301,8 @@ "description": "A tool to help set leg bones and hold them in place.", "weight": "500 g", "volume": "1 L", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "material": [ "wood", "cotton" ], "symbol": "[", "looks_like": "legguard_hard", @@ -321,8 +321,8 @@ "copy-from": "leg_splint", "weight": "1000 g", "volume": "2 L", - "price": 25000, - "price_postapoc": 50, + "price": "250 USD", + "price_postapoc": "50 cent", "material": [ "wood", "cotton" ], "flags": [ "OVERSIZE", "WATER_FRIENDLY", "OUTER", "SPLINT", "ALLOWS_TAIL" ] }, @@ -334,8 +334,8 @@ "copy-from": "leg_splint", "weight": "250 g", "volume": "500 ml", - "price": 25000, - "price_postapoc": 50, + "price": "250 USD", + "price_postapoc": "50 cent", "flags": [ "UNDERSIZE", "WATER_FRIENDLY", "OUTER", "SPLINT", "ALLOWS_TAIL" ] }, { @@ -347,8 +347,8 @@ "name": { "str": "mining helmet" }, "description": "A mining helmet with a heavy-duty LED flashlight. Using this will turn the flashlight on and provide light, assuming it is charged with batteries.", "flags": [ "WATERPROOF", "PADDED" ], - "price": 12500, - "price_postapoc": 250, + "price": "125 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "1196 g", "volume": "3 L", @@ -449,8 +449,8 @@ "weight": "1 kg", "volume": "4 L", "longest_side": "34 cm", - "price": 1400, - "price_postapoc": 500, + "price": "14 USD", + "price_postapoc": "5 USD", "to_hit": -3, "use_action": { "type": "transform", "msg": "You push your %s up your head.", "target": "welding_mask_raised", "menu_text": "Raise" }, "material": [ "plastic" ], @@ -479,8 +479,8 @@ "description": "A crude welding mask made from shaped steel. It will keep your face safe while welding, but it's a bit less comfortable than the real deal. Activate it to push it up your head.", "weight": "4 kg", "volume": "4 L", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": -3, "use_action": { "type": "transform", @@ -514,8 +514,8 @@ "description": "A crude welding mask made from shaped steel. It's less dark than a proper welding mask, and therefore less difficult to see in, but also less protective when welding. Activate it to lower it over your face.", "weight": "4 kg", "volume": "4 L", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "to_hit": -3, "use_action": { "type": "transform", @@ -538,8 +538,8 @@ "weight": "1 kg", "volume": "4 L", "longest_side": "34 cm", - "price": 1400, - "price_postapoc": 500, + "price": "14 USD", + "price_postapoc": "5 USD", "to_hit": -3, "use_action": { "type": "transform", @@ -565,8 +565,8 @@ "to_hit": -1, "color": "light_gray", "sided": true, - "price": 6000, - "price_postapoc": 100, + "price": "60 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "flags": [ "WATCH", "ALARMCLOCK", "WATER_FRIENDLY", "BELTED", "FRAGILE", "ALLOWS_NATURAL_ATTACKS", "OVERSIZE" ], "symbol": "[", @@ -594,8 +594,8 @@ "to_hit": -1, "color": "light_gray", "sided": true, - "price": 10000, - "price_postapoc": 150, + "price": "100 USD", + "price_postapoc": "1 USD 50 cent", "material": [ { "type": "plastic", "portion": 75 }, { "type": "aluminum", "portion": 25 } ], "flags": [ "WATCH", @@ -629,8 +629,8 @@ "to_hit": -1, "color": "light_gray", "sided": true, - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "flags": [ "WATCH", "WATER_FRIENDLY", "BELTED", "FRAGILE", "ALLOWS_NATURAL_ATTACKS", "OVERSIZE" ], "symbol": "[", @@ -649,8 +649,8 @@ "to_hit": -1, "color": "light_gray", "sided": true, - "price": 2500, - "price_postapoc": 100, + "price": "25 USD", + "price_postapoc": "1 USD", "material": [ "rubber", "plastic" ], "flags": [ "WATER_FRIENDLY", "BELTED", "ALLOWS_NATURAL_ATTACKS", "OVERSIZE" ], "symbol": "[", @@ -685,8 +685,8 @@ "description": "A cloak woven with metallic fibers and covered with hexagonal sheets of reflective carbide. When activated, it will create a holographic decoy of its wearer.", "weight": "1552 g", "volume": "3500 ml", - "price": 5500000, - "price_postapoc": 10000, + "price": "55 kUSD", + "price_postapoc": "100 USD", "to_hit": -1, "material": [ "superalloy" ], "symbol": "[", @@ -726,8 +726,8 @@ "use_action": { "menu_text": "Tip", "type": "transform", "target": "fedora", "msg": "You tip your %s." }, "symbol": "[", "description": "A high-crowned, wide-brimmed, sable-colored fedora. Its brim helps keep the sun out of your eyes. The perfect hat for treasure hunting.", - "price": 7500, - "price_postapoc": 100, + "price": "75 USD", + "price_postapoc": "1 USD", "material": [ "leather" ], "volume": "1750 ml", "warmth": 7, @@ -745,8 +745,8 @@ "name": { "str": "pair of thermal electric socks", "str_pl": "pairs of thermal electric socks" }, "description": "A pair of socks with internal battery-powered heating elements. Use it to turn it on.", "flags": [ "VARSIZE", "SKINTIGHT" ], - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "weight": "182 g", "volume": "750 ml", @@ -799,8 +799,8 @@ "name": { "str": "thermal electric suit" }, "description": "A full-body suit of thin thermal underwear equipped with internal battery-powered heating elements. Use it to turn it on.", "flags": [ "VARSIZE", "SKINTIGHT" ], - "price": 15000, - "price_postapoc": 500, + "price": "150 USD", + "price_postapoc": "5 USD", "material": [ "cotton" ], "weight": "3972 g", "volume": "2 L", @@ -853,8 +853,8 @@ "name": { "str": "pair of thermal electric gloves", "str_pl": "pairs of thermal electric gloves" }, "description": "A pair of gloves with internal battery-powered heating elements. Use it to turn it on.", "flags": [ "VARSIZE", "SKINTIGHT" ], - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "material": [ "cotton" ], "weight": "210 g", "volume": "750 ml", @@ -907,8 +907,8 @@ "name": { "str": "thermal electric balaclava" }, "description": "A snug cloth mask with internal battery-powered heating elements. Use it to turn it on.", "flags": [ "VARSIZE", "SKINTIGHT" ], - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "weight": "196 g", "volume": "1 L", @@ -961,7 +961,7 @@ "name": { "str": "pair of binoculars", "str_pl": "pairs of binoculars" }, "description": "A pair of optics with a neck strap attached. Useful for seeing long distances. Wearing this item or carrying it in your inventory will double the distance around you that is mapped during your travels. You could also use them to focus the sunlight.", "price": "34 USD", - "price_postapoc": 500, + "price_postapoc": "5 USD", "material": [ { "type": "plastic", "portion": 9 }, { "type": "glass" } ], "flags": [ "ZOOM", "OVERSIZE", "BELTED", "ALLOWS_NATURAL_ATTACKS", "FIRESTARTER" ], "weight": "550 g", @@ -982,8 +982,8 @@ "color": "blue", "name": { "str": "headlamp" }, "description": "An LED headlamp with an adjustable strap so as to be comfortably worn on your head or attached to your helmet. Use it to turn it on.", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "material": [ "plastic", "aluminum" ], "flags": [ "OVERSIZE", "BELTED", "PADDED", "ALLOWS_NATURAL_ATTACKS" ], "weight": "520 g", @@ -1018,8 +1018,8 @@ "color": "blue", "name": { "str": "wearable camera" }, "description": "A point-and-shoot digital camera with a digital viewfinder, a backup 'iron-sight', and flash. You can look at your photos on the digital screen, or transfer them with a memory card. Takes conventional batteries. This one can be worn over your neck.", - "price": 20000, - "price_postapoc": 50, + "price": "200 USD", + "price_postapoc": "50 cent", "material": [ "plastic", "steel" ], "flags": [ "OVERSIZE", "BELTED", "ALLOWS_NATURAL_ATTACKS", "WATER_BREAK", "ELECTRONIC" ], "weight": "520 g", @@ -1046,8 +1046,8 @@ "color": "blue", "name": { "str": "wearable professional camera" }, "description": "A 35 mm digital SLR (single-lens reflex) camera with optical and digital viewfinders, a zoom lens with auto-focus and stabilizer, and flash. You can view your photos on it or transfer them with a memory card; it runs on conventional batteries. Before the Cataclysm, you could have taken professional-grade photos using this. This one can be worn over your neck", - "price": 800000, - "price_postapoc": 100, + "price": "8 kUSD", + "price_postapoc": "1 USD", "material": [ "plastic", "steel" ], "flags": [ "CAMERA_PRO", "ALWAYS_TWOHAND", "OVERSIZE", "BELTED", "ALLOWS_NATURAL_ATTACKS", "WATER_BREAK", "ELECTRONIC" ], "weight": "520 g", @@ -1108,8 +1108,8 @@ "color": "blue", "name": { "str": "heavy-duty headlamp" }, "description": "A large and unwieldy homemade headlamp with an overpowered LED array and adjustable strap so as to be worn on your head or attached to your helmet while being as comfortable as possible. Use it to turn it on.", - "price": 4000, - "price_postapoc": 200, + "price": "40 USD", + "price_postapoc": "2 USD", "material": [ "plastic", "aluminum" ], "flags": [ "OVERSIZE", "BELTED", "PADDED", "ALLOWS_NATURAL_ATTACKS" ], "weight": "830 g", @@ -1146,8 +1146,8 @@ "looks_like": "wearable_light_on", "name": { "str": "atomic headlamp" }, "description": "A custom-made, reinforced headlamp powered by the magic of nuclear decay, focused for more usable brightness. The adjustable strap allows it to be comfortably worn on your head or attached to your helmet. Use it to close the cover and hide the light.", - "price": 4000, - "price_postapoc": 1500, + "price": "40 USD", + "price_postapoc": "15 USD", "material": [ "steel", "plastic" ], "flags": [ "LIGHT_200", @@ -1196,8 +1196,8 @@ "description": "A pair of compact augmented reality glasses with some basic functionality. There is a camera on the rim, and it has an alarm clock feature.", "weight": "65 g", "volume": "720 ml", - "price": 50000, - "price_postapoc": 250, + "price": "500 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "symbol": "[", "looks_like": "glasses_safety", @@ -1226,8 +1226,8 @@ "description": "An expensive model of augmented reality glasses, with adaptive light correction and some gadgets, designed to be compatible with corrective glasses. An augmented reality overlay allows the user to zoom their view, and it displays handy information about local topology.", "weight": "170 g", "volume": "750 ml", - "price": 300000, - "price_postapoc": 400, + "price": "3 kUSD", + "price_postapoc": "4 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "glasses_safety", @@ -1275,9 +1275,9 @@ "description": "An armored, electronically-shielded helmet containing a camera, a two-way radio, and a headlamp, all of which can be voice-activated for redundancy. It is designed to protect against overpressure, fragmentation, impact, and heat.", "weight": "3600 g", "volume": "4 L", - "price": 1613900, + "price": "16 kUSD 139 USD", "//": "Based on the EOD 10 and EOD 9 helmets.", - "price_postapoc": 10000, + "price_postapoc": "100 USD", "armor": [ { "material": [ @@ -1366,8 +1366,8 @@ "COMBAT_TOGGLEABLE", "UNBREAKABLE_MELEE" ], - "price": 50000000, - "price_postapoc": 10000, + "price": "500 kUSD", + "price_postapoc": "100 USD", "material": [ "hyperweave_off", "carbide" ], "weight": "9540 g", "volume": "9 L", @@ -1545,8 +1545,8 @@ "name": { "str": "5-point anchor" }, "looks_like": "chestguard_hard", "description": "A featureless, disc-shaped device mounted on a harness. The words \"X.E.D.R.A\" and \"5-point anchor\" are inscribed on its front and back.", - "price": 150000, - "price_postapoc": 8000, + "price": "1 kUSD 500 USD", + "price_postapoc": "80 USD", "material": [ "ceramic", "kevlar" ], "weight": "1250 g", "volume": "4500 ml", @@ -1613,8 +1613,8 @@ "name": { "str": "phase immersion suit" }, "looks_like": "rm13_armor", "description": "Covered in interlocking plates of reflective metal, this advanced suit resembles both plate armor and an astronaut's spacesuit. Designed to protect its wearer during extradimensional excursions, it offers unparalleled environmental protection, both in this Earth and beyond. Use it to turn it on.", - "price": 150000, - "price_postapoc": 15000, + "price": "1 kUSD 500 USD", + "price_postapoc": "150 USD", "material": [ "carbide", "qt_steel", "lvl4ballisticglass", "superalloy" ], "weight": "9500 g", "volume": "4500 ml", @@ -1771,8 +1771,8 @@ "name": { "str": "rebreather mask" }, "description": "A mask worn over your mouth which, when loaded with the proper filters, recycles your exhaled breath for rebreathing while underwater. Use it to turn it on.", "flags": [ "WATER_FRIENDLY", "PADDED" ], - "price": 25000, - "price_postapoc": 500, + "price": "250 USD", + "price_postapoc": "5 USD", "material": [ "plastic", "aluminum" ], "weight": "720 g", "volume": "500 ml", @@ -1823,8 +1823,8 @@ "name": { "str": "XL rebreather mask" }, "description": "A mask worn over your mouth which, when loaded with the proper filters, recycles your exhaled breath for rebreathing while underwater. This model has been expanded substantially and can accommodate exotic anatomy. Use it to turn it on.", "flags": [ "WATER_FRIENDLY", "OVERSIZE" ], - "price": 25000, - "price_postapoc": 500, + "price": "250 USD", + "price_postapoc": "5 USD", "material": [ "plastic", "aluminum" ], "weight": "960 g", "volume": "1250 ml", @@ -1881,8 +1881,8 @@ "name": { "str": "XS rebreather mask" }, "description": "A mask worn over your mouth which, when loaded with the proper filters, recycles your exhaled breath for rebreathing while underwater. This model has been shrunk dramatically to fit a smaller face. Use it to turn it on.", "flags": [ "WATER_FRIENDLY", "UNDERSIZE" ], - "price": 25000, - "price_postapoc": 500, + "price": "250 USD", + "price_postapoc": "5 USD", "material": [ "plastic", "aluminum" ], "weight": "360 g", "volume": "250 ml", @@ -1934,8 +1934,8 @@ "flags": [ "SLEEP_IGNORE" ], "weight": "260 g", "volume": "500 ml", - "price": 3500, - "price_postapoc": 250, + "price": "35 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": "[", @@ -1967,8 +1967,8 @@ "flags": [ "SLEEP_IGNORE" ], "weight": "897 g", "volume": "1 L", - "price": 4900, - "price_postapoc": 750, + "price": "49 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -3, "material": [ "plastic" ], "symbol": "[", @@ -2001,8 +2001,8 @@ "description": "A rather roomy mask with filters attached, designed to accommodate exotic anatomy. Provides excellent protection from smoke, tear gas, and other contaminants. It must be prepared before use.", "weight": "1397 g", "volume": "1500 ml", - "price": 25000, - "price_postapoc": 750, + "price": "250 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -3, "material": [ "plastic" ], "symbol": "[", @@ -2036,8 +2036,8 @@ "description": "A rather small gas mask that covers the face and eyes. Provides excellent protection from smoke, tear gas, and other contaminants. It must be prepared before use.", "weight": "470 g", "volume": "500 ml", - "price": 25000, - "price_postapoc": 750, + "price": "250 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -3, "material": [ "plastic" ], "symbol": "[", @@ -2072,8 +2072,8 @@ "flags": [ "SLEEP_IGNORE" ], "weight": "400 g", "volume": "500 ml", - "price": 5200, - "price_postapoc": 750, + "price": "52 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "plastic" ], "symbol": "[", "looks_like": "mask_dust", @@ -2103,8 +2103,8 @@ "description": "A custom-made leather gasmask faced with Nomex. It must be prepared before use.", "weight": "686 g", "volume": "1250 ml", - "price": 26000, - "price_postapoc": 1800, + "price": "260 USD", + "price_postapoc": "18 USD", "to_hit": -3, "pocket_data": [ { @@ -2169,8 +2169,8 @@ "name": { "str": "firefighter PBA mask" }, "description": "A full-face mask commonly used by firefighters. The protective breathing apparatus provides excellent protection from smoke, flame, and other dangers. It must be prepared before use.", "flags": [ "WATERPROOF", "STURDY", "SUN_GLASSES", "SLEEP_IGNORE", "PADDED" ], - "price": 100000, - "price_postapoc": 750, + "price": "1 kUSD", + "price_postapoc": "7 USD 50 cent", "material": [ "plastic", "nomex" ], "weight": "1260 g", "volume": "1500 ml", @@ -2215,8 +2215,8 @@ "description": "A gas mask handcrafted from treated leather with a steel faceplate overtop. It must be prepared before use.", "weight": "686 g", "volume": "1350 ml", - "price": 26000, - "price_postapoc": 1800, + "price": "260 USD", + "price_postapoc": "18 USD", "to_hit": -3, "pocket_data": [ { @@ -2283,8 +2283,8 @@ "description": "A half-face gasmask handcrafted from treated leather. It provides no protection for the eyes, and must be activated before use.", "weight": "341 g", "volume": "625 ml", - "price": 20000, - "price_postapoc": 1450, + "price": "200 USD", + "price_postapoc": "14 USD 50 cent", "to_hit": -3, "pocket_data": [ { @@ -2339,8 +2339,8 @@ "description": "A gas mask handcrafted from treated leather. It must be prepared before use.", "weight": "682 g", "volume": "1250 ml", - "price": 24000, - "price_postapoc": 1750, + "price": "240 USD", + "price_postapoc": "17 USD 50 cent", "to_hit": -3, "pocket_data": [ { @@ -2402,8 +2402,8 @@ "name": { "str": "pair of light amp goggles", "str_pl": "pairs of light amp goggles" }, "description": "A pair of battery-powered goggles that amplify ambient light, allowing you to see in the dark. Use it to turn them on.", "flags": [ "FRAGILE", "OUTER", "ELECTRONIC" ], - "price": 92000, - "price_postapoc": 3500, + "price": "920 USD", + "price_postapoc": "35 USD", "material": [ "plastic", "steel" ], "weight": "1020 g", "volume": "1 L", @@ -2455,8 +2455,8 @@ "name": { "str": "pair of infrared goggles", "str_pl": "pairs of infrared goggles" }, "description": "A pair of battery-powered goggles that grant infrared vision, allowing you to see warm-blooded creatures in the dark. Use it to turn them on.", "flags": [ "FRAGILE", "OUTER", "ELECTRONIC" ], - "price": 92000, - "price_postapoc": 2500, + "price": "920 USD", + "price_postapoc": "25 USD", "material": [ "plastic", "steel" ], "weight": "1240 g", "volume": "1 L", @@ -2506,8 +2506,8 @@ "color": "blue", "name": { "str": "wearable RX12 jet injector" }, "description": "A modified RX12 jet injector which can be worn on the body. A label on the side warns against using more than two doses per hour.", - "price": 40000, - "price_postapoc": 1000, + "price": "400 USD", + "price_postapoc": "10 USD", "material": [ "ceramic", "superalloy" ], "flags": [ "OVERSIZE" ], "weight": "364 g", @@ -2525,8 +2525,8 @@ "color": "dark_gray", "name": { "str_sp": "RX11 stimulant delivery system" }, "description": "A Rivtech RX11 stimulant delivery system, a jet autoinjector system worn on the user's body. A simple press of its activator injects powerful chemical stimulants into the bloodstream without using a needle.", - "price": 40000, - "price_postapoc": 1000, + "price": "400 USD", + "price_postapoc": "10 USD", "material": [ "superalloy", "kevlar_rigid" ], "flags": [ "OVERSIZE" ], "weight": "212 g", @@ -2546,8 +2546,8 @@ "name": { "str": "survivor divemask" }, "description": "A custom-built, armored rebreather mask that covers the face and eyes. Provides excellent protection from harm as well providing breathing gas while underwater. Use it to turn it on.", "flags": [ "VARSIZE", "STURDY", "WATER_FRIENDLY", "SWIM_GOGGLES" ], - "price": 40000, - "price_postapoc": 2000, + "price": "400 USD", + "price_postapoc": "20 USD", "material": [ "kevlar_layered", "plastic" ], "weight": "982 g", "volume": "1500 ml", @@ -2697,8 +2697,8 @@ "color": "dark_gray", "name": { "str": "radiation biomonitor" }, "description": "A small, battery-powered biometric safety device worn on the wrist. Activate to check your current level of radiation exposure.", - "price": 60000, - "price_postapoc": 1000, + "price": "600 USD", + "price_postapoc": "10 USD", "material": [ "plastic", "aluminum" ], "weight": "150 g", "volume": "150 ml", @@ -2727,8 +2727,8 @@ "color": "brown", "name": { "str": "hairpin" }, "description": "A plain hairpin to keep your hair in place.", - "price": 4, - "price_postapoc": 10, + "price": "4 cent", + "price_postapoc": "10 cent", "material": [ "steel" ], "weight": "200 mg", "volume": "1 ml", @@ -2741,8 +2741,8 @@ "color": "pink", "name": { "str": "fancy hairpin" }, "description": "A pink hairpin with cute flower textures.", - "price": 1000, - "price_postapoc": 5, + "price": "10 USD", + "price_postapoc": "5 cent", "material": [ "plastic" ], "weight": "100 mg", "flags": [ "FANCY" ] @@ -2754,8 +2754,8 @@ "color": "cyan", "name": { "str": "towel" }, "description": "A large, fluffy towel. It could be used to dry yourself. Any person that can travel the length and breadth of the apocalypse, rough it, slum it, struggle against terrible odds, win through, and still know where their towel is, is clearly a force to be reckoned with.", - "price": 4500, - "price_postapoc": 10, + "price": "45 USD", + "price_postapoc": "10 cent", "material": [ "cotton" ], "weight": "370 g", "volume": "500 ml", @@ -2772,8 +2772,8 @@ "color": "blue", "name": { "str": "towel" }, "description": "A large, sopping wet towel. If you wait a little bit, it should dry out. Don't panic.", - "price": 2000, - "price_postapoc": 0, + "price": "20 USD", + "price_postapoc": "0 cent", "material": [ "cotton" ], "weight": "400 g", "volume": "500 ml", @@ -2794,8 +2794,8 @@ "use_action": { "menu_text": "Tip", "type": "transform", "target": "straw_fedora", "msg": "You tip your %s." }, "symbol": "[", "description": "A straw fedora hat, comfortable and stylish. Its brim helps keep the sun out of your eyes.", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "paper" ], "volume": "1250 ml", "warmth": 5, @@ -2813,8 +2813,8 @@ "name": { "str": "thermal electric outfit" }, "description": "A suit of thin thermal underwear that covers you from head to toe and is equipped with internal battery-powered heating elements. Use it to turn it on.", "flags": [ "VARSIZE", "SKINTIGHT", "WATER_BREAK" ], - "price": 30000, - "price_postapoc": 750, + "price": "300 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "cotton" ], "weight": "5748 g", "volume": "4500 ml", @@ -2871,8 +2871,8 @@ "category": "clothing", "weight": "478 g", "volume": "2500 ml", - "price": 5000, - "price_postapoc": 60, + "price": "50 USD", + "price_postapoc": "60 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "sweater", @@ -2900,8 +2900,8 @@ "category": "clothing", "weight": "478 g", "volume": "2500 ml", - "price": 5000, - "price_postapoc": 60, + "price": "50 USD", + "price_postapoc": "60 cent", "material": [ "wool" ], "symbol": "[", "looks_like": "sweater", @@ -2929,8 +2929,8 @@ "category": "clothing", "weight": "300 g", "volume": "2000 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "sweater", @@ -2958,8 +2958,8 @@ "category": "clothing", "weight": "300 g", "volume": "2000 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "sweater", @@ -2994,8 +2994,8 @@ }, "symbol": "[", "description": "A warm wool mask that protects the head and face from the cold. It has a full face opening that can be adjusted to set how much is exposed.", - "price": 1800, - "price_postapoc": 250, + "price": "18 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "wool" ], "volume": "250 ml", "warmth": 45, @@ -3020,8 +3020,8 @@ "revert_to": "mask_ski", "symbol": "[", "description": "A warm wool mask that protects the head and face from the cold. It has a full face opening that can be adjusted to set how much is exposed.", - "price": 1800, - "price_postapoc": 250, + "price": "18 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "wool" ], "volume": "250 ml", "warmth": 25, @@ -3039,8 +3039,8 @@ "weight": "25 g", "to_hit": -1, "color": "light_gray", - "price": 200, - "price_postapoc": 50, + "price": "2 USD", + "price_postapoc": "50 cent", "material": [ "steel", "cotton" ], "flags": [ "WATER_FRIENDLY", "BELTED" ], "symbol": "[", @@ -3065,8 +3065,8 @@ "name": { "str_sp": "shooter's earmuffs" }, "description": "A pair of earmuffs favored by shooters. Without batteries or when turned off, they function like normal earmuffs and block all sound. They will only block sounds over a certain decibel amount when turned on, to protect your ears from injury while otherwise allowing you to hear normally. The earmuffs are currently off.", "flags": [ "DEAF", "OVERSIZE", "BELTED", "ALLOWS_NATURAL_ATTACKS", "WATER_BREAK", "ELECTRONIC" ], - "price": 12500, - "price_postapoc": 750, + "price": "125 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "plastic" ], "weight": "179 g", "volume": "1 L", @@ -3101,8 +3101,8 @@ "name": { "str_sp": "shooter's earmuffs" }, "description": "A pair of earmuffs favored by shooters. The earmuffs are turned on, and will block sounds over a certain decibel amount while otherwise allowing you to hear normally.", "flags": [ "OVERSIZE", "BELTED", "ALLOWS_NATURAL_ATTACKS", "PARTIAL_DEAF", "WATER_BREAK", "ELECTRONIC" ], - "price": 12500, - "price_postapoc": 750, + "price": "125 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "plastic" ], "weight": "179 g", "volume": "1 L", @@ -3139,8 +3139,8 @@ "name": { "str_sp": "shooter's ear plugs" }, "description": "A pair of in-ear drivers designed to dampen loud sounds and amplify quiet sounds. Without batteries or when turned off, they function like normal earplugs and block most sound. They will only block sounds over a certain decibel amount when turned on, to protect your ears from injury while otherwise allowing you to hear normally. The earplugs are currently off.", "flags": [ "DEAF", "OVERSIZE", "USE_UPS", "NO_UNLOAD", "NO_RELOAD", "WATER_BREAK", "ELECTRONIC" ], - "price": 12500, - "price_postapoc": 1250, + "price": "125 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "plastic" ], "weight": "20 g", "volume": "200 ml", @@ -3183,8 +3183,8 @@ "color": "dark_gray", "name": { "str": "stethoscope" }, "description": "A medical listening tool. Use it to listen to things. Closely.", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "material": [ "plastic", "aluminum" ], "weight": "150 g", "volume": "250 ml", @@ -3198,8 +3198,8 @@ "color": "dark_gray", "name": { "str": "makeshift stethoscope" }, "description": "A relatively cumbersome DIY child's medical listening toy. Use it to listen to things. Closely.", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "weight": "400 g", "volume": "500 ml", @@ -3213,8 +3213,8 @@ "description": "A personal portable charging system consisting of an array of solar panels neatly folded into the form of a large backpack. It can be worn like a normal backpack, and has an integrated cable to plug it into a cable charger system CBM.", "weight": "7500 g", "volume": "5 L", - "price": 500000, - "price_postapoc": 1500, + "price": "5 kUSD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "glass", "steel" ], "symbol": "[", @@ -3232,8 +3232,8 @@ "description": "An unfolded array of portable solar panels, ready to push some power into an active cable charger system CBM.", "weight": "7500 g", "volume": "15 L", - "price": 500000, - "price_postapoc": 1500, + "price": "5 kUSD", + "price_postapoc": "15 USD", "to_hit": -2, "material": [ "glass", "steel" ], "symbol": "[", @@ -3254,8 +3254,8 @@ "use_action": { "type": "transform", "target": "helmet_riot_raised", "menu_text": "Raise visor", "msg": "You raise your visor." }, "weight": "1450 g", "volume": "2250 ml", - "price": 22000, - "price_postapoc": 1000, + "price": "220 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "plastic", "thermo_resin" ], "symbol": "[", @@ -3309,8 +3309,8 @@ "use_action": { "type": "transform", "target": "helmet_riot", "menu_text": "Lower visor", "msg": "You put down your visor." }, "weight": "1450 g", "volume": "2250 ml", - "price": 22000, - "price_postapoc": 1000, + "price": "220 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "plastic", "thermo_resin" ], "symbol": "[", @@ -3341,8 +3341,8 @@ "description": "A popular German helmet of the late medieval era, the sallet covers the head and eyes. Activate it to toggle the visor.", "weight": "1800 g", "volume": "2050 ml", - "price": 35000, - "price_postapoc": 4500, + "price": "350 USD", + "price_postapoc": "45 USD", "use_action": { "type": "transform", "msg": "You raise the sallet visor.", "target": "helmet_sallet_raised", "menu_text": "Raise" }, "material": [ "steel", "leather" ], "symbol": "s", @@ -3367,8 +3367,8 @@ "description": "A popular German helmet of the late medieval era, the sallet covers the head and eyes. Activate it to toggle the visor.", "weight": "1800 g", "volume": "2050 ml", - "price": 35000, - "price_postapoc": 4500, + "price": "350 USD", + "price_postapoc": "45 USD", "use_action": { "type": "transform", "msg": "You lower the sallet visor over your eyes.", @@ -3395,8 +3395,8 @@ "description": "An iconic knightly helm of the late Middle Ages. When you think of a knight's helmet, it looks something like this. Activate it to toggle the visor.", "weight": "2300 g", "volume": "2050 ml", - "price": 55000, - "price_postapoc": 5500, + "price": "550 USD", + "price_postapoc": "55 USD", "use_action": { "type": "transform", "msg": "You raise the armet visor.", "target": "helmet_armet_raised", "menu_text": "Raise" }, "material": [ "steel", "leather" ], "symbol": "s", @@ -3422,8 +3422,8 @@ "description": "An iconic knightly helm of the late Middle Ages. When you think of a knight's helmet, it looks something like this. Activate it to toggle the visor.", "weight": "2300 g", "volume": "2050 ml", - "price": 55000, - "price_postapoc": 5500, + "price": "550 USD", + "price_postapoc": "55 USD", "use_action": { "type": "transform", "msg": "You lower the armet visor.", "target": "helmet_armet", "menu_text": "Lower" }, "material": [ "steel", "leather" ], "symbol": "s", @@ -3446,8 +3446,8 @@ "description": "A high-pressure 232 bar diving tank that can contain up to 12 L of a compressed mixture of oxygen and nitrogen. It is equipped with an on-demand regulator and a mouthpiece designed mostly for underwater use.", "weight": "16000 g", "volume": "12 L", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -3473,8 +3473,8 @@ "looks_like": "oxygen_tank", "weight": "16000 g", "volume": "12 L", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "steel", "plastic" ], "symbol": ";", @@ -3506,8 +3506,8 @@ "looks_like": "smoxygen_tank", "weight": "7000 g", "volume": "4 L", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -3533,8 +3533,8 @@ "looks_like": "smoxygen_tank", "weight": "7000 g", "volume": "4 L", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -3564,8 +3564,8 @@ "description": "A heated blanket made of polyester. The most comfortable thing on Earth. Its power drain is usually negligible, but without being able to plug it into a wall, it chews through batteries insanely quickly.", "weight": "1123 g", "volume": "2500 ml", - "price": 5500, - "price_postapoc": 250, + "price": "55 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -3629,8 +3629,8 @@ "description": "Foodperson, the mascot your stomach deserves!", "weight": "1500 g", "volume": "16 L", - "price": 1500, - "price_postapoc": 10, + "price": "15 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "cotton", "plastic" ], "symbol": "Q", @@ -3739,8 +3739,8 @@ "description": "A military flight helmet. Equipped with a visor, microphone, and noise dampening system. The helmet is also fitted with plastic rails to allow for different load-outs.", "weight": "1324 g", "volume": "2 L", - "price": 50000, - "price_postapoc": 1000, + "price": "500 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "kevlar_rigid", "plastic" ], "symbol": "[", @@ -3783,8 +3783,8 @@ "description": "A military flight helmet with various LED devices blinking periodically. Equipped with a visor, microphone, and noise dampening system. The helmet is also fitted with plastic rails to allow for different load-outs.", "weight": "1324 g", "volume": "2 L", - "price": 50000, - "price_postapoc": 1000, + "price": "500 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "kevlar_rigid", "plastic" ], "symbol": "[", @@ -3829,8 +3829,8 @@ }, "symbol": "[", "description": "A military officer's combo cover, or peaked cap. It conveys an air of authority, while keeping the sun out of your eyes.", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "material": [ "cotton" ], "volume": "1750 ml", "warmth": 7, @@ -3848,8 +3848,8 @@ "description": "A skeletal frame of sturdy metal with attached motors to allow the user to move heavier loads with less strain on the body.", "weight": "90 kg", "volume": "130 L", - "price": 11500000, - "price_postapoc": 40000, + "price": "115 kUSD", + "price_postapoc": "400 USD", "to_hit": 1, "material": [ "steel", "plastic" ], "symbol": "[", @@ -3903,8 +3903,8 @@ "description": "A skeletal frame of sturdy metal with attached motors to allow the user to move heavier loads with less strain on the body. This model uses a compact internal combustion engine for power.", "weight": "110 kg", "volume": "130 L", - "price": 11500000, - "price_postapoc": 40000, + "price": "115 kUSD", + "price_postapoc": "400 USD", "to_hit": 1, "material": [ "steel", "plastic" ], "symbol": "[", diff --git a/data/json/items/toolmod.json b/data/json/items/toolmod.json index cad247db6a1b2..9f03053899fa5 100644 --- a/data/json/items/toolmod.json +++ b/data/json/items/toolmod.json @@ -8,7 +8,7 @@ "material": [ "plastic", "ceramic" ], "symbol": ";", "color": "dark_gray", - "price": 100, + "price": "1 USD", "acceptable_ammo": [ "battery" ] }, { diff --git a/data/json/items/toy.json b/data/json/items/toy.json index ab96eaf4b1b77..6ed765cb46b56 100644 --- a/data/json/items/toy.json +++ b/data/json/items/toy.json @@ -8,8 +8,8 @@ "material": [ "cotton" ], "weight": "900 g", "volume": "3 L", - "price": 2000, - "price_postapoc": 100, + "price": "20 USD", + "price_postapoc": "1 USD", "symbol": "i", "color": "cyan", "flags": [ "SLEEP_AID", "NO_SALVAGE" ], @@ -728,8 +728,8 @@ "weight": "625 g", "volume": "30 L", "longest_side": "103 cm", - "price": 600, - "price_postapoc": 20, + "price": "6 USD", + "price_postapoc": "20 cent", "symbol": "s", "color": "cyan", "flags": [ "SLEEP_AID" ] @@ -743,8 +743,8 @@ "material": [ "plastic" ], "weight": "500 g", "volume": "1 L", - "price": 2000, - "price_postapoc": 20, + "price": "20 USD", + "price_postapoc": "20 cent", "symbol": "f", "color": "cyan", "variant_type": "generic", @@ -806,8 +806,8 @@ "material": [ "plastic" ], "weight": "125 g", "volume": "200 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "symbol": "f", "color": "cyan", "variant_type": "generic", @@ -869,8 +869,8 @@ "weight": "50 g", "volume": "70 ml", "longest_side": "7 cm", - "price": 200, - "price_postapoc": 5, + "price": "2 USD", + "price_postapoc": "5 cent", "symbol": "q", "color": "light_gray" }, @@ -889,8 +889,8 @@ "menu_text": "Spin", "effect_on_conditions": [ { "id": "EOC_spinner_spinning", "effect": { "u_message": "You spin your fidget spinner." } } ] }, - "price": 500, - "price_postapoc": 5, + "price": "5 USD", + "price_postapoc": "5 cent", "symbol": "/", "color": "green" }, @@ -901,8 +901,8 @@ "description": "Its legs are mismatched, its arms misshapen, its eyes more crooked than its smile. Everywhere, it sparkles with the golden thread that has put it back together. It's beautiful.", "category": "other", "material": [ "cotton" ], - "price": 0, - "price_postapoc": 10000000, + "price": "0 cent", + "price_postapoc": "100 kUSD", "symbol": "@", "color": "white", "looks_like": "talking_doll", @@ -920,8 +920,8 @@ "description": "They're different colors and different lengths. It would be hard to run away with these.", "category": "other", "material": [ "cotton" ], - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "symbol": "i", "color": "dark_gray", "flags": [ "NO_SALVAGE", "INTEGRATED", "ZERO_WEIGHT" ] @@ -933,8 +933,8 @@ "description": "The spun cloth fingers are fraying away. There's nothing that they could hold on to.", "category": "other", "material": [ "cotton" ], - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "symbol": "i", "color": "cyan", "flags": [ "NO_SALVAGE", "INTEGRATED", "ZERO_WEIGHT" ] @@ -946,8 +946,8 @@ "description": "A pair of mismatched buttons and some dull yellow thread, to put on a brave face with.", "category": "other", "material": [ "cotton" ], - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "symbol": "i", "color": "dark_gray", "flags": [ "NO_SALVAGE", "INTEGRATED", "ZERO_WEIGHT" ] diff --git a/data/json/items/vehicle/alternator.json b/data/json/items/vehicle/alternator.json index 86a723412c590..2f0bd2c5ef4bf 100644 --- a/data/json/items/vehicle/alternator.json +++ b/data/json/items/vehicle/alternator.json @@ -16,8 +16,8 @@ "description": "A standard alternator used to power vehicle electrical systems.", "weight": "4000 g", "volume": "2500 ml", - "price": 9000, - "price_postapoc": 500 + "price": "90 USD", + "price_postapoc": "5 USD" }, { "id": "alternator_motorbike", @@ -27,8 +27,8 @@ "description": "A compact, lightweight alternator used to power small vehicle electrical systems.", "weight": "1100 g", "volume": "1 L", - "price": 8000, - "price_postapoc": 300 + "price": "80 USD", + "price_postapoc": "3 USD" }, { "id": "alternator_bicycle", @@ -38,8 +38,8 @@ "description": "A very lightweight alternator used to power a bicycle's headlights.", "weight": "1100 g", "volume": "1 L", - "price": 8000, - "price_postapoc": 250 + "price": "80 USD", + "price_postapoc": "2 USD 50 cent" }, { "id": "alternator_truck", @@ -49,8 +49,8 @@ "description": "A larger and more powerful alternator used to power vehicle electrical systems.", "weight": "5800 g", "volume": "3 L", - "price": 12000, - "price_postapoc": 1000 + "price": "120 USD", + "price_postapoc": "10 USD" }, { "id": "generator_7500w", @@ -60,7 +60,7 @@ "description": "A bulky but efficient electrical generator designed to be attached to an engine.", "weight": "48000 g", "volume": "7500 ml", - "price": 30000, - "price_postapoc": 4500 + "price": "300 USD", + "price_postapoc": "45 USD" } ] diff --git a/data/json/items/vehicle/animals.json b/data/json/items/vehicle/animals.json index 3dfca1d9cb42b..62278b605b8ec 100644 --- a/data/json/items/vehicle/animals.json +++ b/data/json/items/vehicle/animals.json @@ -7,8 +7,8 @@ "description": "A bar and harness to attach a sufficiently large creature to a wheeled vehicle, allowing them to pull it along.", "weight": "1000 g", "volume": "3750 ml", - "price": 48000, - "price_postapoc": 750, + "price": "480 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "leather", "wood" ], "symbol": "H", @@ -27,8 +27,8 @@ "weight": "35000 g", "//": "calculating weight: yoke_harness (1000 g) + frame (20 000 g) + scrap (50 g)x35 OR steel_lump(1000 g)x5 + pipe(1250 g)x2 + chain(3628)x2. Total 1: 32506 g. Total 2: 35756 g. With rounding and fudge factor: 35000 g. Previus eyeballed guess before doing any of this math was 30000 g.", "volume": "20 L", - "price": 60000, - "price_postapoc": 1000, + "price": "600 USD", + "price_postapoc": "10 USD", "to_hit": -4, "material": [ "leather", "steel" ], "symbol": "H", diff --git a/data/json/items/vehicle/armor.json b/data/json/items/vehicle/armor.json index cc50565e4a4cf..65284d106f50a 100644 --- a/data/json/items/vehicle/armor.json +++ b/data/json/items/vehicle/armor.json @@ -7,8 +7,8 @@ "description": "Several interlocked rods of rebar serving as makeshift armor, allowing for light and effective reinforcement of vehicle sections.", "weight": "2200 g", "volume": "3 L", - "price": 750, - "price_postapoc": 500, + "price": "7 USD 50 cent", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel" ], "symbol": "]", @@ -23,8 +23,8 @@ "description": "A makeshift combination of springs and scrap that protects a particular section of a vehicle from the shock of impacts. The springs can absorb a surprising amount of damage.", "weight": "22540 g", "volume": "3 L", - "price": 1300, - "price_postapoc": 750, + "price": "13 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "steel" ], "symbol": "]", diff --git a/data/json/items/vehicle/battery.json b/data/json/items/vehicle/battery.json index 8b59a92daaf1e..b9287d5a945cf 100644 --- a/data/json/items/vehicle/battery.json +++ b/data/json/items/vehicle/battery.json @@ -8,8 +8,8 @@ "ascii_picture": "battery_car", "weight": "20 kg", "volume": "10 L", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "material": [ "plastic", "lead" ], "symbol": ":", "color": "light_cyan", @@ -29,8 +29,8 @@ "ascii_picture": "battery_motorbike", "weight": "3000 g", "volume": "1500 ml", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "capacity": 450, "//": "12Ah @ 12VDC. Could supply ~125 watts for an hour", "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "battery": 450 } } ] @@ -44,8 +44,8 @@ "ascii_picture": "battery_motorbike_small", "weight": "1500 g", "volume": "750 ml", - "price": 20000, - "price_postapoc": 100, + "price": "200 USD", + "price_postapoc": "1 USD", "capacity": 225, "//": "~2.4Ah @ 12VDC. Could supply ~125 watts 30 minutes or so", "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "battery": 225 } } ] @@ -63,8 +63,8 @@ "material": [ "plastic", "steel" ], "volume": "2250 ml", "category": "veh_parts", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "melee_damage": { "bash": 1 } }, { @@ -79,8 +79,8 @@ "material": [ "plastic", "steel", "copper" ], "volume": "300 ml", "category": "veh_parts", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "melee_damage": { "bash": 1 } }, { @@ -92,8 +92,8 @@ "ascii_picture": "large_storage_battery", "weight": "150 kg", "volume": "50 L", - "price": 400000, - "price_postapoc": 2500, + "price": "4 kUSD", + "price_postapoc": "25 USD", "capacity": 100000, "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "battery": 100000 } } ], "melee_damage": { "bash": 40 } @@ -107,8 +107,8 @@ "ascii_picture": "medium_storage_battery", "weight": "15 kg", "volume": "5 L", - "price": 50000, - "price_postapoc": 750, + "price": "500 USD", + "price_postapoc": "7 USD 50 cent", "capacity": 10000, "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "battery": 10000 } } ], "melee_damage": { "bash": 14 } @@ -122,8 +122,8 @@ "ascii_picture": "small_storage_battery", "weight": "1500 g", "volume": "500 ml", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "capacity": 1000, "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "battery": 1000 } } ], "melee_damage": { "bash": 7 } @@ -137,8 +137,8 @@ "ascii_picture": "storage_battery", "weight": "75 kg", "volume": "25 L", - "price": 200000, - "price_postapoc": 1500, + "price": "2 kUSD", + "price_postapoc": "15 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": ":", diff --git a/data/json/items/vehicle/boat.json b/data/json/items/vehicle/boat.json index 70e5a06979b89..ef21441503284 100644 --- a/data/json/items/vehicle/boat.json +++ b/data/json/items/vehicle/boat.json @@ -6,8 +6,8 @@ "color": "brown", "name": { "str": "wood boat hull" }, "description": "A wooden board that keeps the boat afloat. Add boat hulls to a vehicle until it floats, then attach oars or a motor to get the boat to move.", - "price": 8000, - "price_postapoc": 100, + "price": "80 USD", + "price_postapoc": "1 USD", "material": [ "wood" ], "weight": "3000 g", "volume": "12500 ml", @@ -22,8 +22,8 @@ "color": "brown", "name": { "str": "raft boat hull" }, "description": "Logs tied together to make a vehicle float. Add boat hulls to a vehicle until it floats, then attach oars or a motor to get the boat to move.", - "price": 100, - "price_postapoc": 10, + "price": "1 USD", + "price_postapoc": "10 cent", "material": [ "wood" ], "weight": "6000 g", "volume": "12500 ml", @@ -38,8 +38,8 @@ "color": "brown", "name": { "str": "plastic boat hull" }, "description": "A rigid plastic sheet that keeps the boat afloat. Add boat hulls to a vehicle until it floats, then attach oars or a motor to get the boat to move.", - "price": 16000, - "price_postapoc": 250, + "price": "160 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "1500 g", "volume": "12500 ml", @@ -54,8 +54,8 @@ "color": "brown", "name": { "str": "carbon fiber boat hull" }, "description": "A rigid carbon fiber sheet that keeps the boat afloat. Add boat hulls to a vehicle until it floats, then attach oars or a motor to get the boat to move.", - "price": 40000, - "price_postapoc": 500, + "price": "400 USD", + "price_postapoc": "5 USD", "material": [ "kevlar_rigid" ], "weight": "500 g", "volume": "12500 ml", @@ -74,8 +74,8 @@ "material": [ "wood" ], "volume": "16 L", "category": "veh_parts", - "price": 9000, - "price_postapoc": 100, + "price": "90 USD", + "price_postapoc": "1 USD", "melee_damage": { "bash": 18 } }, { @@ -90,8 +90,8 @@ "material": [ "wood", "cotton" ], "volume": "7500 ml", "category": "veh_parts", - "price": 9000, - "price_postapoc": 1250, + "price": "90 USD", + "price_postapoc": "12 USD 50 cent", "melee_damage": { "bash": 4 } }, { @@ -101,8 +101,8 @@ "color": "green", "name": { "str_sp": "inflatable section" }, "description": "An inflatable boat section.", - "price": 8000, - "price_postapoc": 100, + "price": "80 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "weight": "3000 g", "volume": "12500 ml", @@ -117,8 +117,8 @@ "color": "dark_gray", "name": { "str_sp": "inflatable airbag" }, "description": "An inflatable airbag.", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "3000 g", "volume": "12500 ml", @@ -133,8 +133,8 @@ "color": "light_gray", "name": { "str": "aluminum boat hull" }, "description": "An aluminum hull that keeps the boat afloat. Add boat hulls to a vehicle until it floats, then attach oars or a motor to get the boat to move.", - "price": 16000, - "price_postapoc": 250, + "price": "160 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "aluminum" ], "weight": "2250 g", "volume": "12500 ml", diff --git a/data/json/items/vehicle/cargo.json b/data/json/items/vehicle/cargo.json index e280aef79c9de..f5532bd084e3d 100644 --- a/data/json/items/vehicle/cargo.json +++ b/data/json/items/vehicle/cargo.json @@ -12,8 +12,8 @@ "techniques": [ "DEF_DISARM" ], "volume": "22500 ml", "category": "veh_parts", - "price": 10000, - "price_postapoc": 50, + "price": "100 USD", + "price_postapoc": "50 cent", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 20 } }, @@ -24,8 +24,8 @@ "description": "A collection of pipes, cams, and straps, mounted on the edge of a vehicle and used to support another vehicle for transport. It must be mounted on a vehicle to be used.", "weight": "4000 g", "volume": "6250 ml", - "price": 16000, - "price_postapoc": 50, + "price": "160 USD", + "price_postapoc": "50 cent", "category": "veh_parts", "material": [ "steel", "plastic" ], "symbol": "]", @@ -44,8 +44,8 @@ "category": "veh_parts", "weight": "500 g", "volume": "250 ml", - "price": 800, - "price_postapoc": 50 + "price": "8 USD", + "price_postapoc": "50 cent" }, { "type": "GENERIC", @@ -62,8 +62,8 @@ "description": "A simple bike basket. It is small and foldable.", "weight": "1200 g", "volume": "5 L", - "price": 3500, - "price_postapoc": 50, + "price": "35 USD", + "price_postapoc": "50 cent", "copy-from": "basket" }, { @@ -78,8 +78,8 @@ "material": [ "steel", "plastic" ], "volume": "50 L", "category": "veh_parts", - "price": 40000, - "price_postapoc": 500, + "price": "400 USD", + "price_postapoc": "5 USD", "melee_damage": { "bash": 2 } }, { @@ -93,8 +93,8 @@ "volume": "50 L", "material": [ "steel", "plastic" ], "category": "veh_parts", - "price": 20000, - "price_postapoc": 500, + "price": "200 USD", + "price_postapoc": "5 USD", "melee_damage": { "bash": 2 } }, { @@ -104,8 +104,8 @@ "description": "A heavy frame outfitted with tie-downs and attachment points for carrying cargo, with additional railings to keep a large animal in place. It is meant to hold large animals for transport. Use it on a suitable animal to capture, use it on an empty tile to release.", "weight": "96000 g", "volume": "62500 ml", - "price": 48000, - "price_postapoc": 750, + "price": "480 USD", + "price_postapoc": "7 USD 50 cent", "category": "veh_parts", "material": [ "steel", "plastic" ], "symbol": "]", @@ -126,8 +126,8 @@ "category": "veh_parts", "weight": "27600 g", "volume": "18750 ml", - "price": 37500, - "price_postapoc": 750 + "price": "375 USD", + "price_postapoc": "7 USD 50 cent" }, { "id": "animal_locker", diff --git a/data/json/items/vehicle/controls.json b/data/json/items/vehicle/controls.json index 739e48b9e30b7..18dc1b86f946f 100644 --- a/data/json/items/vehicle/controls.json +++ b/data/json/items/vehicle/controls.json @@ -11,8 +11,8 @@ "material": [ "plastic" ], "volume": "4 L", "category": "veh_parts", - "price": 10000, - "price_postapoc": 1250, + "price": "100 USD", + "price_postapoc": "12 USD 50 cent", "flags": [ "WATER_BREAK", "ELECTRONIC" ] }, { @@ -27,8 +27,8 @@ "material": [ "plastic" ], "volume": "2 L", "category": "veh_parts", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "flags": [ "WATER_BREAK", "ELECTRONIC" ] }, { @@ -41,8 +41,8 @@ "weight": "1400 g", "to_hit": -5, "material": [ "steel", "plastic" ], - "price": 20000, - "price_postapoc": 1500 + "price": "200 USD", + "price_postapoc": "15 USD" }, { "type": "GENERIC", @@ -56,8 +56,8 @@ "material": [ "plastic", "steel" ], "volume": "3 L", "category": "veh_parts", - "price": 40000, - "price_postapoc": 500, + "price": "400 USD", + "price_postapoc": "5 USD", "flags": [ "WATER_BREAK", "ELECTRONIC" ], "melee_damage": { "bash": 2 } }, @@ -69,8 +69,8 @@ "description": "A set of leather bindings to control a mountable creature.", "weight": "500 g", "volume": "1200 ml", - "price": 30000, - "price_postapoc": 1000, + "price": "300 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "leather" ], "symbol": "W", @@ -90,8 +90,8 @@ "material": [ "plastic", "steel" ], "volume": "10 L", "category": "veh_parts", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "flags": [ "WATER_BREAK", "ELECTRONIC" ], "melee_damage": { "bash": 1 } }, @@ -105,8 +105,8 @@ "to_hit": -4, "material": [ "plastic" ], "volume": "1500 ml", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "flags": [ "WATER_BREAK", "ELECTRONIC" ] }, { @@ -117,8 +117,8 @@ "weight": "3000 g", "color": "red", "volume": "3750 ml", - "price": 200000, - "price_postapoc": 1500, + "price": "2 kUSD", + "price_postapoc": "15 USD", "copy-from": "vehicle_controls", "melee_damage": { "bash": 1 } }, @@ -131,8 +131,8 @@ "color": "white", "symbol": "&", "volume": "5 L", - "price": 20000, - "price_postapoc": 1000, + "price": "200 USD", + "price_postapoc": "10 USD", "copy-from": "vehicle_controls", "melee_damage": { "bash": 1 } }, @@ -145,8 +145,8 @@ "color": "white", "symbol": "&", "volume": "9 L", - "price": 500000, - "price_postapoc": 3000, + "price": "5 kUSD", + "price_postapoc": "30 USD", "copy-from": "vehicle_controls" }, { @@ -161,8 +161,8 @@ "material": [ "steel" ], "volume": "740 ml", "category": "veh_parts", - "price": 40000, - "price_postapoc": 40, + "price": "400 USD", + "price_postapoc": "40 cent", "melee_damage": { "bash": 3 } }, { @@ -177,8 +177,8 @@ "material": [ "rubber", "steel" ], "volume": "740 ml", "category": "veh_parts", - "price": 10000, - "price_postapoc": 40, + "price": "100 USD", + "price_postapoc": "40 cent", "melee_damage": { "bash": 3 } }, { @@ -193,8 +193,8 @@ "material": [ "wood" ], "volume": "656 ml", "category": "veh_parts", - "price": 2000, - "price_postapoc": 20, + "price": "20 USD", + "price_postapoc": "20 cent", "melee_damage": { "bash": 1 } } ] diff --git a/data/json/items/vehicle/engine.json b/data/json/items/vehicle/engine.json index 498f37bce4d00..1b767a8dbf712 100644 --- a/data/json/items/vehicle/engine.json +++ b/data/json/items/vehicle/engine.json @@ -54,8 +54,8 @@ "description": "A 50 cc single-cylinder 4-stroke combustion engine.", "weight": "3750 g", "volume": "12 L", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "faults": [ "fault_engine_starter" ] }, { @@ -67,8 +67,8 @@ "description": "A high-compression, 200 cc single-cylinder 4-stroke combustion engine.", "weight": "28 kg", "volume": "42 L", - "price": 10000, - "price_postapoc": 1250, + "price": "100 USD", + "price_postapoc": "12 USD 50 cent", "faults": [ "fault_engine_starter" ] }, { @@ -80,8 +80,8 @@ "description": "A high-compression, 200 cc single-cylinder 4-stroke diesel combustion engine.", "weight": "28 kg", "volume": "42 L", - "price": 10000, - "price_postapoc": 1250, + "price": "100 USD", + "price_postapoc": "12 USD 50 cent", "faults": [ "fault_engine_starter" ] }, { @@ -93,8 +93,8 @@ "description": "A small, 25 cc single-cylinder 2-stroke combustion engine.", "weight": "2200 g", "volume": "6 L", - "price": 6000, - "price_postapoc": 750, + "price": "60 USD", + "price_postapoc": "7 USD 50 cent", "faults": [ ] }, { @@ -105,8 +105,8 @@ "description": "An air-cooled, 4-cylinder, horizontally opposed internal combustion engine, rated for 150 horsepower. Commonly used on light aircraft.", "weight": "126 kg", "volume": "182 L", - "price": 80000, - "price_postapoc": 2000 + "price": "800 USD", + "price_postapoc": "20 USD" }, { "id": "i4_combustion", @@ -117,8 +117,8 @@ "description": "A small, 1600 cc 4-cylinder combustion engine, commonly called a straight-four.", "weight": "120 kg", "volume": "164 L", - "price": 15000, - "price_postapoc": 1250 + "price": "150 USD", + "price_postapoc": "12 USD 50 cent" }, { "id": "i4_diesel", @@ -128,8 +128,8 @@ "description": "A small, yet powerful 4-cylinder diesel engine, commonly called a straight-four.", "weight": "120 kg", "volume": "166 L", - "price": 16000, - "price_postapoc": 1250 + "price": "160 USD", + "price_postapoc": "12 USD 50 cent" }, { "id": "i6_diesel", @@ -139,8 +139,8 @@ "description": "An industrial-sized 6-cylinder diesel engine, commonly called a straight-six. About as powerful as a V6 engine but significantly larger for use in heavy equipment.", "weight": "580 kg", "volume": "500 L", - "price": 27000, - "price_postapoc": 1500 + "price": "270 USD", + "price_postapoc": "15 USD" }, { "id": "v2_combustion", @@ -151,8 +151,8 @@ "description": "A 600 cc, 2-cylinder 4-stroke combustion engine, commonly called a V-twin.", "weight": "42 kg", "volume": "70 L", - "price": 10000, - "price_postapoc": 1000 + "price": "100 USD", + "price_postapoc": "10 USD" }, { "id": "v6_combustion", @@ -162,8 +162,8 @@ "description": "A powerful 6-cylinder combustion engine.", "weight": "203 kg", "volume": "191 L", - "price": 18000, - "price_postapoc": 1500 + "price": "180 USD", + "price_postapoc": "15 USD" }, { "id": "v6_diesel", @@ -173,8 +173,8 @@ "description": "A powerful 6-cylinder diesel engine.", "weight": "207 kg", "volume": "194 L", - "price": 20000, - "price_postapoc": 1500 + "price": "200 USD", + "price_postapoc": "15 USD" }, { "id": "v8_combustion", @@ -184,8 +184,8 @@ "description": "A large and very powerful 8-cylinder combustion engine.", "weight": "238 kg", "volume": "251 L", - "price": 25000, - "price_postapoc": 1750 + "price": "250 USD", + "price_postapoc": "17 USD 50 cent" }, { "id": "v8_diesel", @@ -195,8 +195,8 @@ "description": "A large and very powerful 8-cylinder diesel engine.", "weight": "242 kg", "volume": "256 L", - "price": 26500, - "price_postapoc": 1750 + "price": "265 USD", + "price_postapoc": "17 USD 50 cent" }, { "id": "v12_combustion", @@ -206,8 +206,8 @@ "description": "A massive and extremely powerful 12-cylinder combustion engine, usually built into high-end sports cars.", "weight": "240 kg", "volume": "248 L", - "price": 36000, - "price_postapoc": 2250 + "price": "360 USD", + "price_postapoc": "22 USD 50 cent" }, { "id": "v12_diesel", @@ -217,8 +217,8 @@ "description": "A massive and extremely powerful 12-cylinder diesel engine, usually built into heavy trucks.", "weight": "244 kg", "volume": "253 L", - "price": 32000, - "price_postapoc": 2250 + "price": "320 USD", + "price_postapoc": "22 USD 50 cent" }, { "id": "steam_watts_small", @@ -228,8 +228,8 @@ "description": "A small, primitive steam engine. An integrated boiler burns coal to heat water into steam, driving a reciprocating shaft. A condenser recaptures the water, making this a closed-cycle system.", "weight": "225000 g", "volume": "62500 ml", - "price": 225000, - "price_postapoc": 5000 + "price": "2 kUSD 250 USD", + "price_postapoc": "50 USD" }, { "id": "steam_triple_small", @@ -239,8 +239,8 @@ "description": "A small steam engine. An integrated boiler burns coal to heat water into steam, driving a reciprocating shaft. A condenser recaptures the water, making this a closed-cycle system.", "weight": "180000 g", "volume": "37500 ml", - "price": 555000, - "price_postapoc": 8000 + "price": "5 kUSD 550 USD", + "price_postapoc": "80 USD" }, { "id": "steam_triple_medium", @@ -250,8 +250,8 @@ "description": "A medium-sized steam engine. An integrated boiler burns coal to heat water into steam, driving a reciprocating shaft. A condenser recaptures the water, making this a closed-cycle system.", "weight": "280000 g", "volume": "57500 ml", - "price": 870000, - "price_postapoc": 10000 + "price": "8 kUSD 700 USD", + "price_postapoc": "100 USD" }, { "id": "engine_block_massive", @@ -262,8 +262,8 @@ "material": [ "iron" ], "weight": "96 kg", "volume": "96 L", - "price": 30000, - "price_postapoc": 500 + "price": "300 USD", + "price_postapoc": "5 USD" }, { "id": "engine_block_large", @@ -274,8 +274,8 @@ "material": [ "iron" ], "weight": "95 kg", "volume": "95 L", - "price": 20000, - "price_postapoc": 500 + "price": "200 USD", + "price_postapoc": "5 USD" }, { "id": "engine_block_medium", @@ -286,8 +286,8 @@ "material": [ "iron" ], "weight": "81 kg", "volume": "81 L", - "price": 10000, - "price_postapoc": 250 + "price": "100 USD", + "price_postapoc": "2 USD 50 cent" }, { "id": "engine_block_small", @@ -298,8 +298,8 @@ "material": [ "iron" ], "weight": "23 kg", "volume": "23 L", - "price": 5000, - "price_postapoc": 250 + "price": "50 USD", + "price_postapoc": "2 USD 50 cent" }, { "id": "engine_block_tiny", @@ -310,8 +310,8 @@ "material": [ "iron" ], "weight": "10 kg", "volume": "10 L", - "price": 3500, - "price_postapoc": 100 + "price": "35 USD", + "price_postapoc": "1 USD" }, { "id": "small_turbine_engine", @@ -322,8 +322,8 @@ "//": "Based on AGT1500 engine.", "weight": "1134 kg", "volume": "900 L", - "price": 96000, - "price_postapoc": 2500 + "price": "960 USD", + "price_postapoc": "25 USD" }, { "id": "medium_turbine_engine", @@ -334,8 +334,8 @@ "//": "Based on T700 turboshaft engine. Much lighter weight than the 1,350 HP small gas turbine. Doubled the published weight to account for a transmission.", "weight": "400 kg", "volume": "400 L", - "price": 192000, - "price_postapoc": 5000 + "price": "1 kUSD 920 USD", + "price_postapoc": "50 USD" }, { "id": "large_turbine_engine", @@ -346,7 +346,7 @@ "//": "Based on Rolls-Royce T406.", "weight": "900 kg", "volume": "900 L", - "price": 960000, - "price_postapoc": 7500 + "price": "9 kUSD 600 USD", + "price_postapoc": "75 USD" } ] diff --git a/data/json/items/vehicle/engineering.json b/data/json/items/vehicle/engineering.json index 933759dd07b10..2a47db4a5180a 100644 --- a/data/json/items/vehicle/engineering.json +++ b/data/json/items/vehicle/engineering.json @@ -5,8 +5,8 @@ "category": "veh_parts", "name": { "str": "steel boom" }, "description": "A large, rigid steel boom. If attached to a frame it could be used to lift up to 20 metric tonnes.", - "price": 23400, - "price_postapoc": 2000, + "price": "234 USD", + "price_postapoc": "20 USD", "weight": "31600 g", "volume": "12500 ml", "material": [ "steel" ], @@ -19,8 +19,8 @@ "category": "veh_parts", "name": { "str": "telescopic cantilever" }, "description": "A small, telescoping steel cantilever. If attached to a frame it could be used to lift up to 3.5 metric tonnes.", - "price": 7900, - "price_postapoc": 1000, + "price": "79 USD", + "price_postapoc": "10 USD", "weight": "12000 g", "volume": "3 L", "material": [ "steel" ], @@ -33,8 +33,8 @@ "category": "veh_parts", "name": { "str": "pallet lifter" }, "description": "A makeshift pallet lifter. If attached to a frame it could be used to lift up to 0.5 metric tonnes.", - "price": 7900, - "price_postapoc": 500, + "price": "79 USD", + "price_postapoc": "5 USD", "weight": "12000 g", "volume": "3 L", "material": [ "steel" ], @@ -51,8 +51,8 @@ "weight": "62000 g", "material": [ "steel" ], "category": "veh_parts", - "price": 8500, - "price_postapoc": 500, + "price": "85 USD", + "price_postapoc": "5 USD", "volume": "80 L" }, { @@ -65,8 +65,8 @@ "weight": "21000 g", "material": [ "steel" ], "category": "veh_parts", - "price": 8500, - "price_postapoc": 500, + "price": "85 USD", + "price_postapoc": "5 USD", "volume": "8750 ml", "qualities": [ [ "SELF_JACK", 17 ] ] }, @@ -80,8 +80,8 @@ "weight": "500 g", "material": [ "steel" ], "category": "veh_parts", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "volume": "500 ml", "qualities": [ [ "SELF_JACK", 1 ] ] } diff --git a/data/json/items/vehicle/farming.json b/data/json/items/vehicle/farming.json index 5a59a63d5efc4..519637f5f1f45 100644 --- a/data/json/items/vehicle/farming.json +++ b/data/json/items/vehicle/farming.json @@ -9,8 +9,8 @@ "weight": "22666 g", "material": [ "steel" ], "category": "veh_parts", - "price": 3500, - "price_postapoc": 500, + "price": "35 USD", + "price_postapoc": "5 USD", "volume": "7 L", "melee_damage": { "bash": 1 } }, @@ -40,8 +40,8 @@ "description": "An advanced electronic device used to cut down, collect, and store crops.", "weight": "25000 g", "material": [ "steel", "plastic" ], - "price": 50000, - "price_postapoc": 1500, + "price": "500 USD", + "price_postapoc": "15 USD", "volume": "9 L", "copy-from": "v_scoop_item" }, @@ -54,8 +54,8 @@ "description": "An assembly of tubes, spikes, and wheels that, when dragged along the ground, allows a vehicle to plant seeds automatically in suitably tilled land. This one is equipped with an electronic control system and will avoid damaging itself when used on untilled land.", "weight": "32666 g", "material": [ "steel", "plastic" ], - "price": 50000, - "price_postapoc": 1750, + "price": "500 USD", + "price_postapoc": "17 USD 50 cent", "volume": "7250 ml", "copy-from": "v_scoop_item" }, diff --git a/data/json/items/vehicle/frames.json b/data/json/items/vehicle/frames.json index 3c5c677c0b4a3..d99265b3419d8 100644 --- a/data/json/items/vehicle/frames.json +++ b/data/json/items/vehicle/frames.json @@ -12,8 +12,8 @@ "techniques": [ "DEF_DISARM" ], "volume": "10 L", "category": "veh_parts", - "price": 4000, - "price_postapoc": 100, + "price": "40 USD", + "price_postapoc": "1 USD", "melee_damage": { "bash": 15 } }, { @@ -41,8 +41,8 @@ "to_hit": -5, "color": "cyan", "volume": "15 L", - "price": 5500, - "price_postapoc": 100, + "price": "55 USD", + "price_postapoc": "1 USD", "copy-from": "foldframe", "melee_damage": { "bash": 20 } }, @@ -56,8 +56,8 @@ "color": "green", "material": [ "qt_steel", "steel" ], "volume": "20 L", - "price": 12000, - "price_postapoc": 250, + "price": "120 USD", + "price_postapoc": "2 USD 50 cent", "qualities": [ [ "ANVIL", 1 ] ], "copy-from": "foldframe", "melee_damage": { "bash": 25 } @@ -72,8 +72,8 @@ "color": "brown", "material": [ "wood" ], "volume": "15 L", - "price": 3500, - "price_postapoc": 100, + "price": "35 USD", + "price_postapoc": "1 USD", "copy-from": "foldframe", "melee_damage": { "bash": 16, "cut": 4 } }, @@ -98,8 +98,8 @@ "color": "brown", "material": [ "wood" ], "volume": "8750 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "copy-from": "foldframe", "melee_damage": { "bash": 8, "cut": 1 } }, @@ -115,8 +115,8 @@ "volume": "8750 ml", "longest_side": "75 cm", "melee_damage": { "bash": 8, "cut": 1 }, - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "copy-from": "foldframe" }, { diff --git a/data/json/items/vehicle/fuel_storage.json b/data/json/items/vehicle/fuel_storage.json index 59223175fe9af..8bd5c5efea3c5 100644 --- a/data/json/items/vehicle/fuel_storage.json +++ b/data/json/items/vehicle/fuel_storage.json @@ -14,8 +14,8 @@ "capacity": 2000, "//": "mods will need to expand", "ammo_type": [ "charcoal", "coal" ], - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "pocket_data": [ { "pocket_type": "MAGAZINE", "ammo_restriction": { "charcoal": 10000, "coal": 50000 } } ] } ] diff --git a/data/json/items/vehicle/lights.json b/data/json/items/vehicle/lights.json index 510002edb6405..1a3b373a9cedd 100644 --- a/data/json/items/vehicle/lights.json +++ b/data/json/items/vehicle/lights.json @@ -10,8 +10,8 @@ "category": "veh_parts", "weight": "1000 g", "volume": "1 L", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "flags": [ "NO_SALVAGE" ] }, { @@ -21,8 +21,8 @@ "description": "A motorcycle headlight to light up the way.", "weight": "500 g", "volume": "250 ml", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "copy-from": "car_headlight" }, { @@ -33,8 +33,8 @@ "looks_like": "car_headlight", "weight": "2000 g", "volume": "1250 ml", - "price": 4000, - "price_postapoc": 150, + "price": "40 USD", + "price_postapoc": "1 USD 50 cent", "copy-from": "car_headlight" }, { @@ -47,8 +47,8 @@ "color": "light_cyan", "symbol": ",", "material": [ "steel", "plastic" ], - "price": 40000, - "price_postapoc": 250, + "price": "400 USD", + "price_postapoc": "2 USD 50 cent", "copy-from": "car_headlight", "melee_damage": { "bash": 4 } }, @@ -70,8 +70,8 @@ "to_hit": 1, "color": "red", "material": [ "plastic", "steel" ], - "price": 40000, - "price_postapoc": 100, + "price": "400 USD", + "price_postapoc": "1 USD", "copy-from": "car_headlight", "melee_damage": { "bash": 1 } }, @@ -92,8 +92,8 @@ "to_hit": 1, "material": [ "plastic", "steel" ], "volume": "2 L", - "price": 90000, - "price_postapoc": 1500, + "price": "900 USD", + "price_postapoc": "15 USD", "copy-from": "car_headlight", "melee_damage": { "bash": 5 } }, diff --git a/data/json/items/vehicle/manual.json b/data/json/items/vehicle/manual.json index 81ae94995ccd1..76bb4c10b7dfc 100644 --- a/data/json/items/vehicle/manual.json +++ b/data/json/items/vehicle/manual.json @@ -11,8 +11,8 @@ "material": [ "steel" ], "volume": "500 ml", "category": "veh_parts", - "price": 9000, - "price_postapoc": 100, + "price": "90 USD", + "price_postapoc": "1 USD", "melee_damage": { "bash": 10 } }, { diff --git a/data/json/items/vehicle/mills.json b/data/json/items/vehicle/mills.json index 9f28d482bfe36..7f92f121986e6 100644 --- a/data/json/items/vehicle/mills.json +++ b/data/json/items/vehicle/mills.json @@ -11,8 +11,8 @@ "material": [ "steel" ], "volume": "20 L", "category": "veh_parts", - "price": 60000, - "price_postapoc": 1000, + "price": "600 USD", + "price_postapoc": "10 USD", "melee_damage": { "bash": 1 } }, { @@ -24,8 +24,8 @@ "to_hit": -7, "symbol": "Y", "volume": "60 L", - "price": 150000, - "price_postapoc": 1500, + "price": "1 kUSD 500 USD", + "price_postapoc": "15 USD", "copy-from": "wind_turbine" }, { @@ -38,8 +38,8 @@ "symbol": "*", "material": [ "wood" ], "volume": "30 L", - "price": 120000, - "price_postapoc": 1000, + "price": "1 kUSD 200 USD", + "price_postapoc": "10 USD", "copy-from": "wind_turbine", "melee_damage": { "bash": 3 } }, @@ -51,8 +51,8 @@ "weight": "210000 g", "symbol": "o", "volume": "60 L", - "price": 200000, - "price_postapoc": 1500, + "price": "2 kUSD", + "price_postapoc": "15 USD", "copy-from": "water_wheel" } ] diff --git a/data/json/items/vehicle/motors.json b/data/json/items/vehicle/motors.json index 99facfc21f2e7..f30cc17f5b8cb 100644 --- a/data/json/items/vehicle/motors.json +++ b/data/json/items/vehicle/motors.json @@ -10,8 +10,8 @@ "material": [ "steel" ], "volume": "30 L", "category": "veh_parts", - "price": 12000, - "price_postapoc": 1500, + "price": "120 USD", + "price_postapoc": "15 USD", "flags": [ "WATER_BREAK", "ELECTRONIC" ], "melee_damage": { "bash": 4 } }, @@ -23,8 +23,8 @@ "weight": "120 kg", "material": [ "superalloy", "copper" ], "volume": "140 L", - "price": 68000, - "price_postapoc": 2500, + "price": "680 USD", + "price_postapoc": "25 USD", "copy-from": "motor" }, { @@ -34,8 +34,8 @@ "description": "An extremely powerful electric motor. This delivers massive torque and would be well suited to an electric racing car.", "weight": "140 kg", "volume": "200 L", - "price": 80000, - "price_postapoc": 3500, + "price": "800 USD", + "price_postapoc": "35 USD", "copy-from": "motor" }, { @@ -47,8 +47,8 @@ "to_hit": -3, "symbol": ":", "volume": "75 L", - "price": 22000, - "price_postapoc": 1500, + "price": "220 USD", + "price_postapoc": "15 USD", "copy-from": "motor", "melee_damage": { "bash": 9 } }, @@ -59,8 +59,8 @@ "description": "A light-duty electric motor. Strong enough for an electric moped or golf cart.", "weight": "9 kg", "volume": "6 L", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "copy-from": "motor", "melee_damage": { "bash": 1 } }, @@ -75,8 +75,8 @@ "material": [ "steel", "plastic" ], "volume": "750 ml", "category": "veh_parts", - "price": 2000, - "price_postapoc": 100 + "price": "20 USD", + "price_postapoc": "1 USD" }, { "type": "GENERIC", @@ -85,8 +85,8 @@ "description": "A 1,300 horsepower 3-phase 60 Hz electric engine. Normally used in trains.", "weight": "2000 kg", "volume": "250 L", - "price": 120000, - "price_postapoc": 8000, + "price": "1 kUSD 200 USD", + "price_postapoc": "80 USD", "copy-from": "motor" } ] diff --git a/data/json/items/vehicle/noise.json b/data/json/items/vehicle/noise.json index aee52e6ad3487..73d37d75cc7b9 100644 --- a/data/json/items/vehicle/noise.json +++ b/data/json/items/vehicle/noise.json @@ -12,8 +12,8 @@ "techniques": [ "WBLOCK_1" ], "volume": "3500 ml", "category": "veh_parts", - "price": 3000, - "price_postapoc": 100, + "price": "30 USD", + "price_postapoc": "1 USD", "qualities": [ [ "HAMMER", 1 ] ], "melee_damage": { "bash": 19 } }, @@ -29,8 +29,8 @@ "volume": "250 ml", "to_hit": -1, "category": "veh_parts", - "price": 6000, - "price_postapoc": 100, + "price": "60 USD", + "price_postapoc": "1 USD", "flags": [ "WATER_BREAK", "ELECTRONIC" ], "melee_damage": { "bash": 2 } }, @@ -46,8 +46,8 @@ "material": [ "steel" ], "volume": "3500 ml", "category": "veh_parts", - "price": 800, - "price_postapoc": 100, + "price": "8 USD", + "price_postapoc": "1 USD", "flags": [ "WATER_BREAK", "ELECTRONIC" ] }, { @@ -62,8 +62,8 @@ "material": [ "steel" ], "volume": "4 L", "category": "veh_parts", - "price": 5000, - "price_postapoc": 250, + "price": "50 USD", + "price_postapoc": "2 USD 50 cent", "flags": [ "WATER_BREAK", "ELECTRONIC" ] } ] diff --git a/data/json/items/vehicle/plating.json b/data/json/items/vehicle/plating.json index 90724f10581e4..507552e38aaf8 100644 --- a/data/json/items/vehicle/plating.json +++ b/data/json/items/vehicle/plating.json @@ -13,8 +13,8 @@ "material": [ "lc_steel" ], "volume": "1 L", "category": "spare_parts", - "price": 6000, - "price_postapoc": 100, + "price": "60 USD", + "price_postapoc": "1 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 5 } }, @@ -30,8 +30,8 @@ "material": [ "wood" ], "volume": "3 L", "category": "veh_parts", - "price": 12000, - "price_postapoc": 100, + "price": "120 USD", + "price_postapoc": "1 USD", "melee_damage": { "bash": 10 } }, { @@ -46,8 +46,8 @@ "material": [ "steel" ], "volume": "3 L", "category": "veh_parts", - "price": 12000, - "price_postapoc": 250, + "price": "120 USD", + "price_postapoc": "2 USD 50 cent", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 6 } }, @@ -63,8 +63,8 @@ "material": [ "superalloy" ], "volume": "6 L", "category": "veh_parts", - "price": 18500, - "price_postapoc": 500, + "price": "185 USD", + "price_postapoc": "5 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 6 } }, @@ -80,8 +80,8 @@ "material": [ "superalloy" ], "volume": "500 ml", "category": "veh_parts", - "price": 8500, - "price_postapoc": 500, + "price": "85 USD", + "price_postapoc": "5 USD", "qualities": [ [ "COOK", 1 ] ] }, { @@ -97,8 +97,8 @@ "volume": "3500 ml", "flags": [ ], "category": "veh_parts", - "price": 18500, - "price_postapoc": 250, + "price": "185 USD", + "price_postapoc": "2 USD 50 cent", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 6, "stab": 3 } }, @@ -114,8 +114,8 @@ "material": [ "qt_steel" ], "volume": "3 L", "category": "veh_parts", - "price": 16000, - "price_postapoc": 500, + "price": "160 USD", + "price_postapoc": "5 USD", "qualities": [ [ "COOK", 1 ], [ "ANVIL", 2 ] ], "melee_damage": { "bash": 6 } }, @@ -131,8 +131,8 @@ "material": [ "qt_steel", "ceramic" ], "volume": "3 L", "category": "veh_parts", - "price": 16000, - "price_postapoc": 750, + "price": "160 USD", + "price_postapoc": "7 USD 50 cent", "flags": [ "NO_REPAIR" ], "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 8 } @@ -144,8 +144,8 @@ "color": "yellow", "name": { "str": "chitin armor kit" }, "description": "A piece of light chitin plating made for a vehicle.", - "price": 1200, - "price_postapoc": 250, + "price": "12 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "chitin" ], "weight": "2000 g", "volume": "5500 ml", @@ -173,8 +173,8 @@ "material": [ "steel" ], "volume": "330 L", "longest_side": "110 cm", - "price": 12000, - "price_postapoc": 250, + "price": "120 USD", + "price_postapoc": "2 USD 50 cent", "category": "veh_parts", "qualities": [ [ "ANVIL", 2 ] ], "melee_damage": { "bash": 25 } diff --git a/data/json/items/vehicle/rams.json b/data/json/items/vehicle/rams.json index 2d1953308404b..0b55a82be6afc 100644 --- a/data/json/items/vehicle/rams.json +++ b/data/json/items/vehicle/rams.json @@ -7,8 +7,8 @@ "description": "This menacing-looking attachment is meant to be powered by a vehicle's engine. Upon doing so, the circular blades of this device will rotate rapidly; anything in front of it is likely to be ripped to shreds. It is sturdy enough to withstand multiple impacts, and is designed to detach if it would take a hit that would break it.", "weight": "29955 g", "volume": "7500 ml", - "price": 10500, - "price_postapoc": 2500, + "price": "105 USD", + "price_postapoc": "25 USD", "to_hit": -1, "material": [ "steel" ], "symbol": "]", diff --git a/data/json/items/vehicle/rigs.json b/data/json/items/vehicle/rigs.json index fa6635d808cef..765df45e02b65 100644 --- a/data/json/items/vehicle/rigs.json +++ b/data/json/items/vehicle/rigs.json @@ -6,8 +6,8 @@ "name": { "str": "vehicle crafting rig" }, "weight": "40000 g", "volume": "20 L", - "price": 40000, - "price_postapoc": 2000, + "price": "400 USD", + "price_postapoc": "20 USD", "material": [ "steel" ], "symbol": "&", "color": "light_cyan" diff --git a/data/json/items/vehicle/rotor.json b/data/json/items/vehicle/rotor.json index d1a3933dd6dc9..428274aa08893 100644 --- a/data/json/items/vehicle/rotor.json +++ b/data/json/items/vehicle/rotor.json @@ -5,8 +5,8 @@ "category": "veh_parts", "name": { "str": "heavy-duty military rotors", "str_pl": "sets of heavy-duty military rotors" }, "description": "A set of four rotor blades from a military attack helicopter.", - "price": 23400, - "price_postapoc": 500, + "price": "234 USD", + "price_postapoc": "5 USD", "weight": "452000 g", "volume": "452000 ml", "looks_like": "xl_wind_turbine", @@ -20,8 +20,8 @@ "category": "veh_parts", "name": { "str": "small civilian helicopter rotors", "str_pl": "sets of small civilian helicopter rotors" }, "description": "A set of four rotor blades from a civilian light helicopter.", - "price": 1200, - "price_postapoc": 250, + "price": "12 USD", + "price_postapoc": "2 USD 50 cent", "weight": "251000 g", "volume": "251000 ml", "looks_like": "xl_wind_turbine", diff --git a/data/json/items/vehicle/seating.json b/data/json/items/vehicle/seating.json index f76391117e365..ee097eed6eb8e 100644 --- a/data/json/items/vehicle/seating.json +++ b/data/json/items/vehicle/seating.json @@ -11,8 +11,8 @@ "material": [ "nylon", "steel" ], "volume": "7500 ml", "category": "veh_parts", - "price": 35000, - "price_postapoc": 100, + "price": "350 USD", + "price_postapoc": "1 USD", "melee_damage": { "bash": 4 } }, { @@ -22,8 +22,8 @@ "name": { "str": "leather bucket seat" }, "description": "A soft car seat covered with leather.", "material": [ "leather", "nylon", "steel" ], - "price": 60000, - "price_postapoc": 250 + "price": "600 USD", + "price_postapoc": "2 USD 50 cent" }, { "type": "GENERIC", @@ -37,8 +37,8 @@ "material": [ "nylon", "steel" ], "volume": "7500 ml", "category": "veh_parts", - "price": 35000, - "price_postapoc": 100, + "price": "350 USD", + "price_postapoc": "1 USD", "melee_damage": { "bash": 4 } }, { @@ -48,8 +48,8 @@ "name": { "str": "leather bench seat" }, "description": "A wide, flat seat like you'd find in the back of a sedan, upholstered with leather.", "material": [ "leather", "nylon", "steel" ], - "price": 60000, - "price_postapoc": 250 + "price": "600 USD", + "price_postapoc": "2 USD 50 cent" }, { "type": "GENERIC", @@ -59,8 +59,8 @@ "weight": "300 g", "material": [ "plastic", "aluminum" ], "volume": "1250 ml", - "price": 2500, - "price_postapoc": 250, + "price": "25 USD", + "price_postapoc": "2 USD 50 cent", "copy-from": "seat", "melee_damage": { "bash": 2 } } diff --git a/data/json/items/vehicle/solar.json b/data/json/items/vehicle/solar.json index 8cd43a035a0bd..bb83497e9ce45 100644 --- a/data/json/items/vehicle/solar.json +++ b/data/json/items/vehicle/solar.json @@ -19,8 +19,8 @@ "volume": "12500 ml", "flags": [ "NO_REPAIR", "WATER_BREAK" ], "category": "veh_parts", - "price": 90000, - "price_postapoc": 1000, + "price": "900 USD", + "price_postapoc": "10 USD", "melee_damage": { "bash": 1 } }, { @@ -49,8 +49,8 @@ "volume": "7473 ml", "longest_side": "53 cm", "use_action": { "type": "deploy_appliance", "base": "folding_solar_panel_deployed" }, - "price": 28000, - "price_postapoc": 500 + "price": "280 USD", + "price_postapoc": "5 USD" }, { "type": "MAGAZINE", @@ -81,8 +81,8 @@ "volume": "39400 ml", "longest_side": "83 cm", "use_action": { "type": "deploy_appliance", "base": "folding_solar_panel_v2_deployed" }, - "price": 32000, - "price_postapoc": 2000 + "price": "320 USD", + "price_postapoc": "20 USD" }, { "type": "MAGAZINE", @@ -107,8 +107,8 @@ "color": "light_blue", "material": [ "glass", "steel" ], "volume": "6500 ml", - "price": 120000, - "price_postapoc": 1500, + "price": "1 kUSD 200 USD", + "price_postapoc": "15 USD", "copy-from": "solar_panel" }, { @@ -117,8 +117,8 @@ "id": "solar_panel_v2", "name": { "str": "advanced solar panel" }, "description": "An electronic device that can convert solar radiation into electric power. This one is a high-performance type made with monocrystalline silicon cells.", - "price": 190000, - "price_postapoc": 3000, + "price": "1 kUSD 900 USD", + "price_postapoc": "30 USD", "copy-from": "solar_panel" }, { @@ -135,8 +135,8 @@ "id": "reinforced_solar_panel_v2", "name": { "str": "advanced reinforced solar panel" }, "description": "An advanced solar panel that has been covered with a pane of reinforced glass to protect the delicate solar cells from zombies or errant baseballs. The glass causes this panel to produce slightly less power than a normal advanced panel.", - "price": 240000, - "price_postapoc": 3500, + "price": "2 kUSD 400 USD", + "price_postapoc": "35 USD", "copy-from": "reinforced_solar_panel" }, { @@ -148,8 +148,8 @@ "symbol": ";", "volume": "250 ml", "category": "spare_parts", - "price": 5000, - "price_postapoc": 100, + "price": "50 USD", + "price_postapoc": "1 USD", "copy-from": "solar_panel" }, { @@ -157,8 +157,8 @@ "id": "solar_cell_v2", "name": { "str": "advanced solar cell" }, "description": "A small electronic device that can convert solar radiation into electric power. This one is a high-performance type made of monocrystalline silicon.", - "price": 15000, - "price_postapoc": 300, + "price": "150 USD", + "price_postapoc": "3 USD", "copy-from": "solar_cell" } ] diff --git a/data/json/items/vehicle/tables.json b/data/json/items/vehicle/tables.json index 89ad6787544f2..e504f985316fb 100644 --- a/data/json/items/vehicle/tables.json +++ b/data/json/items/vehicle/tables.json @@ -13,8 +13,8 @@ "volume": "13500 ml", "longest_side": "110 cm", "category": "veh_parts", - "price": 20000, - "price_postapoc": 100, + "price": "200 USD", + "price_postapoc": "1 USD", "melee_damage": { "bash": 6 } }, { @@ -46,8 +46,8 @@ "description": "A sturdy metal workbench, perfect for crafting large and heavy things. It also has a built-in battery charger for your phone.", "weight": "20370 g", "flags": [ "TRADER_AVOID" ], - "price": 40000, - "price_postapoc": 100, + "price": "400 USD", + "price_postapoc": "1 USD", "copy-from": "workbench" } ] diff --git a/data/json/items/vehicle/turrets.json b/data/json/items/vehicle/turrets.json index a7c04a4f8014d..31ed05533ed99 100644 --- a/data/json/items/vehicle/turrets.json +++ b/data/json/items/vehicle/turrets.json @@ -10,7 +10,7 @@ "category": "veh_parts", "weight": "10000 g", "volume": "2500 ml", - "price": 5500, - "price_postapoc": 2500 + "price": "55 USD", + "price_postapoc": "25 USD" } ] diff --git a/data/json/items/vehicle/utilities.json b/data/json/items/vehicle/utilities.json index d2c854920b9bd..4197f5c73db4a 100644 --- a/data/json/items/vehicle/utilities.json +++ b/data/json/items/vehicle/utilities.json @@ -7,8 +7,8 @@ "description": "An aircraft's black box, seemingly pulled from some sort of military vehicle wreckage. If you can find a system to analyze this, you may find something of interest.", "weight": "4535 g", "volume": "2 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "steel" ], "symbol": ";", @@ -28,8 +28,8 @@ "pocket_data": [ { "pocket_type": "MAGAZINE", "ammo_restriction": { "plutonium": 10000 }, "rigid": true } ], "volume": "100 L", "category": "veh_parts", - "price": 90000, - "price_postapoc": 5000, + "price": "900 USD", + "price_postapoc": "50 USD", "ammo": [ "plutonium" ], "melee_damage": { "bash": 7 } }, @@ -45,8 +45,8 @@ "material": [ "steel" ], "volume": "7500 ml", "category": "veh_parts", - "price": 20000, - "price_postapoc": 1500, + "price": "200 USD", + "price_postapoc": "15 USD", "melee_damage": { "bash": 12 } }, { @@ -57,8 +57,8 @@ "description": "A small vehicle-mounted area cooler.", "weight": "6000 g", "volume": "3750 ml", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "melee_damage": { "bash": 3 } }, { @@ -73,8 +73,8 @@ "material": [ "steel" ], "volume": "7500 ml", "category": "veh_parts", - "price": 20000, - "price_postapoc": 1500, + "price": "200 USD", + "price_postapoc": "15 USD", "melee_damage": { "bash": 12 } }, { @@ -85,8 +85,8 @@ "description": "A small vehicle-mounted area heater.", "weight": "6000 g", "volume": "3750 ml", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "melee_damage": { "bash": 3 } }, { @@ -101,8 +101,8 @@ "material": [ "wood" ], "volume": "2500 ml", "category": "veh_parts", - "price": 3000, - "price_postapoc": 10, + "price": "30 USD", + "price_postapoc": "10 cent", "melee_damage": { "bash": 4 } }, { @@ -117,8 +117,8 @@ "material": [ "steel", "plastic" ], "volume": "5 L", "category": "veh_parts", - "price": 90000, - "price_postapoc": 1000, + "price": "900 USD", + "price_postapoc": "10 USD", "melee_damage": { "bash": 5 } }, { @@ -129,8 +129,8 @@ "weight": "100 g", "volume": "250 ml", "to_hit": -1, - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "looks_like": "cable", "copy-from": "recharge_station", "melee_damage": { "bash": 4 } @@ -147,8 +147,8 @@ "material": [ "steel" ], "volume": "90 L", "category": "veh_parts", - "price": 60000, - "price_postapoc": 500, + "price": "600 USD", + "price_postapoc": "5 USD", "melee_damage": { "bash": 8 } }, { @@ -163,8 +163,8 @@ "material": [ "steel" ], "volume": "10 L", "category": "veh_parts", - "price": 90000, - "price_postapoc": 2500, + "price": "900 USD", + "price_postapoc": "25 USD", "melee_damage": { "bash": 3 } }, { @@ -172,8 +172,8 @@ "id": "vh_autoclave", "name": { "str": "mountable autoclave" }, "description": "This autoclave has been rigged to run off a vehicle power grid.", - "price": 162654, - "price_postapoc": 1500, + "price": "1 kUSD 626 USD 54 cent", + "price_postapoc": "15 USD", "symbol": "A", "color": "yellow", "weight": "34500 g", @@ -246,8 +246,8 @@ "material": [ "steel" ], "volume": "750 ml", "category": "veh_parts", - "price": 3000, - "price_postapoc": 50, + "price": "30 USD", + "price_postapoc": "50 cent", "melee_damage": { "bash": 2 } }, { @@ -266,7 +266,7 @@ "symbol": "Y", "ammo": "battery", "use_action": [ { "type": "link_up", "cable_length": 3, "charge_rate": "5500 W" } ], - "price": 100000, - "price_postapoc": 1000 + "price": "1 kUSD", + "price_postapoc": "10 USD" } ] diff --git a/data/json/items/vehicle/wheel.json b/data/json/items/vehicle/wheel.json index 9824ff3b4b147..95ff4401395ea 100644 --- a/data/json/items/vehicle/wheel.json +++ b/data/json/items/vehicle/wheel.json @@ -8,8 +8,8 @@ "weight": "100 g", "volume": "250 ml", "longest_side": "77 mm", - "price": 5, - "price_postapoc": 10, + "price": "5 cent", + "price_postapoc": "10 cent", "material": [ "wood" ], "symbol": ";", "color": "brown" @@ -23,8 +23,8 @@ "weight": "150 g", "volume": "250 ml", "longest_side": "102 mm", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "steel" ], "symbol": ";", "color": "dark_gray" @@ -38,8 +38,8 @@ "weight": "5 kg", "volume": "6 L", "longest_side": "204 mm", - "price": 3000, - "price_postapoc": 500, + "price": "30 USD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -55,8 +55,8 @@ "weight": "6 kg", "volume": "7 L", "longest_side": "254 mm", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "to_hit": -2, "material": [ "steel" ], "symbol": ";", @@ -72,8 +72,8 @@ "weight": "600 g", "volume": "250 ml", "longest_side": "200 mm", - "price": 200, - "price_postapoc": 20, + "price": "2 USD", + "price_postapoc": "20 cent", "to_hit": -2, "material": [ "steel", "aluminum" ], "symbol": "]", @@ -90,8 +90,8 @@ "volume": "28 L", "to_hit": -4, "longest_side": "432 mm", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "]", "color": "dark_gray", @@ -107,8 +107,8 @@ "volume": "12 L", "to_hit": -4, "longest_side": "508 mm", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "]", "color": "dark_gray", @@ -124,8 +124,8 @@ "volume": "70 L", "to_hit": -4, "longest_side": "610 mm", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "symbol": "]", "color": "dark_gray", @@ -141,8 +141,8 @@ "volume": "11 L", "to_hit": -2, "longest_side": "686 mm", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "material": [ "aluminum" ], "symbol": "]", "color": "dark_gray", @@ -158,8 +158,8 @@ "weight": "3600 g", "volume": "10 L", "longest_side": "432 mm", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "rubber" ], "flags": [ "NONCONDUCTIVE" ], @@ -177,8 +177,8 @@ "weight": "7355 g", "volume": "13750 ml", "longest_side": "407 mm", - "price": 20000, - "price_postapoc": 500, + "price": "200 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "rubber" ], "flags": [ "NONCONDUCTIVE" ], @@ -196,8 +196,8 @@ "weight": "2443 g", "volume": "8250 ml", "longest_side": "407 mm", - "price": 10000, - "price_postapoc": 300, + "price": "100 USD", + "price_postapoc": "3 USD", "to_hit": -1, "material": [ "rubber" ], "flags": [ "NONCONDUCTIVE" ], @@ -223,8 +223,8 @@ "weight": "15000 g", "volume": "17500 ml", "longest_side": "610 mm", - "price": 27000, - "price_postapoc": 550, + "price": "270 USD", + "price_postapoc": "5 USD 50 cent", "to_hit": -1, "material": [ "rubber" ], "flags": [ "NONCONDUCTIVE" ], @@ -249,8 +249,8 @@ "weight": "750 g", "volume": "2 L", "longest_side": "686 mm", - "price": 2000, - "price_postapoc": 125, + "price": "20 USD", + "price_postapoc": "1 USD 25 cent", "to_hit": -1, "material": [ "rubber" ], "flags": [ "NONCONDUCTIVE" ], @@ -275,8 +275,8 @@ "weight": "8845 g", "volume": "28 L", "longest_side": "432 mm", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "steel", "rubber" ], "symbol": "]", @@ -293,8 +293,8 @@ "weight": "12600 g", "volume": "28 L", "longest_side": "407 mm", - "price": 24000, - "price_postapoc": 500, + "price": "240 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel", "rubber" ], "symbol": "]", @@ -310,8 +310,8 @@ "weight": "5443 g", "volume": "12 L", "longest_side": "407 mm", - "price": 14000, - "price_postapoc": 500, + "price": "140 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel", "rubber" ], "symbol": "]", @@ -335,8 +335,8 @@ "weight": "22600 g", "volume": "70 L", "longest_side": "610 mm", - "price": 34000, - "price_postapoc": 750, + "price": "340 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "steel", "rubber" ], "symbol": "]", @@ -359,8 +359,8 @@ "weight": "1500 g", "volume": "11 L", "longest_side": "686 mm", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "aluminum", "rubber" ], "symbol": "]", @@ -383,8 +383,8 @@ "weight": "8845 g", "volume": "28 L", "longest_side": "432 mm", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "steel", "rubber" ], "symbol": "]", @@ -402,8 +402,8 @@ "weight": "12600 g", "volume": "28 L", "longest_side": "407 mm", - "price": 24000, - "price_postapoc": 500, + "price": "240 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel", "rubber" ], "symbol": "]", @@ -421,8 +421,8 @@ "weight": "24500 g", "volume": "17500 ml", "longest_side": "813 mm", - "price": 34000, - "price_postapoc": 750, + "price": "340 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "qt_steel", "ceramic" ], "symbol": "]", @@ -440,8 +440,8 @@ "weight": "2722 g", "volume": "2250 ml", "longest_side": "204 mm", - "price": 2000, - "price_postapoc": 250, + "price": "20 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel", "rubber" ], "symbol": "]", @@ -459,8 +459,8 @@ "weight": "1500 g", "volume": "11 L", "longest_side": "686 mm", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "aluminum", "rubber" ], "symbol": "]", @@ -485,8 +485,8 @@ "weight": "1150 g", "volume": "1250 ml", "longest_side": "102 mm", - "price": 2400, - "price_postapoc": 100, + "price": "24 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "]", @@ -504,8 +504,8 @@ "weight": "2700 g", "volume": "3150 ml", "longest_side": "190 mm", - "price": 4500, - "price_postapoc": 200, + "price": "45 USD", + "price_postapoc": "2 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "]", @@ -523,8 +523,8 @@ "weight": "4 kg", "volume": "4 L", "longest_side": "254 mm", - "price": 14000, - "price_postapoc": 500, + "price": "140 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "rubber", "steel" ], "symbol": "]", @@ -542,8 +542,8 @@ "weight": "18239 g", "volume": "8750 ml", "longest_side": "508 mm", - "price": 1200, - "price_postapoc": 250, + "price": "12 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -4, "material": [ "steel" ], "symbol": "]", @@ -561,8 +561,8 @@ "weight": "18239 g", "volume": "8750 ml", "longest_side": "508 mm", - "price": 1200, - "price_postapoc": 250, + "price": "12 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -4, "material": [ "steel" ], "symbol": "]", @@ -577,8 +577,8 @@ "type": "WHEEL", "description": "A pair of small rail wheels. It fits small railroad rails found in places like amusement parks. Mostly for hobby purposes rather than transportation.", "copy-from": "wheel_rail", - "price": 900, - "price_postapoc": 100, + "price": "9 USD", + "price_postapoc": "1 USD", "weight": "12239 g", "longest_side": "254 mm", "symbol": "=", @@ -594,8 +594,8 @@ "weight": "5443 g", "volume": "12 L", "longest_side": "407 mm", - "price": 14000, - "price_postapoc": 500, + "price": "140 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "steel", "rubber" ], "symbol": "]", @@ -622,8 +622,8 @@ "weight": "750000 g", "volume": "200 L", "longest_side": "1524 mm", - "price": 50000, - "price_postapoc": 1500, + "price": "500 USD", + "price_postapoc": "15 USD", "to_hit": -2, "material": [ "steel" ], "symbol": "m", @@ -641,8 +641,8 @@ "weight": "2722 g", "volume": "2250 ml", "longest_side": "254 mm", - "price": 14000, - "price_postapoc": 100, + "price": "140 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "]", @@ -660,8 +660,8 @@ "weight": "200 g", "volume": "200 ml", "longest_side": "77 mm", - "price": 1400, - "price_postapoc": 10, + "price": "14 USD", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "]", @@ -679,8 +679,8 @@ "weight": "800 g", "volume": "800 ml", "longest_side": "60 mm", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "]", @@ -698,8 +698,8 @@ "weight": "750 g", "volume": "750 ml", "longest_side": "178 mm", - "price": 7000, - "price_postapoc": 100, + "price": "70 USD", + "price_postapoc": "1 USD", "to_hit": -2, "material": [ "plastic" ], "symbol": "]", @@ -717,8 +717,8 @@ "weight": "3000 g", "volume": "12500 ml", "longest_side": "508 mm", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel", "rubber" ], "symbol": "]", @@ -736,8 +736,8 @@ "weight": "22600 g", "volume": "70 L", "longest_side": "610 mm", - "price": 34000, - "price_postapoc": 750, + "price": "340 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "steel", "rubber" ], "symbol": "]", @@ -762,7 +762,7 @@ "weight": "4500 g", "volume": "8750 ml", "longest_side": "508 mm", - "price": 1200, + "price": "12 USD", "to_hit": -4, "material": [ "wood" ], "symbol": "]", diff --git a/data/json/mapgen/crater.json b/data/json/mapgen/crater.json index 8a575b41ded51..a2fdabaf36564 100644 --- a/data/json/mapgen/crater.json +++ b/data/json/mapgen/crater.json @@ -17,7 +17,7 @@ "description": "This item is used to make a hole for a crater. It should not otherwise appear in game.", "weight": "4400 g", "volume": "10 L", - "price": 0, + "price": "0 cent", "to_hit": -5, "material": [ "steel" ], "symbol": "(", diff --git a/data/json/monster_special_attacks/monster_gun.json b/data/json/monster_special_attacks/monster_gun.json index 015f9c2a0e075..3e9f85abaacac 100644 --- a/data/json/monster_special_attacks/monster_gun.json +++ b/data/json/monster_special_attacks/monster_gun.json @@ -215,8 +215,8 @@ "volume": "570 ml", "flags": [ "PSEUDO" ], "longest_side": "249 mm", - "price": 65000, - "price_postapoc": 2500, + "price": "650 USD", + "price_postapoc": "25 USD", "to_hit": -2, "ranged_damage": { "damage_type": "bullet", "amount": -4 }, "material": [ "steel", "aluminum" ], diff --git a/data/json/monster_special_attacks/void_spider_mechanics.json b/data/json/monster_special_attacks/void_spider_mechanics.json index c6696f4282bc0..0602fd44aa808 100644 --- a/data/json/monster_special_attacks/void_spider_mechanics.json +++ b/data/json/monster_special_attacks/void_spider_mechanics.json @@ -6,8 +6,8 @@ "description": "The severed leg of a void weaver, turned into some macabre ornament.", "weight": "1 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 10000, + "price": "30 USD", + "price_postapoc": "100 USD", "symbol": "!", "color": "light_red", "use_action": { diff --git a/data/json/npcs/exodii/exodii_merchant_talk.json b/data/json/npcs/exodii/exodii_merchant_talk.json index ddeaf0d8b0e53..b6b7d1d4fd778 100644 --- a/data/json/npcs/exodii/exodii_merchant_talk.json +++ b/data/json/npcs/exodii/exodii_merchant_talk.json @@ -11,8 +11,8 @@ "flags": [ "COIN_SHAPED" ], "material": [ "copper" ], "volume": "1 ml", - "price": 1, - "price_postapoc": 1 + "price": "1 cent", + "price_postapoc": "1 cent" }, { "//": "table of contents: common response strings appearing in this list of topics", diff --git a/data/json/npcs/isolated_road/isolated_road_item_groups.json b/data/json/npcs/isolated_road/isolated_road_item_groups.json index 1ff58d00ed450..274a8956241bf 100644 --- a/data/json/npcs/isolated_road/isolated_road_item_groups.json +++ b/data/json/npcs/isolated_road/isolated_road_item_groups.json @@ -200,8 +200,8 @@ "name": { "str_sp": "engineering notes" }, "snippet_category": "artisan_docs", "description": "A collection of sketches and CAD designs marked up with pencil. There are two peoples handwriting.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "weight": "3 g", "volume": "1 ml", diff --git a/data/json/npcs/scrap_trader/scrap_trader.json b/data/json/npcs/scrap_trader/scrap_trader.json index 66c5bc4740d65..06aa6f70ae063 100644 --- a/data/json/npcs/scrap_trader/scrap_trader.json +++ b/data/json/npcs/scrap_trader/scrap_trader.json @@ -79,8 +79,8 @@ { "item": "sheet_metal", "price": 500, "fixed_adj": 0 }, { "item": "lc_steel_lump", "price": 1200, "fixed_adj": 0 }, { "item": "mc_steel_lump", "price": 1600, "fixed_adj": 0 }, - { "item": "hc_steel_lump", "price": 2000, "fixed_adj": 0 }, { "item": "scrap_aluminum", "price": 30, "fixed_adj": 0 }, + { "item": "hc_steel_lump", "price": 2000, "fixed_adj": 0 }, { "item": "scrap_bronze", "price": 500, "fixed_adj": 0 }, { "item": "bismuth", "price": 2000, "fixed_adj": 0 }, { "item": "zinc_metal", "price": 2000, "fixed_adj": 0 }, diff --git a/data/json/vehicleparts/modular_tools.json b/data/json/vehicleparts/modular_tools.json index de9b352f0c0f0..db0e8cba6f8f8 100644 --- a/data/json/vehicleparts/modular_tools.json +++ b/data/json/vehicleparts/modular_tools.json @@ -6,8 +6,8 @@ "category": "veh_parts", "weight": "40000 g", "volume": "20 L", - "price": 40000, - "price_postapoc": 2000, + "price": "400 USD", + "price_postapoc": "20 USD", "material": [ "steel" ], "symbol": "&", "color": "light_cyan" diff --git a/data/json/vehicleparts/utilities.json b/data/json/vehicleparts/utilities.json index 9369547273e04..fa3769f9b88f4 100644 --- a/data/json/vehicleparts/utilities.json +++ b/data/json/vehicleparts/utilities.json @@ -110,8 +110,8 @@ "category": "veh_parts", "weight": "500 g", "volume": "300 ml", - "price": 3000, - "price_postapoc": 72 + "price": "30 USD", + "price_postapoc": "72 cent" }, { "type": "vehicle_part", diff --git a/data/mods/Aftershock/items/ammo.json b/data/mods/Aftershock/items/ammo.json index d7251bb1f147d..279565e46ed84 100644 --- a/data/mods/Aftershock/items/ammo.json +++ b/data/mods/Aftershock/items/ammo.json @@ -2,8 +2,8 @@ { "type": "AMMO", "id": "acidic_bore", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "name": { "str": "acidic bore" }, "symbol": "=", "color": "red", @@ -35,8 +35,8 @@ { "type": "AMMO", "id": "xray_laser_barrel", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "name": { "str": "x-ray laser barrel" }, "symbol": "=", "color": "green", @@ -55,7 +55,7 @@ { "type": "AMMO", "id": "arrow_nano", - "price": 2000, + "price": "20 USD", "name": { "str": "nano printed combat arrow" }, "symbol": "=", "color": "green", @@ -63,7 +63,7 @@ "description": "Arrows made from nanoprinted materials where each layer of the arrow is designed for improved efficiency. A layer that provides the least possible air resistance, followed by a layer of armor piercing, then followed by a frangible layer. However, this makes each arrow single use.", "material": [ "superalloy" ], "volume": "250 ml", - "price_postapoc": 10000, + "price_postapoc": "100 USD", "weight": "20 g", "longest_side": "76 cm", "ammo_type": "arrow", diff --git a/data/mods/Aftershock/items/ammo/10mm.json b/data/mods/Aftershock/items/ammo/10mm.json index 244889d1189da..46b529b9c1bc5 100644 --- a/data/mods/Aftershock/items/ammo/10mm.json +++ b/data/mods/Aftershock/items/ammo/10mm.json @@ -6,7 +6,7 @@ "description": "Standardized 10mm ammunition with a brass jacketed projectile. For as long as you can remember bullets like these have been used for military, law enforcement, and civilian use.", "weight": "9 g", "volume": "117 ml", - "price": 400, + "price": "4 USD", "material": [ "lead" ], "symbol": "=", "color": "yellow", @@ -26,7 +26,7 @@ "description": "Standardized 10mm ammunition with a hollow point projectile. While they have inferior penetration to FMJ rounds, their expansion slightly increases stopping power against unarmed targets and reduces overpenetration.", "weight": "7 g", "volume": "115 ml", - "price": 150, + "price": "1 USD 50 cent", "material": [ "lead" ], "symbol": "=", "color": "yellow", @@ -47,7 +47,7 @@ "//": "tiny guided rockets.", "weight": "7 g", "volume": "115 ml", - "price": 150, + "price": "1 USD 50 cent", "material": [ "superalloy", "powder", "plastic" ], "symbol": "=", "color": "pink", diff --git a/data/mods/Aftershock/items/ammo/25mm.json b/data/mods/Aftershock/items/ammo/25mm.json index 020c6b3f3721f..d279375345839 100644 --- a/data/mods/Aftershock/items/ammo/25mm.json +++ b/data/mods/Aftershock/items/ammo/25mm.json @@ -6,7 +6,7 @@ "description": "A 25mm grenade with a canister shot load, deals devastating damage against moderately armored foes within mid to close range. Relatively low tech and affordable when compared to other 25mm grenades, these are often fielded by frontier outfits due to their adequate performance in anti-drone and close quarters combat.", "weight": "130 g", "volume": "230 ml", - "price": 8000, + "price": "80 USD", "material": [ "superalloy", "powder", "lead" ], "symbol": "=", "color": "pink", diff --git a/data/mods/Aftershock/items/ammo/5x50.json b/data/mods/Aftershock/items/ammo/5x50.json index 3d138801fbfb0..c34b42227691d 100644 --- a/data/mods/Aftershock/items/ammo/5x50.json +++ b/data/mods/Aftershock/items/ammo/5x50.json @@ -6,7 +6,7 @@ "description": "Designed to defeat modern body armor, the Rivtech 5x50mm flechette round features a biodegradable sabot and a single, fin-stabilized penetrator.", "weight": "8 g", "volume": "144 ml", - "price": 1125, + "price": "11 USD 25 cent", "material": [ "plastic", "powder", "steel" ], "symbol": "=", "color": "green", @@ -19,7 +19,7 @@ "dispersion": 60, "recoil": 400, "flags": [ "IRREPLACEABLE_CONSUMABLE" ], - "price_postapoc": 1800, + "price_postapoc": "18 USD", "effects": [ "COOKOFF", "NEVER_MISFIRES" ] }, { @@ -29,8 +29,8 @@ "name": { "str": "RA119 5x50mm penetrator" }, "description": "Designed to defeat modern body armor, the Rivtech 5x50mm RA119 penetrator round features a biodegradable sabot and a single, fin-stabilized tungsten alloy projectile.", "weight": "9 g", - "price": 1688, - "price_postapoc": 2400, + "price": "16 USD 88 cent", + "price_postapoc": "24 USD", "relative": { "range": -10, "damage": { "damage_type": "bullet", "amount": 5, "armor_penetration": 20 }, "dispersion": 20 }, "proportional": { "recoil": 1.1 } }, @@ -39,7 +39,7 @@ "copy-from": "afs_5x50dart", "type": "AMMO", "name": { "str": "5x50mm flechette, reloaded", "str_pl": "5x50mm flechettes, reloaded" }, - "price_postapoc": 1200, + "price_postapoc": "12 USD", "description": "Designed to defeat modern body armor, the Rivtech 5x50mm flechette round features a biodegradable sabot and a single, fin-stabilized penetrator. This one has been hand-reloaded by a lucky survivor or perhaps a pre-Cataclysm corporate spy, leading to slightly inferior performance compared to factory-produced ammo.", "effects": [ "COOKOFF", "RECYCLED" ], "relative": { "range": -15, "dispersion": 40 }, diff --git a/data/mods/Aftershock/items/ammo/7.50mm.json b/data/mods/Aftershock/items/ammo/7.50mm.json index bcfb484b1ebf8..f5d08df5a9b6e 100644 --- a/data/mods/Aftershock/items/ammo/7.50mm.json +++ b/data/mods/Aftershock/items/ammo/7.50mm.json @@ -6,7 +6,7 @@ "description": "An intermediate bullet with an acceptable all-round performance. Due to their role as UICA's standard issue rifle cartridge, these are ubiquitous wherever Earth makes its presence be known.", "weight": "12 g", "volume": "194 ml", - "price": 280, + "price": "2 USD 80 cent", "material": [ "lead" ], "symbol": "=", "color": "yellow", @@ -26,7 +26,7 @@ "description": "Civilian-legal 7.50mm ammunition featuring a reduced propellant case and unjacketed projectiles. The 7.50mm RP round is extremely weak with very low stopping power, short range, and negligible recoil. While cheaper than military grade rounds, it's only really useful for rifle training, and for hunting small animals.", "weight": "3 g", "volume": "65 ml", - "price": 150, + "price": "1 USD 50 cent", "material": [ "lead" ], "symbol": "=", "color": "yellow", diff --git a/data/mods/Aftershock/items/ammo/flashbulb.json b/data/mods/Aftershock/items/ammo/flashbulb.json index 98c1b3902208e..13323c2f1628d 100644 --- a/data/mods/Aftershock/items/ammo/flashbulb.json +++ b/data/mods/Aftershock/items/ammo/flashbulb.json @@ -2,8 +2,8 @@ { "type": "AMMO", "id": "afs_82mm_flashbulb", - "price": 70000, - "price_postapoc": 12000, + "price": "700 USD", + "price_postapoc": "120 USD", "name": { "str": "82x225mm flashbulb" }, "symbol": "=", "color": "dark_gray", diff --git a/data/mods/Aftershock/items/ammo/foam.json b/data/mods/Aftershock/items/ammo/foam.json index cf63faf91cd49..4b89be49b09e2 100644 --- a/data/mods/Aftershock/items/ammo/foam.json +++ b/data/mods/Aftershock/items/ammo/foam.json @@ -6,8 +6,8 @@ "description": "The chemical precursors of foamcrete, a quick-hardening, resilient substance that readily expands on contact with air. Originally designed for structural repair in commercial spaceflight, it can be used to quickly erect walls and platforms, or to encase foes.", "weight": "250 g", "volume": "2 L", - "price": 3500, - "price_postapoc": 500, + "price": "35 USD", + "price_postapoc": "5 USD", "material": [ "water" ], "symbol": "=", "color": "light_gray", diff --git a/data/mods/Aftershock/items/ammo/metal_rail.json b/data/mods/Aftershock/items/ammo/metal_rail.json index cfe56d38e27de..9edd27db8c948 100644 --- a/data/mods/Aftershock/items/ammo/metal_rail.json +++ b/data/mods/Aftershock/items/ammo/metal_rail.json @@ -7,8 +7,8 @@ "weight": "236 g", "longest_side": "16 cm", "volume": "300 ml", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel" ], "symbol": "=", @@ -29,8 +29,8 @@ "description": "A short piece of steel which has been forged true and sharpened on one end. Could be used as a projectile by a sufficiently powerful electromagnetic weapon.", "weight": "212 g", "volume": "270 ml", - "price": 1500, - "price_postapoc": 500, + "price": "15 USD", + "price_postapoc": "5 USD", "material": [ "steel" ], "color": "light_gray", "dispersion": 0, diff --git a/data/mods/Aftershock/items/armor.json b/data/mods/Aftershock/items/armor.json index 512bd579522ed..46c8d6dee5cd4 100644 --- a/data/mods/Aftershock/items/armor.json +++ b/data/mods/Aftershock/items/armor.json @@ -7,9 +7,9 @@ "weight": "3401 g", "volume": "3 L", "//": "sci-fantasy extradimensional gadget = pricey", - "price": 1000000000, + "price": "10000 kUSD", "//2": "because nobody would have that amount after the world ends, it's worth $1000 in barter", - "price_postapoc": 100000, + "price_postapoc": "1 kUSD", "material": [ "glass", "superalloy", "platinum" ], "symbol": "[", "color": "cyan", @@ -27,7 +27,7 @@ "description": "A lightweight armor vest made of pieces of titanium sewn together, with cloth padding for comfort. Brittle against blunt force, but highly resistant to cuts and corrosion.", "weight": "939 g", "volume": "500 ml", - "price": 1000, + "price": "10 USD", "to_hit": -3, "material": [ "titanium", "cotton" ], "symbol": "[", @@ -55,7 +55,7 @@ "copy-from": "jedi_cloak", "name": { "str": "sentinel-lx cloak" }, "description": "The vantablack cloak of sentinel-lx hangs around ones shoulders as a solid, unnatural shadow. Made from woven graphene, it's lightweight and resistant, but cannot be repaired.", - "price": 1500000, + "price": "15 kUSD", "material": [ "graphene_weave" ], "symbol": "[", "color": "dark_gray", @@ -145,7 +145,7 @@ "description": "Personal portable charging system consisting of an array of quantum solar panels neatly folded in the form of a large backpack. It can be worn as one, and has an integrated cable to plug it into a cable charger system. Cutting edge technology.", "weight": "7500 g", "volume": "5 L", - "price": 1500000, + "price": "15 kUSD", "to_hit": -1, "material": [ "glass", "steel" ], "symbol": "[", @@ -164,7 +164,7 @@ "description": "Unfolded array of portable quantum solar panels ready to push some power into an active cable charger system.", "weight": "7500 g", "volume": "15 L", - "price": 1500000, + "price": "15 kUSD", "to_hit": -2, "material": [ "glass", "steel" ], "symbol": "[", @@ -184,8 +184,8 @@ "description": "An extra large suit of black bulletproof armor with lots of pockets. The word SWAT is emblazoned across the back. Specifically designed for Uplifted officers such as Mastodons.", "weight": "10 kg", "volume": "20 L", - "price": 585000, - "price_postapoc": 5000, + "price": "5 kUSD 850 USD", + "price_postapoc": "50 USD", "to_hit": -3, "material": [ "kevlar", "cotton" ], "symbol": "[", @@ -212,7 +212,7 @@ "description": "Oversized ballistic armor without any armor inserts. The soft armor plate carrier is still protective but it won't stop high energy projectiles.", "weight": "4 kg", "volume": "7 L", - "price": 160000, + "price": "1 kUSD 600 USD", "material": [ "nylon" ], "symbol": "[", "color": "light_gray", @@ -229,7 +229,7 @@ "description": "Oversized ballistic armor with ESAPI ceramic armor plates.", "weight": "12 kg", "volume": "9 L", - "price": 280000, + "price": "2 kUSD 800 USD", "material": [ "nylon", "ceramic" ], "symbol": "[", "color": "light_gray", @@ -246,8 +246,8 @@ "description": "Modern oversized reinforced tactical combat boots. Very durable.", "weight": "1460 g", "volume": "5 L", - "price": 7000, - "price_postapoc": 14000, + "price": "70 USD", + "price_postapoc": "140 USD", "to_hit": -1, "material": [ "kevlar", "leather" ], "symbol": "[", @@ -268,7 +268,7 @@ "description": "A pair of oversized reinforced Kevlar tactical gloves. Commonly used by police and military units.", "weight": "1 kg", "volume": "750 ml", - "price": 5200, + "price": "52 USD", "to_hit": 2, "material": [ "kevlar", "leather" ], "symbol": "[", @@ -287,7 +287,7 @@ "description": "A pair of reinforced Kevlar tactical gloves, specifically designed to accommodate three-fingered Killophants. Thinner than regular oversized tactical gloves.", "weight": "320 g", "volume": "750 ml", - "price": 5200, + "price": "52 USD", "to_hit": 2, "material": [ "kevlar", "leather" ], "symbol": "[", @@ -346,8 +346,8 @@ "description": "A wetsuit designed for the Octopus Uplifts known as Cecaelia. This is the explorer suit with no head or tentacle protection.", "weight": "1320 g", "volume": "4 L", - "price": 12000, - "price_postapoc": 500, + "price": "120 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "neoprene", "cotton" ], "symbol": "[", @@ -372,8 +372,8 @@ "description": "The combat version of the Cecaelia wetsuit; made of neoprene and Kevlar, it will provide some level of protection for deep dwellers.", "weight": "1720 g", "volume": "4 L", - "price": 12000, - "price_postapoc": 500, + "price": "120 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "neoprene", "kevlar" ], "symbol": "[", @@ -445,8 +445,8 @@ "description": "A lightweight nanomesh vest designed to face down many of the perils of space travel. These vests are mass produced and often stacked in starship lockers.", "weight": "6953 g", "volume": "1 L", - "price": 10000, - "price_postapoc": 2000, + "price": "100 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "nanoprinted_alloy" ], "symbol": "[", @@ -479,8 +479,8 @@ "description": "This piece of armor harkens back to renaissance designs. It differs in that it is cast as a single piece in deep space installations where conditions can be controlled absolutely.", "weight": "4200 g", "volume": "6 L", - "price": 300000, - "price_postapoc": 300000, + "price": "3 kUSD", + "price_postapoc": "3 kUSD", "to_hit": -1, "material": [ "vacuum_carbide" ], "symbol": "[", diff --git a/data/mods/Aftershock/items/armor/civilian_blue_collar.json b/data/mods/Aftershock/items/armor/civilian_blue_collar.json index fecf5d736ee4d..d888b5bbcf6f7 100644 --- a/data/mods/Aftershock/items/armor/civilian_blue_collar.json +++ b/data/mods/Aftershock/items/armor/civilian_blue_collar.json @@ -109,8 +109,8 @@ "weight": "600 g", "volume": "10 L", "looks_like": "tacvest", - "price": 7400, - "price_postapoc": 5000, + "price": "74 USD", + "price_postapoc": "50 USD", "material": [ "steel", "plastic" ], "symbol": "[", "color": "dark_gray", diff --git a/data/mods/Aftershock/items/armor/exosuit/exosuit_components.json b/data/mods/Aftershock/items/armor/exosuit/exosuit_components.json index dfecb65f190cb..554fddc995ed1 100644 --- a/data/mods/Aftershock/items/armor/exosuit/exosuit_components.json +++ b/data/mods/Aftershock/items/armor/exosuit/exosuit_components.json @@ -7,7 +7,7 @@ "description": "A small connector used in the construction of exosuit plating and modules, these allow the exosuit to provide power and transfer data. Larger items will require additional fittings to produce.", "weight": "10 g", "volume": "250 ml", - "price": 1000, + "price": "10 USD", "ammo_type": "exo_connector", "material": [ "nanoprinted_alloy", "copper", "plastic" ], "symbol": "#", diff --git a/data/mods/Aftershock/items/armor/exosuit/exosuit_melee.json b/data/mods/Aftershock/items/armor/exosuit/exosuit_melee.json index b7dbd23a618ce..c4a624b84491d 100644 --- a/data/mods/Aftershock/items/armor/exosuit/exosuit_melee.json +++ b/data/mods/Aftershock/items/armor/exosuit/exosuit_melee.json @@ -109,8 +109,8 @@ "weight": "3 kg", "volume": "300 ml", "longest_side": "50 cm", - "price": 1100, - "price_postapoc": 250, + "price": "11 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "any", "balance": "neutral" }, "material": [ "qt_steel" ], "symbol": "[", diff --git a/data/mods/Aftershock/items/armor/exosuit/exosuit_tool.json b/data/mods/Aftershock/items/armor/exosuit/exosuit_tool.json index 763019fd64938..a2b7dfc643ac4 100644 --- a/data/mods/Aftershock/items/armor/exosuit/exosuit_tool.json +++ b/data/mods/Aftershock/items/armor/exosuit/exosuit_tool.json @@ -6,8 +6,8 @@ "name": { "str": "exosuit repair kit" }, "description": "This is a collection of tools including a high-powered torch for working the titanium frame.", "longest_side": "25 cm", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "qt_steel" ], "symbol": ",", "color": "light_gray", diff --git a/data/mods/Aftershock/items/armor/jetpacks.json b/data/mods/Aftershock/items/armor/jetpacks.json index 2decf70bb5cc5..4afbb5c5ff525 100644 --- a/data/mods/Aftershock/items/armor/jetpacks.json +++ b/data/mods/Aftershock/items/armor/jetpacks.json @@ -6,8 +6,8 @@ "description": "A back mounted rocket pack, its well worn superalloy nozzles seem to suggest great age. Units like this one are rarely used by elite military forces and by scavenger-explorers hoping to find high value salvage. Not powerful enough to enable true flight within a gravity well, but it may still be used to perform short jumps and air-dashes.", "weight": "4350 g", "volume": "15 L", - "price": 3900, - "price_postapoc": 500, + "price": "39 USD", + "price_postapoc": "5 USD", "material": [ "steel", "superalloy" ], "symbol": "[", "looks_like": "rpg", diff --git a/data/mods/Aftershock/items/armor/military_armor.json b/data/mods/Aftershock/items/armor/military_armor.json index d8b86ad9e5ac3..61e2aa450befb 100644 --- a/data/mods/Aftershock/items/armor/military_armor.json +++ b/data/mods/Aftershock/items/armor/military_armor.json @@ -72,8 +72,8 @@ "description": "A military poncho made from heat dissipating ablative fibers. It is designed to be worn over armor and provide additional protection against direct energy attacks. Its ablative properties make it disposable and relatively fragile, its not rated to survive more than a single combat engagement.", "weight": "960 g", "volume": "250 ml", - "price": 4000, - "price_postapoc": 750, + "price": "40 USD", + "price_postapoc": "7 USD 50 cent", "symbol": "[", "material": [ "nylon", "carbide_thermal_weave" ], "color": "light_gray", diff --git a/data/mods/Aftershock/items/armor_helmets.json b/data/mods/Aftershock/items/armor_helmets.json index 8d102bc3e51a6..09d3c3d7d61c6 100644 --- a/data/mods/Aftershock/items/armor_helmets.json +++ b/data/mods/Aftershock/items/armor_helmets.json @@ -7,8 +7,8 @@ "description": "This helmet is designed for the individual that is worried about catching heavy weapons fire to the face. It is unwieldy and heavy, and lacks basic environmental protection features, but it just might stop even the largest of ballistic rounds.", "weight": "3175 g", "volume": "2750 ml", - "price": 40000, - "price_postapoc": 285000, + "price": "400 USD", + "price_postapoc": "2 kUSD 850 USD", "material": [ "vacuum_carbide" ], "symbol": "[", "looks_like": "helmet_barbute", @@ -34,8 +34,8 @@ "description": "An all-environment combat helmet issued to UICA espatiers. Commonly known as 'the jar' due to its unusual clear polymer canopy that leaves its wearer's face visible.", "weight": "1324 g", "volume": "2 L", - "price": 50000, - "price_postapoc": 150000, + "price": "500 USD", + "price_postapoc": "1 kUSD 500 USD", "to_hit": -1, "material": [ "nanoprinted_alloy" ], "symbol": "[", @@ -67,8 +67,8 @@ "description": "A lightweight black helmet that provides excellent protection from all sorts of damage, unless it's airborne. UICAS makes the point of designing all headgear whenever possible with clear faceplates, in order to provide a human touch to all interactions.", "weight": "980 g", "volume": "2 L", - "price": 37000, - "price_postapoc": 75000, + "price": "370 USD", + "price_postapoc": "750 USD", "to_hit": -1, "material": [ "nanoprinted_alloy" ], "symbol": "[", diff --git a/data/mods/Aftershock/items/bioparts.json b/data/mods/Aftershock/items/bioparts.json index a995d125a4a5f..1fe8d83666d74 100644 --- a/data/mods/Aftershock/items/bioparts.json +++ b/data/mods/Aftershock/items/bioparts.json @@ -7,7 +7,7 @@ "description": "This jar contains a human brain kept alive by mi-go technology. It has metal veined tendrils that appear to allow it to connect to various devices.", "weight": "365 g", "volume": "3 L", - "price": 100, + "price": "1 USD", "to_hit": -1, "material": [ "alien_resin" ], "symbol": ")", @@ -23,7 +23,7 @@ "description": "This heartlike organ has multiple valves and upon its proper removal from the bioweapons corpse each valve sealed itself. It hums gently in your hands, as if waiting for an appropriate receptacle.", "weight": "1400 g", "volume": "1 L", - "price": 100, + "price": "1 USD", "to_hit": -1, "material": [ "flesh" ], "symbol": ")", @@ -39,7 +39,7 @@ "description": "This lump of flesh has various lobes protruding from it that at intervals will emit toned sounds. Perhaps it works via echolocation. Like all mi-go bioparts the openings on this piece closed up after it was cut free and it seems to have gone into a form of hibernation with the pulses occurring slower and slower as it conserves energy.", "weight": "40 g", "volume": "250 ml", - "price": 100, + "price": "1 USD", "to_hit": -1, "material": [ "alien_resin" ], "symbol": ")", @@ -55,7 +55,7 @@ "description": "This cross between a sea anemone and what you imagine a dragon's mouth would look like is the core body of the bioweapon. You cannot imagine what you could make out of this but maybe someone somewhere does.", "weight": "40000 g", "volume": "25 L", - "price": 100, + "price": "1 USD", "to_hit": -3, "material": [ "alien_resin" ], "symbol": ")", @@ -71,7 +71,7 @@ "name": { "str": "broken mi-go turret" }, "category": "other", "description": "A broken mi-go turret. It's leaking fluids and smells you can't identify. Could be butchered for parts.", - "price": 1000, + "price": "10 USD", "material": [ "alien_resin", "flesh" ], "weight": "40750 g", "volume": "30 L", @@ -87,7 +87,7 @@ "description": "You ripped this from a mi-go abomination. You think you should wear gloves to reload it.", "weight": "5140 g", "volume": "1500 ml", - "price": 400000, + "price": "4 kUSD", "ammo": [ "acidic_bore" ], "to_hit": -1, "material": [ "alien_resin" ], diff --git a/data/mods/Aftershock/items/books.json b/data/mods/Aftershock/items/books.json index 8382e12614f66..ac6c86cf794be 100644 --- a/data/mods/Aftershock/items/books.json +++ b/data/mods/Aftershock/items/books.json @@ -6,8 +6,8 @@ "description": "The only copy of Housefly in existence - a long book about three individuals drawn together by fate in the early 1800s to save their English town of Victoria from a mysterious threat. You never got to publish it, but reading it lets you forget the horrors of the Cataclysm, if only for a moment.", "weight": "700 g", "volume": "750 ml", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "looks_like": "ZSG", "material": [ "paper" ], "symbol": "?", @@ -24,8 +24,8 @@ "description": "Welcome to Frozen Hell, an unofficial history of Salus IV by Bette Lapin. Salus IV was founded in the early days of the Hyperspace Era as a joint venture between Mercurial Genomics and a Soviet Design Bureau. At its height several hundred years ago Salus IV had just over 110 million citizens (including both uplifts and humans). However, that population had begun to decline even before the Discontinuity as people migrated to planets that, while more hostile to life during the earliest colonization phases than Salus IV, were much simpler to terraform into a place more enjoyable by human and uplift citizens.", "weight": "700 g", "volume": "750 ml", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "looks_like": "ZSG", "material": [ "paper" ], "symbol": "?", @@ -57,7 +57,7 @@ "description": "A book detailing the workings of state of the art atomic technology, and the physics behind it.", "weight": "2063 g", "volume": "2 L", - "price": 9200, + "price": "92 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "adv_chemistry", @@ -78,8 +78,8 @@ "description": "A binder containing detailed production logs from an industrial mealworm farm. You could use its recordings to start your own farming operations.", "weight": "700 g", "volume": "750 ml", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "looks_like": "file", "material": [ "paper" ], "symbol": "?", @@ -155,7 +155,7 @@ "description": "A small folio indicating how to best utilize the equipment of your landfall survival kit during an emergency. Its first page urges you to remain calm, and to consult your escape pod's control console for further instructions.", "weight": "120 g", "volume": "500 ml", - "price": 0, + "price": "0 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "file", @@ -174,7 +174,7 @@ "description": "A folio of notes written by a madman. They seem to suggest ways to re-animate the dead and create various affronts to the natural order.", "weight": "2063 g", "volume": "2 L", - "price": 929200, + "price": "9 kUSD 292 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "adv_chemistry", @@ -205,7 +205,7 @@ "description": "A pocket-sized book filled to the margins with cramped handwriting and notes on the biology of Mi-Go and other musings. It's hard to understand and quite gruesome in some places and written in a shorthand or cipher in others.", "weight": "600 g", "volume": "250 ml", - "price": 300000, + "price": "3 kUSD", "material": [ "paper" ], "symbol": "?", "looks_like": "ZSG", @@ -225,8 +225,8 @@ "description": "Recipes for Resistance is a collection of tales, strategies and recipes for working against corporate rule. Very simple language is used in the recipes but it drags out the explanations.", "weight": "2000 g", "volume": "500 ml", - "price": 64000, - "price_postapoc": 2000, + "price": "640 USD", + "price_postapoc": "20 USD", "material": [ "paper" ], "symbol": "?", "color": "light_green", @@ -246,8 +246,8 @@ "description": "A corporate manual for conditions of inhospitable cold. It includes instructions for building devices and substances that will aid in survival in extreme weather or even the lack thereof.", "weight": "2000 g", "volume": "500 ml", - "price": 64000, - "price_postapoc": 2000, + "price": "640 USD", + "price_postapoc": "20 USD", "material": [ "paper" ], "symbol": "?", "color": "light_cyan", @@ -267,7 +267,7 @@ "description": "A lab book dedicated to reverse engineering various ammunitions found throughout the solar system. Written in a format to allow barely trained technicians to *safely* replicate these rounds.", "weight": "2063 g", "volume": "2 L", - "price": 9200, + "price": "92 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "adv_chemistry", diff --git a/data/mods/Aftershock/items/cast_spell_items.json b/data/mods/Aftershock/items/cast_spell_items.json index 9ae4f1d2fa0b0..d03a664a04829 100644 --- a/data/mods/Aftershock/items/cast_spell_items.json +++ b/data/mods/Aftershock/items/cast_spell_items.json @@ -6,7 +6,7 @@ "description": "A generic techno doodad used to cast spells.", "weight": "100 g", "volume": "250 ml", - "price": 5000, + "price": "50 USD", "material": [ "superalloy" ], "symbol": "[", "color": "light_red", diff --git a/data/mods/Aftershock/items/cbms.json b/data/mods/Aftershock/items/cbms.json index d77922930f7a8..32e33d8231ae8 100644 --- a/data/mods/Aftershock/items/cbms.json +++ b/data/mods/Aftershock/items/cbms.json @@ -5,7 +5,7 @@ "type": "BIONIC_ITEM", "name": { "str": "Solar Panels CBM" }, "description": "Installed on your back is a set of retractable solar panels. When in direct sunlight, they will automatically deploy and slowly recharge your power level.", - "price": 350000, + "price": "3 kUSD 500 USD", "difficulty": 4 }, { @@ -15,8 +15,8 @@ "name": { "str": "Microfusion Generator CBM" }, "description": "A miniaturized fusion reactor. It has modest output, but will run continuously for over two hundred years thanks to its internal nuclear fuel reservoir.", "weight": "500 g", - "price": 120000, - "price_postapoc": 1500, + "price": "1 kUSD 200 USD", + "price_postapoc": "15 USD", "difficulty": 3 }, { @@ -25,7 +25,7 @@ "type": "BIONIC_ITEM", "name": { "str": "Deployable Grenade Launcher CBM" }, "description": "A small, folding tube that attaches to your right arm. Once implanted, it can serve as a portable, integrated tool for firing 40mm grenades and canisters.", - "price": 100000, + "price": "1 kUSD", "difficulty": 5 }, { @@ -43,8 +43,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Linguistic Coprocessor CBM" }, "description": "A microcomputer installed into the left hemisphere of your brain to increase the speed that it processes language. When installed, it provides a passive boost to reading speed.", - "price": 100000, - "price_postapoc": 50000, + "price": "1 kUSD", + "price_postapoc": "500 USD", "difficulty": 5 }, { @@ -54,7 +54,7 @@ "name": { "str": "Archeotech Grav Chute CBM" }, "looks_like": "bio_int_enhancer", "description": "Pre-Discontinuity bionic module that was implanted into elite drop troops who could jump from their insertion vehicle during the radar disruption of reentry. While active, the field will prevent damage to your body from severe impacts, at the cost of impaired movement.", - "price": 10000, + "price": "100 USD", "weight": "3000 g", "difficulty": 8 }, @@ -65,7 +65,7 @@ "name": { "str": "Salvaged Power Storage", "str_pl": "Several Salvaged Power Storage CBMs" }, "looks_like": "bio_int_enhancer", "description": "A battered and used Compact Bionics Module that upgrades the user's power capacity by 50 units. Having at least one of these is a prerequisite to using powered bionics. The user will also need a power supply, found in various CBMs.", - "price": 380000, + "price": "3 kUSD 800 USD", "weight": "70 g", "difficulty": 1, "installation_data": "AID_bio_power_storage" @@ -76,8 +76,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Dopamine Stimulators CBM" }, "description": "A set of tiny bionic nerve stimulators that install into the reward center of your brain. When run with bionic power, it periodically releases a hit of dopamine and other reward chemicals, inducing a state of euphoria and suppressing fear.", - "price": 1000000, - "price_postapoc": 100000, + "price": "10 kUSD", + "price_postapoc": "1 kUSD", "difficulty": 8 }, { @@ -86,8 +86,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Counteractive Reflexes CBM" }, "description": "Cybernetic stimulators installed across your nervous system boost your reflexes whenever you are hit in melee, granting you an extra action. This bionic must be active to function.", - "price": 1000000, - "price_postapoc": 100000, + "price": "10 kUSD", + "price_postapoc": "1 kUSD", "difficulty": 9 }, { @@ -97,8 +97,8 @@ "name": { "str_sp": "Bioweapon Thermal Conduits" }, "looks_like": "bio_int_enhancer", "description": "An improved ulnar sheath equipped with thermal inductors allows for the super heating of all types of implanted bladed weaponry. While this bionic is active, any deployed bionic blades will deal additional fire damage to targets.", - "price": 8000, - "price_postapoc": 3500, + "price": "80 USD", + "price_postapoc": "35 USD", "weight": "250 g", "difficulty": 8 }, @@ -109,8 +109,8 @@ "name": { "str_sp": "Bioweapon Superconductive Channels" }, "looks_like": "bio_int_enhancer", "description": "Paired capacitor banks maintain implanted bladed weaponry under constant electrical charge. While this bionic is active, any deployed bionic blades will deal additional electric damage with a chance of the damage arcing to other nearby targets.", - "price": 8000, - "price_postapoc": 3500, + "price": "80 USD", + "price_postapoc": "35 USD", "weight": "250 g", "difficulty": 8 }, @@ -120,8 +120,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Melee Optimization Unit CBM" }, "description": "An implanted AI executes the optimal followup for each of your melee strikes, allowing you to chain them with unnatural speed and grace. This bionic must be active to function.", - "price": 1000000, - "price_postapoc": 100000, + "price": "10 kUSD", + "price_postapoc": "1 kUSD", "difficulty": 10 }, { @@ -130,8 +130,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Neurosoft: Aeronautics CBM" }, "description": "A brain implant that grants instinctual knowledge about the operation of flying machines.", - "price": 1000000, - "price_postapoc": 100000, + "price": "10 kUSD", + "price_postapoc": "1 kUSD", "difficulty": 8 }, { @@ -140,8 +140,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Cranium Bomb CBM" }, "description": "A bomb installed where your spine meets your brain stem. It's on a timer from installation and you don't have the codes to reset the timer.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "difficulty": 8 }, { @@ -150,8 +150,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Chemical Enhancement Rig and computer CBM" }, "description": "An implanted AI module and medication dispenser calculates the optimal chemical mix to keep you on your toes and ready for combat. This bionic must be active to function and while it functions your body is at a heightened performance but if it turns off it will take you several days to get back to normal. There are a significant number of baseline bonuses granted by this setup but people around will notice your junkie behavior. This bionic must be active to function.", - "price": 1000000, - "price_postapoc": 100000, + "price": "10 kUSD", + "price_postapoc": "1 kUSD", "difficulty": 9 }, { @@ -160,8 +160,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Speed Injection System CBM" }, "description": "Should never be found outside of the chemical enhancement rig, but probably can be uninstalled, there is no point to doing that.", - "price": 1000000, - "price_postapoc": 100000, + "price": "10 kUSD", + "price_postapoc": "1 kUSD", "difficulty": 9 }, { @@ -170,8 +170,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Pain Suppression Injection System CBM" }, "description": "Should never be found outside of the chemical enhancement rig, but probably can be uninstalled, there is no point to doing that.", - "price": 1000000, - "price_postapoc": 100000, + "price": "10 kUSD", + "price_postapoc": "1 kUSD", "difficulty": 9 }, { @@ -180,8 +180,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Strength Injection System CBM" }, "description": "Should never be found outside of the chemical enhancement rig, but probably can be uninstalled, there is no point to doing that.", - "price": 1000000, - "price_postapoc": 100000, + "price": "10 kUSD", + "price_postapoc": "1 kUSD", "difficulty": 9 }, { @@ -190,8 +190,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Skullgun CBM" }, "description": "A single shot 10mm gun which implants into the forehead. It has the shortest time from thought to shot of all bionic guns which makes it popular among street punks for whom every millisecond counts, but this poorly conceived bionic removes a distressing amount of grey matter to make room for it and gives you a concussion every time you fire it.", - "price": 100000, - "price_postapoc": 1500, + "price": "1 kUSD", + "price_postapoc": "15 USD", "difficulty": 16 }, { @@ -209,8 +209,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Emergency Insulation CBM" }, "description": "A system designed to prevent instantaneous frostbite in workers exposed to things like hard vacuum and liquid nitrogen.", - "price": 100000, - "price_postapoc": 1500, + "price": "1 kUSD", + "price_postapoc": "15 USD", "difficulty": 6 }, { @@ -219,8 +219,8 @@ "type": "BIONIC_ITEM", "name": { "str": "HawkingCorps GravyField Mark I CBM" }, "description": "Imagine a computer inside your body playing pong against the universe. The paddles are made of energy fields and how it causes this to happen are trade secrets. -From the owners manual of HawkingCorps GravyField Mark I. Activating the field will reduce incoming bashing and cut damage by 5 points.", - "price": 100000, - "price_postapoc": 2500, + "price": "1 kUSD", + "price_postapoc": "25 USD", "difficulty": 6 }, { @@ -229,8 +229,8 @@ "type": "BIONIC_ITEM", "name": { "str": "HawkingCorps GravyField Mark II CBM" }, "description": "The HawkingCorps GravyField Mark II was designed for police actions during food riots and other civilian uprisings. It has proven capable of protecting against most improvised weapons. Activating the field will reduce incoming and cut damage by 15 points.", - "price": 100000, - "price_postapoc": 3500, + "price": "1 kUSD", + "price_postapoc": "35 USD", "difficulty": 8 }, { @@ -239,8 +239,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Debt Collection Agent GravyField CBM" }, "description": "This class of personal energy field often sees action on both sides of the vicious ship-to-ship boarding fights that are common with both repossession and piracy. It remains practically impenetrable to melee weapons that lack sharp piercing points. Activating the field will reduce incoming bashing and cut damage by 25 points.", - "price": 100000, - "price_postapoc": 6500, + "price": "1 kUSD", + "price_postapoc": "65 USD", "difficulty": 10 }, { @@ -249,8 +249,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Point Energy Conversion Field CBM" }, "description": "A personal kinetic attenuation field that slows incoming projectiles by converting their kinetic energy into bursts of visible light. Although this version is not powerful enough to defeat most pistol or rifle cartridges by itself, it greatly increases survival odds when combined with traditional ballistic armor. Activating the field will reduce incoming ballistic and piercing damage by 10 points.", - "price": 100000, - "price_postapoc": 2500, + "price": "1 kUSD", + "price_postapoc": "25 USD", "difficulty": 6 }, { @@ -259,8 +259,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Holtzman Personal Shield Generator CBM" }, "description": "A military grade kinetic attenuation system developed for use within UICA's special service branches. Although much more effective than anything that could be conceived with current technology, it remains a pale imitation of the Hyperspace Age systems it was reverse engineered from. A side effect modern engineering seems unable to address is the tendency for this unit to release electrical fields when hit. Activating the field will reduce incoming ballistic and piercing damage by 20 points.", - "price": 100000, - "price_postapoc": 6500, + "price": "1 kUSD", + "price_postapoc": "65 USD", "difficulty": 10 }, { @@ -269,8 +269,8 @@ "type": "BIONIC_ITEM", "name": { "str": "Kinetic Annulment System CBM" }, "description": "A kinetic attenuation system salvaged from a pre-Discontinuity robotic warframe, crudely adapted for compatibility with biological hosts. Powerful enough to completely stop most rifle cartridges. Activating the field will reduce incoming ballistic and piercing damage by 40 points.", - "price": 100000, - "price_postapoc": 12500, + "price": "1 kUSD", + "price_postapoc": "125 USD", "difficulty": 16 } ] diff --git a/data/mods/Aftershock/items/comestibles/alienfood.json b/data/mods/Aftershock/items/comestibles/alienfood.json index 3b01dd98f2863..b10ad034ce9c2 100644 --- a/data/mods/Aftershock/items/comestibles/alienfood.json +++ b/data/mods/Aftershock/items/comestibles/alienfood.json @@ -44,8 +44,8 @@ "description": "Freshly butchered meat from a frozen human carcass, not the most appetizing.", "weight": "296 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "spoils_in": "1 day", "calories": 402, "healthy": -1, @@ -76,8 +76,8 @@ "weight": "72 g", "volume": "250 ml", "vitamins": [ [ "mutant_toxin", 25 ] ], - "price_postapoc": 25, - "price": 200, + "price_postapoc": "25 cent", + "price": "2 USD", "spoils_in": "8 hours", "calories": 60, "quench": 1, @@ -94,8 +94,8 @@ "symbol": "%", "description": "A stretched bumpy piece of bone, unpleasant to hold.", "comestible_type": "FOOD", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "bone" ], "milling": { "into": "meal_bone", "recipe": "meal_bone_mill_1_4" }, "volume": "250 ml", @@ -112,10 +112,10 @@ "symbol": "%", "quench": -10, "healthy": -5, - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "calories": 1923, "description": "Light green fat, smelling absolutely rancid. You could eat it, but it wouldn't be worth it.", - "price": 0, + "price": "0 cent", "material": [ "flesh" ], "volume": "250 ml", "vitamins": [ [ "mutant_toxin", 25 ] ], @@ -133,10 +133,10 @@ "symbol": "%", "quench": -10, "healthy": -5, - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "calories": 1923, "description": "A smooth light green block of cleaned and rendered human fat. While it'll remain edible for a very long time, it won't be the most appetizing.", - "price": 500, + "price": "5 USD", "volume": "250 ml", "vitamins": [ [ "mutant_toxin", 25 ] ], "parasites": 32, @@ -165,8 +165,8 @@ "healthy": -1, "calories": 350, "description": "A carefully folded raw skin harvested from a human corpse. It is stained blue from frostbite. You can cure it for storage and tanning, or eat it if you're desperate enough.", - "price": 330, - "price_postapoc": 20, + "price": "3 USD 30 cent", + "price_postapoc": "20 cent", "material": [ "flesh" ], "flags": [ "TRADER_AVOID" ], "vitamins": [ [ "mutant_toxin", 25 ] ], @@ -180,8 +180,8 @@ "description": "Freshly butchered meat from an alien corpse. You could eat it raw or cooked, but this is a completely alien biosphere.", "weight": "296 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "spoils_in": "1 day", "calories": 402, "healthy": -1, @@ -200,8 +200,8 @@ "type": "COMESTIBLE", "name": { "str_sp": "cooked alien flesh" }, "description": "This is a chunk of freshly cooked alien meat. It could be either filling and nutritious, or poisonous and lethal.", - "price": 750, - "price_postapoc": 100, + "price": "7 USD 50 cent", + "price_postapoc": "1 USD", "parasites": 0, "calories": 402, "vitamins": [ [ "vitC", 16 ], [ "calcium", 2 ], [ "iron", 69 ], [ "mutant_toxin", 25 ] ], @@ -237,8 +237,8 @@ "description": "A balloon-like organ you can only guess is a stomach. It is surprisingly durable.", "weight": "72 g", "volume": "250 ml", - "price_postapoc": 25, - "price": 200, + "price_postapoc": "25 cent", + "price": "2 USD", "spoils_in": "8 hours", "calories": 60, "quench": 1, @@ -291,7 +291,7 @@ "looks_like": "offal", "name": { "str_sp": "raw alien liver" }, "description": "A porous hard organ. Hazarding a guess from all the large blood vessels going in and out, this is the liver. It smells rancid.", - "price_postapoc": 25, + "price_postapoc": "25 cent", "quench": -4, "calories": 92, "vitamins": [ [ "vitC", 0 ], [ "calcium", 0 ], [ "iron", 8 ], [ "mutant_toxin", 25 ] ] @@ -304,7 +304,7 @@ "name": { "str_sp": "cooked alien liver" }, "description": "After some time cooking, the pores of the organ have shrunk, and it's much, much softer - almost yogurt-like in its consistency. It still smells awful.", "parasites": 0, - "price_postapoc": 50, + "price_postapoc": "50 cent", "fun": -2, "healthy": 0, "delete": { "flags": [ "RAW", "PREDATOR_FUN" ] } @@ -318,7 +318,7 @@ "description": "A brain butchered from an alien organism. It looks somewhat similar to its earthly analogues, barring its light-blue coloration and gland riddled frontal lobe.", "color": "light_gray", "healthy": -15, - "price_postapoc": 10, + "price_postapoc": "10 cent", "quench": 10, "fun": -20, "parasites": 15, @@ -332,7 +332,7 @@ "looks_like": "offal_cooked", "name": { "str_sp": "cooked alien brains" }, "description": "Fried and scrambled, this doesn't look the most appetizing, but it's edible (you hope).", - "price_postapoc": 25, + "price_postapoc": "25 cent", "parasites": 0, "healthy": -2, "fun": -8, @@ -347,7 +347,7 @@ "description": "You are guessing here, but this is likely the kidney of the animal. The ammonia smell was the biggest hint.", "color": "brown", "healthy": -8, - "price_postapoc": 25, + "price_postapoc": "25 cent", "quench": -5, "calories": 54, "vitamins": [ [ "vitC", 2 ], [ "calcium", 0 ], [ "iron", 8 ], [ "mutant_toxin", 25 ] ] @@ -360,7 +360,7 @@ "name": { "str_sp": "cooked alien kidney" }, "description": "Thoroughly cooked and prepared, this alien organ has acquired the filthy ammonia smell of a poorly mopped spaceship deck. Even if it were safe to eat, you are not sure you'd want to.", "healthy": -2, - "price_postapoc": 25, + "price_postapoc": "25 cent", "quench": -2, "fun": -3, "parasites": 0, @@ -375,7 +375,7 @@ "description": "You got this chunk of meat from the throat of the animal; it looks different?", "color": "brown", "healthy": 0, - "price_postapoc": 25, + "price_postapoc": "25 cent", "quench": 0, "calories": 133, "vitamins": [ [ "vitC", 32 ], [ "calcium", 0 ], [ "iron", 6 ], [ "mutant_toxin", 25 ] ] @@ -386,7 +386,7 @@ "copy-from": "alien_sweetbread", "looks_like": "meat_cooked", "name": { "str_sp": "cooked alien sweetbread" }, - "price_postapoc": 50, + "price_postapoc": "50 cent", "fun": -1, "description": "Well, it's definitely not muscle, you can tell now. It oozes a purple liquid out onto your hand as you hold it.", "parasites": 0, @@ -402,8 +402,8 @@ "symbol": "%", "description": "Obviously bones. Could be used to make some stuff, like needles.", "comestible_type": "FOOD", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "bone" ], "milling": { "into": "meal_bone", "recipe": "meal_bone_mill_1_4" }, "volume": "250 ml", @@ -420,10 +420,10 @@ "symbol": "%", "quench": -10, "healthy": -5, - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "calories": 1923, "description": "Freshly butchered fat from an alien. You could eat it cooked or raw, but it is more safely used for crafting non edible-products.", - "price": 0, + "price": "0 cent", "material": [ "flesh" ], "volume": "250 ml", "vitamins": [ [ "mutant_toxin", 25 ] ], @@ -537,8 +537,8 @@ "calories": 350, "vitamins": [ [ "mutant_toxin", 25 ] ], "description": "A carefully folded raw skin harvested from an alien animal. You can cure it for storage and tanning, or eat it if you're desperate enough.", - "price": 330, - "price_postapoc": 20, + "price": "3 USD 30 cent", + "price_postapoc": "20 cent", "material": [ "flesh" ], "flags": [ "TRADER_AVOID" ], "fun": -12 @@ -559,8 +559,8 @@ "calories": 350, "vitamins": [ [ "mutant_toxin", 25 ] ], "description": "A carefully folded raw skin harvested from a fur-bearing alien animal. It still has the fur attached. You can cure it for storage and tanning, or eat it if you're desperate enough.", - "price": 330, - "price_postapoc": 100, + "price": "3 USD 30 cent", + "price_postapoc": "1 USD", "material": [ "fur", "flesh" ], "flags": [ "NO_SALVAGE", "TRADER_AVOID" ], "fun": -24 diff --git a/data/mods/Aftershock/items/comestibles/bug_brew.json b/data/mods/Aftershock/items/comestibles/bug_brew.json index febf08cf4652c..7477f1b5b65db 100644 --- a/data/mods/Aftershock/items/comestibles/bug_brew.json +++ b/data/mods/Aftershock/items/comestibles/bug_brew.json @@ -13,8 +13,8 @@ "quench": -10, "healthy": -2, "calories": 400, - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "volume": "250 ml", "phase": "liquid", "charges": 5, @@ -35,8 +35,8 @@ "quench": -10, "healthy": -2, "calories": 1, - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "volume": "250 ml", "phase": "liquid", "charges": 100, @@ -56,8 +56,8 @@ "symbol": "~", "quench": -5, "fun": 4, - "price": 4, - "price_postapoc": 10, + "price": "4 cent", + "price_postapoc": "10 cent", "volume": "250 ml", "charges": 5, "phase": "liquid", @@ -78,8 +78,8 @@ "quench": -10, "healthy": -2, "calories": 260, - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "spoils_in": "12 days", "volume": "250 ml", "phase": "liquid", diff --git a/data/mods/Aftershock/items/comestibles/cheap_food.json b/data/mods/Aftershock/items/comestibles/cheap_food.json index 5fc4c38ac695e..3d50b14d7eab5 100644 --- a/data/mods/Aftershock/items/comestibles/cheap_food.json +++ b/data/mods/Aftershock/items/comestibles/cheap_food.json @@ -28,7 +28,7 @@ "calories": 400, "healthy": 3, "description": "Nutriment that has been dissolved in water to dilute its taste. Unnervingly resembles spoiled milk.", - "price": 10000, + "price": "100 USD", "looks_like": "bleach", "fun": -2, "vitamins": [ [ "calcium", 24, 48 ], [ "iron", 24, 48 ], [ "vitC", 24, 48 ], [ "bad_food", 10 ] ] @@ -53,7 +53,7 @@ "healthy": -6, "addiction_potential": 6, "description": "Spite Soda, the only soda native to the Salus system. 'Stay Frosty, Drink Spite'. Visitors to the Salus system who have drank Spite Soda have described it as the taste of transhumanist dialectical materialism.", - "price": 1000, + "price": "10 USD", "looks_like": "diesel", "container": "can_drink", "material": [ "alcohol" ], diff --git a/data/mods/Aftershock/items/comestibles/comestibles.json b/data/mods/Aftershock/items/comestibles/comestibles.json index 6277770dbec94..d95dfe8d321be 100644 --- a/data/mods/Aftershock/items/comestibles/comestibles.json +++ b/data/mods/Aftershock/items/comestibles/comestibles.json @@ -37,7 +37,7 @@ "comestible_type": "MED", "flags": [ "EATEN_COLD" ], "phase": "solid", - "price": 2500 + "price": "25 USD" }, { "id": "cream_greater_prot_cold", @@ -54,7 +54,7 @@ "comestible_type": "MED", "flags": [ "EATEN_COLD" ], "phase": "solid", - "price": 5000 + "price": "50 USD" }, { "type": "COMESTIBLE", diff --git a/data/mods/Aftershock/items/containers.json b/data/mods/Aftershock/items/containers.json index cff97aa62ee88..49b15c95932c7 100644 --- a/data/mods/Aftershock/items/containers.json +++ b/data/mods/Aftershock/items/containers.json @@ -6,7 +6,7 @@ "description": "This is a metal box containing survival supplies, often found within ships and their escape pods. Its cyan highlights indicate that it's a simpler Type II kit, and that it would only be helpful in a planet whose atmosphere and gravity are within two deviations from Earth's.", "weight": "1022 g", "volume": "22 L", - "price_postapoc": 3000, + "price_postapoc": "30 USD", "to_hit": -2, "symbol": ",", "color": "red", @@ -19,7 +19,7 @@ "description": "A standard orbital cargo transfer container. Its faceted corners are adorned with the livery of company you don't recognize.", "weight": "2710 g", "volume": "30 L", - "price_postapoc": 3000, + "price_postapoc": "30 USD", "to_hit": -2, "symbol": "0", "color": "light_red", diff --git a/data/mods/Aftershock/items/corpses.json b/data/mods/Aftershock/items/corpses.json index 7a4afcaece000..ea33ca6e061e4 100644 --- a/data/mods/Aftershock/items/corpses.json +++ b/data/mods/Aftershock/items/corpses.json @@ -18,8 +18,8 @@ "name": { "str": "broken Sentinel-lx", "str_pl": "broken Sentinels-lx" }, "category": "other", "description": "The irreparably broken remains of a Sentinel-lx. Could be gutted for valuable parts.", - "price": 30000, - "price_postapoc": 1000, + "price": "300 USD", + "price_postapoc": "10 USD", "material": [ "steel", "plastic" ], "weight": "140000 g", "volume": "62500 ml", @@ -35,7 +35,7 @@ "name": { "str": "broken bloodhound drone" }, "category": "other", "description": "This bloodhound won't be chasing anyone anymore. Could be gutted for parts.", - "price": 1000, + "price": "10 USD", "material": [ "steel", "plastic" ], "weight": "31520 g", "volume": "15 L", @@ -186,8 +186,8 @@ "name": "broken disarmed advanced robot", "category": "other", "description": "A broken advanced robot. Its internal weapons have been removed. Could be gutted for parts or crafted into a salvaged robot.", - "price": 30000, - "price_postapoc": 1000, + "price": "300 USD", + "price_postapoc": "10 USD", "material": [ "superalloy", "plastic" ], "weight": "140 kg", "volume": "62500 ml", @@ -244,8 +244,8 @@ "name": "broken disarmed military bot", "category": "other", "description": "A broken defense robot. Its internal weapons have been removed. Could be gutted for parts or crafted into a salvaged robot.", - "price": 30000, - "price_postapoc": 1000, + "price": "300 USD", + "price_postapoc": "10 USD", "material": [ "steel", "plastic" ], "weight": "140 kg", "volume": "62500 ml", @@ -262,8 +262,8 @@ "name": "broken disarmed defense bot", "category": "other", "description": "A broken defense robot. Its internal weapons have been removed. Could be gutted for parts or crafted into a salvaged robot.", - "price": 30000, - "price_postapoc": 1000, + "price": "300 USD", + "price_postapoc": "10 USD", "material": [ "steel", "plastic" ], "weight": "140 kg", "volume": "62500 ml", @@ -280,8 +280,8 @@ "name": "broken surgical droid", "category": "other", "description": "A broken surgical robot, now crumpled and inert. Could be stripped down for parts.", - "price": 30000, - "price_postapoc": 1000, + "price": "300 USD", + "price_postapoc": "10 USD", "material": [ "steel", "plastic" ], "weight": "140 kg", "volume": "62500 ml", @@ -297,8 +297,8 @@ "name": { "str": "broken eyebot" }, "category": "other", "description": "A broken eyebot. Much less threatening now that it won't be calling for backup. Could be gutted for parts.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "31520 g", "volume": "15 L", @@ -314,8 +314,8 @@ "name": { "str": "broken police bot" }, "category": "other", "description": "A broken police bot. Much less threatening now that it's quiet and still. Could be gutted for parts.", - "price": 30000, - "price_postapoc": 10, + "price": "300 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "140000 g", "volume": "62500 ml", @@ -331,8 +331,8 @@ "name": { "str": "broken riot control bot" }, "category": "other", "description": "A broken riot control bot. Much less threatening now that it's out of gas. Could be gutted for parts.", - "price": 30000, - "price_postapoc": 10, + "price": "300 USD", + "price_postapoc": "10 cent", "material": [ "steel", "plastic" ], "weight": "140000 g", "volume": "62500 ml", diff --git a/data/mods/Aftershock/items/crafting_scrap/abstract_scrap.json b/data/mods/Aftershock/items/crafting_scrap/abstract_scrap.json index fca57bcc6ee88..1ec06c6413a9e 100644 --- a/data/mods/Aftershock/items/crafting_scrap/abstract_scrap.json +++ b/data/mods/Aftershock/items/crafting_scrap/abstract_scrap.json @@ -6,8 +6,8 @@ "name": { "str": "ur-scrap" }, "description": "A small techno doodad.", "looks_like": "e_scrap", - "price": 500, - "price_postapoc": 1000, + "price": "5 USD", + "price_postapoc": "10 USD", "weight": "250 g", "volume": "50 ml", "to_hit": -3, @@ -19,31 +19,31 @@ "abstract": "afs_scrap_2", "name": { "str": "ur-scrap" }, "copy-from": "afs_scrap_1", - "price": 5000, - "price_postapoc": 10000 + "price": "50 USD", + "price_postapoc": "100 USD" }, { "type": "GENERIC", "abstract": "afs_scrap_3", "name": { "str": "ur-scrap" }, "copy-from": "afs_scrap_1", - "price": 5000, - "price_postapoc": 50000 + "price": "50 USD", + "price_postapoc": "500 USD" }, { "type": "GENERIC", "abstract": "afs_scrap_4", "name": { "str": "ur-scrap" }, "copy-from": "afs_scrap_1", - "price": 50000, - "price_postapoc": 100000 + "price": "500 USD", + "price_postapoc": "1 kUSD" }, { "type": "GENERIC", "abstract": "afs_scrap_5", "name": { "str": "ur-scrap" }, "copy-from": "afs_scrap_1", - "price": 500000, - "price_postapoc": 1000000 + "price": "5 kUSD", + "price_postapoc": "10 kUSD" } ] diff --git a/data/mods/Aftershock/items/crafting_scrap/heat_transfer_scrap.json b/data/mods/Aftershock/items/crafting_scrap/heat_transfer_scrap.json index accb4c7f4158f..4cf6aa0918de8 100644 --- a/data/mods/Aftershock/items/crafting_scrap/heat_transfer_scrap.json +++ b/data/mods/Aftershock/items/crafting_scrap/heat_transfer_scrap.json @@ -22,8 +22,8 @@ "volume": "250 ml", "charges": 1, "phase": "liquid", - "price": 5000, - "price_postapoc": 10000, + "price": "50 USD", + "price_postapoc": "100 USD", "quench": -120, "healthy": -60, "fun": -40 @@ -60,8 +60,8 @@ "name": { "str": "salvaged coolant system" }, "description": "Rusty fluid reservoirs and decomposing high-pressure tubing containing still usable supercritical coolant. You could disassemble it to separate the liquid coolant from the rest of the scrap.", "looks_like": "scrap", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "weight": "4500 g", "volume": "3200 ml" } diff --git a/data/mods/Aftershock/items/currency.json b/data/mods/Aftershock/items/currency.json index f47e6d865c33d..d6ce5c5672607 100644 --- a/data/mods/Aftershock/items/currency.json +++ b/data/mods/Aftershock/items/currency.json @@ -2,8 +2,8 @@ { "type": "AMMO", "id": "money", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "//": "= one cent, gives correct prices for cash cards", "name": { "str": "cent" }, "symbol": "=", diff --git a/data/mods/Aftershock/items/ethereal.json b/data/mods/Aftershock/items/ethereal.json index f53172ae8f5fc..eadfe5b5e08b0 100644 --- a/data/mods/Aftershock/items/ethereal.json +++ b/data/mods/Aftershock/items/ethereal.json @@ -6,7 +6,7 @@ "description": "A thick layer of something that smells worse than walrus fat. But it keeps you warm.", "weight": "1g", "volume": "1ml", - "price": 3646, + "price": "36 USD 46 cent", "symbol": "o", "warmth": 150, "color": "green", @@ -37,7 +37,7 @@ "description": "The last word in cold snap protection designed to give short term protection in the event of a suit breach in vacuum.", "weight": "1g", "volume": "1ml", - "price": 3646, + "price": "36 USD 46 cent", "symbol": "o", "warmth": 150, "color": "green", diff --git a/data/mods/Aftershock/items/frankenstein_items.json b/data/mods/Aftershock/items/frankenstein_items.json index 7583425aa6ccc..3e70b65771a51 100644 --- a/data/mods/Aftershock/items/frankenstein_items.json +++ b/data/mods/Aftershock/items/frankenstein_items.json @@ -6,7 +6,7 @@ "description": "This stitched together abomination in human form lies still and waiting for you to give it the spark of life. In all likelihood you are the monster.", "weight": "68 kg", "volume": "62 L", - "price": 600000, + "price": "6 kUSD", "to_hit": -3, "material": "flesh", "symbol": ";", diff --git a/data/mods/Aftershock/items/grenades.json b/data/mods/Aftershock/items/grenades.json index a62283e745e74..2c62910eb0b75 100644 --- a/data/mods/Aftershock/items/grenades.json +++ b/data/mods/Aftershock/items/grenades.json @@ -138,8 +138,8 @@ "description": "This is a military-grade cryo hand grenade. Once it explodes it spreads exotic highly-radioactive shrapnel. Use this item to pull the pin and light the fuse. You will then have five seconds before it explodes; throwing it would be a good idea.", "weight": "397 g", "volume": "250 ml", - "price": 1500, - "price_postapoc": 1000, + "price": "15 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -163,8 +163,8 @@ "description": "This is an active grenade, and will explode any second now. Once it explodes it spreads exotic highly-thermodynamic shrapnel. Better throw it!", "weight": "397 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "superalloy" ], "symbol": "*", diff --git a/data/mods/Aftershock/items/gun/25mm.json b/data/mods/Aftershock/items/gun/25mm.json index 31ace3f01d359..a787e3b5dcccd 100644 --- a/data/mods/Aftershock/items/gun/25mm.json +++ b/data/mods/Aftershock/items/gun/25mm.json @@ -9,7 +9,7 @@ "weight": "2700 g", "volume": "2800 ml", "longest_side": "736 mm", - "price": 550000, + "price": "5 kUSD 500 USD", "to_hit": -3, "material": [ "superalloy", "plastic" ], "symbol": "(", diff --git a/data/mods/Aftershock/items/gun/5x50.json b/data/mods/Aftershock/items/gun/5x50.json index e95cdef06074d..a5ceb6484a8c4 100644 --- a/data/mods/Aftershock/items/gun/5x50.json +++ b/data/mods/Aftershock/items/gun/5x50.json @@ -24,8 +24,8 @@ "weight": "1302 g", "volume": "1250 ml", "longest_side": "690 mm", - "price": 2320000, - "price_postapoc": 8000, + "price": "23 kUSD 200 USD", + "price_postapoc": "80 USD", "to_hit": -2, "material": [ "superalloy", "ceramic" ], "symbol": "(", @@ -66,8 +66,8 @@ "weight": "682 g", "volume": "620 ml", "longest_side": "255 mm", - "price": 1200000, - "price_postapoc": 8000, + "price": "12 kUSD", + "price_postapoc": "80 USD", "to_hit": -2, "material": [ "superalloy", "ceramic" ], "symbol": "(", diff --git a/data/mods/Aftershock/items/gun/7.50mm.json b/data/mods/Aftershock/items/gun/7.50mm.json index cfaaceea7a829..c3ff62001e175 100644 --- a/data/mods/Aftershock/items/gun/7.50mm.json +++ b/data/mods/Aftershock/items/gun/7.50mm.json @@ -36,7 +36,7 @@ "copy-from": "rifle_22", "name": { "str": "landfall survival gun" }, "description": "A lightweight, bolt-action gun that is barely more than a 7.50mm barrel mounted within a flimsy metal assembly. Cheaply made and outdated in all respects, it's only useful in the most extenuating of circumstances.", - "price": 5000, + "price": "50 USD", "material": [ "steel", "plastic" ], "flags": [ "NEVER_JAMS", "RELOAD_EJECT" ], "dispersion": 250, @@ -58,7 +58,7 @@ "weight": "7500 g", "volume": "10610 ml", "longest_side": "1035 mm", - "price": 750000, + "price": "7 kUSD 500 USD", "to_hit": -1, "material": [ "superalloy", "plastic" ], "symbol": "(", @@ -103,7 +103,7 @@ "weight": "3170 g", "volume": "3100 ml", "longest_side": "630 mm", - "price": 125000, + "price": "1 kUSD 250 USD", "to_hit": -1, "material": [ "superalloy", "plastic" ], "ranged_damage": { "damage_type": "bullet", "amount": -7 }, @@ -154,8 +154,8 @@ "volume": "3817 ml", "longest_side": "511 mm", "barrel_length": "264 mm", - "price": 350000, - "price_postapoc": 3500, + "price": "3 kUSD 500 USD", + "price_postapoc": "35 USD", "to_hit": -2, "material": [ "superalloy", "plastic" ], "symbol": "(", diff --git a/data/mods/Aftershock/items/gun/8x40mm.json b/data/mods/Aftershock/items/gun/8x40mm.json index 50654688abdf9..ed3cf44720b05 100644 --- a/data/mods/Aftershock/items/gun/8x40mm.json +++ b/data/mods/Aftershock/items/gun/8x40mm.json @@ -9,8 +9,8 @@ "weight": "1204 g", "volume": "750 ml", "longest_side": "20 cm", - "price": 210000, - "price_postapoc": 8000, + "price": "2 kUSD 100 USD", + "price_postapoc": "80 USD", "material": [ "superalloy", "ceramic" ], "symbol": "(", "color": "dark_gray", diff --git a/data/mods/Aftershock/items/gun/advanced.json b/data/mods/Aftershock/items/gun/advanced.json index 9781787a88ebc..a48dc79d444f4 100644 --- a/data/mods/Aftershock/items/gun/advanced.json +++ b/data/mods/Aftershock/items/gun/advanced.json @@ -10,7 +10,7 @@ "color": "magenta", "weight": "5 kg", "volume": "2500 ml", - "price": 0, + "price": "0 cent", "durability": 10, "reload": 100, "flags": [ "NEVER_JAMS", "TRADER_AVOID" ] diff --git a/data/mods/Aftershock/items/gun/foam.json b/data/mods/Aftershock/items/gun/foam.json index 197bb6a9653cd..08f6fc3e35fc7 100644 --- a/data/mods/Aftershock/items/gun/foam.json +++ b/data/mods/Aftershock/items/gun/foam.json @@ -8,8 +8,8 @@ "description": "A stubby industrial tool used to shoot expanding foam. Using it as a weapon might require some creative thinking.", "weight": "3904 g", "volume": "750 ml", - "price": 13000, - "price_postapoc": 5000, + "price": "130 USD", + "price_postapoc": "50 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "(", diff --git a/data/mods/Aftershock/items/gun/laser.json b/data/mods/Aftershock/items/gun/laser.json index b2dfbc34a38aa..5151eb4eb5f35 100644 --- a/data/mods/Aftershock/items/gun/laser.json +++ b/data/mods/Aftershock/items/gun/laser.json @@ -5,7 +5,7 @@ "copy-from": "v29", "name": { "str": "wrist-stunner" }, "description": "A severed robotic hand from a Wraitheon Sentinel. The powerful electro-laser stun gun embed on its wrist is still functional, and can be used when connected to an UPS.", - "price": 720000, + "price": "7 kUSD 200 USD", "to_hit": -2, "material": [ "superalloy", "plastic" ], "color": "cyan", @@ -48,8 +48,8 @@ "description": "This is an x-ray laser stripped from a TX-5LR Cerberus laser turret that has been modified to use UPS power for firing. Single shot then requires reloading. Nicknamed the 'Tin Can Killer' for its ability to destroy power armor.", "weight": "5140 g", "volume": "1500 ml", - "price": 400000, - "price_postapoc": 8000, + "price": "4 kUSD", + "price_postapoc": "80 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -305,7 +305,7 @@ "description": "This 'energy weapon' appears to be haphazardly jury-rigged from commercially available electronics. It has a radar dish placed where a barrel would be, and the frame of a weapon is covered in a mesh of wiring. Despite its appearance, this weapon can temporarily stun robots if you manage to hit their sensors.", "weight": "4050 g", "volume": "4500 ml", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "range": 20, "ammo": [ "battery" ], "ammo_to_fire": 0, diff --git a/data/mods/Aftershock/items/gun/projectile.json b/data/mods/Aftershock/items/gun/projectile.json index 72929a6cc392c..e30b6d1c19821 100644 --- a/data/mods/Aftershock/items/gun/projectile.json +++ b/data/mods/Aftershock/items/gun/projectile.json @@ -5,7 +5,7 @@ "name": { "str": "bionic skullgun" }, "description": "Bionic one-shot subdermal 10mm pistol integrated with your head.", "volume": "80 ml", - "price": 0, + "price": "0 cent", "to_hit": -2, "material": [ "superalloy", "plastic" ], "symbol": "(", @@ -32,8 +32,8 @@ "weight": "4213 g", "volume": "2500 ml", "longest_side": "1005 mm", - "price": 550000, - "price_postapoc": 50000, + "price": "5 kUSD 500 USD", + "price_postapoc": "500 USD", "to_hit": -3, "material": [ "steel", "wood" ], "symbol": "(", diff --git a/data/mods/Aftershock/items/gunmods/shotguns.json b/data/mods/Aftershock/items/gunmods/shotguns.json index 5cab97f2b47d1..d27ac0698afd7 100644 --- a/data/mods/Aftershock/items/gunmods/shotguns.json +++ b/data/mods/Aftershock/items/gunmods/shotguns.json @@ -9,8 +9,8 @@ "volume": "150 ml", "longest_side": "4 cm", "integral_longest_side": "1 cm", - "price": 78000, - "price_postapoc": 1500, + "price": "780 USD", + "price_postapoc": "15 USD", "material": [ "steel" ], "symbol": ":", "color": "dark_gray", @@ -30,8 +30,8 @@ "integral_weight": "410 g", "volume": "1500 ml", "integral_volume": "310 ml", - "price": 72000, - "price_postapoc": 500, + "price": "720 USD", + "price_postapoc": "5 USD", "install_time": "5 m", "material": [ "steel" ], "symbol": ":", diff --git a/data/mods/Aftershock/items/gunmods/sights.json b/data/mods/Aftershock/items/gunmods/sights.json index 170f359fc13fc..4ffb9d9f0bfa3 100644 --- a/data/mods/Aftershock/items/gunmods/sights.json +++ b/data/mods/Aftershock/items/gunmods/sights.json @@ -8,8 +8,8 @@ "volume": "10 ml", "integral_volume": "0 ml", "integral_weight": "0 g", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "install_time": "10 m", "material": [ "steel" ], "symbol": ":", diff --git a/data/mods/Aftershock/items/id_cards.json b/data/mods/Aftershock/items/id_cards.json index cfef9d018b51f..ad41e586a0b72 100644 --- a/data/mods/Aftershock/items/id_cards.json +++ b/data/mods/Aftershock/items/id_cards.json @@ -6,9 +6,9 @@ "color": "blue", "name": { "str": "ID card" }, "description": "This is your personal ID card. The reverse side describes the protocol for using it; this grants you access to the barracks locker room.", - "price": 60000, + "price": "600 USD", "flags": [ "AFS_CS_LOCKER_CARD" ], - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "6 g", "volume": "5 ml", @@ -22,9 +22,9 @@ "color": "red", "name": { "str": "ID card" }, "description": "This is an ID card you found. The reverse side describes the protocol for using it; this grants you access to the barracks locker room.", - "price": 60000, + "price": "600 USD", "flags": [ "AFS_CS_ARMORY_CARD" ], - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "6 g", "volume": "5 ml", @@ -38,9 +38,9 @@ "color": "yellow", "name": { "str": "ID card" }, "description": "This is an ID card you found. The reverse side describes the protocol for using it; this grants you access to the workshop's exosuit storage bay.", - "price": 60000, + "price": "600 USD", "flags": [ "AFS_CS_EXOBAY_CARD" ], - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "6 g", "volume": "5 ml", diff --git a/data/mods/Aftershock/items/inactiverobot.json b/data/mods/Aftershock/items/inactiverobot.json index e0ea33cf5dda5..f0d1645ccc51d 100644 --- a/data/mods/Aftershock/items/inactiverobot.json +++ b/data/mods/Aftershock/items/inactiverobot.json @@ -6,7 +6,7 @@ "description": "This is a horrifying monstrosity. Using this item is cannibalism in all but taste and involves turning it on and placing it on the ground, where it will attach itself. If reprogrammed and rewired successfully the turret will identify you as a friendly, and attack all enemies with its revolving laser cannons.", "weight": "40750 g", "volume": "30 L", - "price": 600000, + "price": "6 kUSD", "to_hit": -3, "material": [ "alien_resin" ], "symbol": ";", @@ -32,7 +32,7 @@ "weight": "200000 g", "//": "cheating a bit with the volume due to lack of proper vehicle storage options", "volume": "250 L", - "price": 100000000, + "price": "1000 kUSD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -59,7 +59,7 @@ "weight": "190000 g", "//": "cheating a bit with the volume due to lack of proper vehicle storage options", "volume": "250 L", - "price": 100000000, + "price": "1000 kUSD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -84,7 +84,7 @@ "description": "This is an inactive Honda Regnal. Using this item involves placing it on the ground, wondering how it fuels its flamethrower and turning it on. If reprogrammed and rewired successfully the tribot will then identify you as an ally, roam around or follow you, and impale hostiles with its spiked cable weapons.", "weight": "120000 g", "volume": "92500 ml", - "price": 100000000, + "price": "1000 kUSD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -110,7 +110,7 @@ "name": { "str": "broken tribot" }, "category": "other", "description": "A broken tribot. Now that its legs lie broken and immobile, the world seems a little less threatening. Could be gutted for parts.", - "price": 1000, + "price": "10 USD", "material": [ "steel", "plastic" ], "weight": "430000 g", "volume": "187500 ml", @@ -126,7 +126,7 @@ "name": { "str": "broken tank drone" }, "category": "other", "description": "A broken tank drone. Still looks intimidating despite being permanently inoperative, possibly due to the sheer size and mass. Could be gutted for parts.", - "price": 1000, + "price": "10 USD", "material": [ "steel", "plastic" ], "weight": "1223850 g", "volume": "875 L", @@ -142,7 +142,7 @@ "name": { "str": "broken chickenbot" }, "category": "other", "description": "A broken chicken walker. Still looks intimidating despite being permanently inoperative, possibly due to the sheer size and mass. Could be gutted for parts.", - "price": 1000, + "price": "10 USD", "material": [ "steel", "plastic" ], "weight": "1023850 g", "//": "Former volume: 1100 L. Adjusted to 1000L so it can actually be placed. TODO(?): Re-add old volume with some sort of flag", @@ -158,7 +158,7 @@ "description": "Crouched and dead still, this armored luxurious robot resembles an ancient knight immersed in deep prayer. If reprogrammed and rewired successfully the robot will identify you as a friendly, and will protect you from nearby foes.", "weight": "40750 g", "volume": "30 L", - "price": 600000, + "price": "6 kUSD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -181,7 +181,7 @@ "description": "An inactive Kabura-ya hunter drone, folded for ease of storage. If deployed, it will seek and fly to the closest enemy before detonating. Unlike most robots, its activation depends on a successful throw, and not on your computer skill.", "weight": "550 g", "volume": "250 ml", - "price": 5000, + "price": "50 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -205,7 +205,7 @@ "description": "This is an inactive bloodhound drone. If successfully deployed, it will fly towards enemy targets and highlight them with a powerful spotlight.", "weight": "5400 g", "volume": "750 ml", - "price": 60000, + "price": "600 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ",", @@ -231,8 +231,8 @@ "description": "This is an inactive laser turret. Using this item involves turning it on and placing it on the ground, where it will attach itself. If reprogrammed and rewired successfully the turret will identify you as a friendly, and attack all enemies with its replaceable laser cannons. It requires ammunition tubes to fire.", "weight": "40750 g", "volume": "30 L", - "price": 600000, - "price_postapoc": 12000, + "price": "6 kUSD", + "price_postapoc": "120 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", @@ -271,8 +271,8 @@ "material": [ "steel", "plastic" ], "weight": "70 kg", "volume": "50 L", - "price": 10000, - "price_postapoc": 10000, + "price": "100 USD", + "price_postapoc": "100 USD", "to_hit": -3, "symbol": ";", "color": "dark_gray", @@ -292,8 +292,8 @@ "type": "TOOL", "name": "inactive utilibot", "looks_like": "mon_cleanerbot", - "price": 10000, - "price_postapoc": 10000, + "price": "100 USD", + "price_postapoc": "100 USD", "weight": "140 kg", "volume": "62500 ml", "to_hit": -3, @@ -310,8 +310,8 @@ "description": "This is an inactive manhack. Manhacks are fist-sized robots that fly through the air. They are covered with whirring blades and attack by throwing themselves against their target. Use this item to reprogram and activate the manhack. Electronics and computer skill determines if the targeting matrix is reprogrammed successfully.", "weight": "5400 g", "volume": "750 ml", - "price": 10000, - "price_postapoc": 10000, + "price": "100 USD", + "price_postapoc": "100 USD", "to_hit": -3, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -346,8 +346,8 @@ "material": [ "steel", "kevlar" ], "weight": "140 kg", "volume": "62500 ml", - "price": 10000, - "price_postapoc": 10000, + "price": "100 USD", + "price_postapoc": "100 USD", "to_hit": -3, "symbol": ";", "color": "light_gray", @@ -377,8 +377,8 @@ "material": [ "steel", "plastic" ], "weight": "140 kg", "volume": "62500 ml", - "price": 10000, - "price_postapoc": 10000, + "price": "100 USD", + "price_postapoc": "100 USD", "to_hit": -3, "symbol": ";", "color": "light_gray", @@ -393,8 +393,8 @@ "material": [ "steel", "plastic" ], "weight": "62650 g", "volume": "30 L", - "price": 10000, - "price_postapoc": 10000, + "price": "100 USD", + "price_postapoc": "100 USD", "to_hit": -3, "symbol": ";", "color": "dark_gray", @@ -457,8 +457,8 @@ "type": "TOOL", "name": "inactive eyebot", "looks_like": "broken_eyebot", - "price": 10000, - "price_postapoc": 10000, + "price": "100 USD", + "price_postapoc": "100 USD", "material": [ "steel", "plastic" ], "weight": "62650 g", "volume": "30 L", @@ -492,8 +492,8 @@ "description": "This is an inactive laser turret. Using this item involves turning it on and placing it on the ground, where it will attach itself. If reprogrammed and rewired successfully the turret will identify you as a friendly, and attack all enemies with its revolving laser cannons. It requires sunlight in order to fire.", "weight": "40750 g", "volume": "30 L", - "price": 600000, - "price_postapoc": 12000, + "price": "6 kUSD", + "price_postapoc": "120 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", @@ -516,8 +516,8 @@ "description": "An inactive eyebot. Using this item involves turning it on and launching the UAV. If reprogrammed and rewired successfully, the eyebot will then keep watch for intruders.", "weight": "40750 g", "volume": "30 L", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -543,8 +543,8 @@ "description": "An inactive police robot. Using this item involves placing it on the ground and turning it on. If reprogrammed and rewired successfully, the police bot will then identify you as law enforcement, roam around or follow you, and attempt to detain lawbreakers.", "weight": "81500 g", "volume": "62500 ml", - "price": 100000, - "price_postapoc": 500, + "price": "1 kUSD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -570,8 +570,8 @@ "description": "An inactive riot control bot. Using this item involves placing it on the ground and turning it on. If reprogrammed and rewired successfully, the robot will bring order and peace to the horde.", "weight": "81500 g", "volume": "62500 ml", - "price": 35000, - "price_postapoc": 1500, + "price": "350 USD", + "price_postapoc": "15 USD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", diff --git a/data/mods/Aftershock/items/items.json b/data/mods/Aftershock/items/items.json index 65bfd141b70f8..cdf4aef99b8f8 100644 --- a/data/mods/Aftershock/items/items.json +++ b/data/mods/Aftershock/items/items.json @@ -4,8 +4,8 @@ "id": "crypto_coin", "name": { "str": "Crypto coin" }, "description": "PrepNet had been heavily involved in avoiding taxes by using untraceable internet currencies. These however are physical coins with random numbers sequences embossed on them and RFID chips inside.", - "price": 12000, - "price_postapoc": 15000, + "price": "120 USD", + "price_postapoc": "150 USD", "//": "The coins would be worthless but the PrepNet Phyle still retains some manufacturing capacity", "weight": "1 g", "volume": "1 ml", @@ -22,8 +22,8 @@ "weight": "340 g", "volume": "1 L", "category": "spare_parts", - "price": 0, - "price_postapoc": 50, + "price": "0 cent", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "plastic", "aluminum" ], "symbol": ";", @@ -38,8 +38,8 @@ "description": "Time and the elements have reduced them to a mound of filthy ribbons.", "weight": "1175 g", "volume": "3 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "cotton" ], "symbol": "[", @@ -54,7 +54,7 @@ "name": { "str_sp": "scrap titanium" }, "category": "spare_parts", "description": "A piece of light titanium, usable for crafting or repairs.", - "price": 1000, + "price": "10 USD", "material": [ "titanium" ], "looks_like": "scrap", "weight": "450 g", @@ -70,7 +70,7 @@ "looks_like": "medium_atomic_battery_cell", "weight": "30 g", "volume": "250 ml", - "price": 0, + "price": "0 cent", "material": [ "iron" ], "symbol": "*", "color": "light_green", @@ -120,8 +120,8 @@ "description": "The Rivtech Churninator 4000, the only churn to be banned by 13 religious sects. The legs are currently folded up for travel. Unlike a standard churn that requires cream separated from raw milk this churn requires only raw milk, salt and a healthy respect for glowing objects.", "weight": "6464 g", "volume": "11356 ml", - "price": 5000, - "price_postapoc": 45000, + "price": "50 USD", + "price_postapoc": "450 USD", "looks_like": "still", "symbol": "u", "color": "light_green", @@ -139,7 +139,7 @@ "description": "This is a crafting_pseudo_item if you have it something is wrong.", "weight": "6464 g", "volume": "11356 ml", - "price": 20000, + "price": "200 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "qualities": [ [ "CONTAIN", 1 ], [ "CHURN", 2 ] ], @@ -157,8 +157,8 @@ "weight": "1 g", "//": "Density 4.506g/cm³ ~ 1.127kg/250ml @ stack 1000 = 1g/unit", "volume": "50 ml", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "count": 100, "stack_size": 200, "material": [ "titanium" ], @@ -172,8 +172,8 @@ "type": "GENERIC", "name": { "str": "titanium implant" }, "description": "An internal implant to correct a musculoskeletal problem such as a bad hip or back. It is made of titanium due to its biocompatibility.", - "price": 9500, - "price_postapoc": 1500, + "price": "95 USD", + "price_postapoc": "15 USD", "weight": "2250 g", "volume": "500 ml", "to_hit": -3, @@ -186,8 +186,8 @@ "type": "GENERIC", "name": { "str": "titanium tooth", "str_pl": "titanium teeth" }, "description": "A dental implant made of pure titanium, used to replace teeth due to its biocompatibility and durability.", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "weight": "10 g", "volume": "2 ml", "to_hit": -3, @@ -202,8 +202,8 @@ "description": "A thick, masculine watch made out of titanium. It is durable, light-weight and water-resistant, an excellent watch to have in a hostile environment.", "weight": "50 g", "volume": "250 ml", - "price": 20000, - "price_postapoc": 3000, + "price": "200 USD", + "price_postapoc": "30 USD", "to_hit": -1, "material": [ "titanium" ], "symbol": "[", @@ -219,8 +219,8 @@ "description": "A thick, masculine ring made out of titanium. Made in a variety of styles and finishes, they're valued for their durability.", "weight": "13 g", "volume": "5 ml", - "price": 700, - "price_postapoc": 500, + "price": "7 USD", + "price_postapoc": "5 USD", "material": [ "titanium" ], "symbol": "[", "color": "light_gray", @@ -233,8 +233,8 @@ "description": "This transparent slate of computation glass was once an incredibly versatile hypercloud access point. With all its functions dependent on a now broken FTL communications network, it's not really useful for anything.", "weight": "80 g", "volume": "80 ml", - "price": 700, - "price_postapoc": 500, + "price": "7 USD", + "price_postapoc": "5 USD", "material": [ "glass" ], "symbol": "[", "color": "light_gray", diff --git a/data/mods/Aftershock/items/lore_items.json b/data/mods/Aftershock/items/lore_items.json index 3f7869e9aa7a6..58b1d3d839338 100644 --- a/data/mods/Aftershock/items/lore_items.json +++ b/data/mods/Aftershock/items/lore_items.json @@ -8,8 +8,8 @@ "name": { "str": "personal message card" }, "snippet_category": "afs_personal_card", "description": "A creased card with images and a personal message.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "weight": "3 g", "volume": "5 ml" diff --git a/data/mods/Aftershock/items/magazine/10mm.json b/data/mods/Aftershock/items/magazine/10mm.json index 1c2b626d1c12d..dcdb43ca3ff88 100644 --- a/data/mods/Aftershock/items/magazine/10mm.json +++ b/data/mods/Aftershock/items/magazine/10mm.json @@ -8,7 +8,7 @@ "weight": "70 g", "volume": "103 ml", "longest_side": "114 mm", - "price": 2400, + "price": "24 USD", "material": [ "plastic", "superalloy" ], "symbol": "#", "color": "light_gray", @@ -25,7 +25,7 @@ "weight": "70 g", "volume": "103 ml", "longest_side": "114 mm", - "price": 3200, + "price": "32 USD", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -43,7 +43,7 @@ "weight": "70 g", "volume": "103 ml", "longest_side": "114 mm", - "price": 2400, + "price": "24 USD", "material": [ "plastic", "superalloy" ], "symbol": "#", "color": "light_gray", diff --git a/data/mods/Aftershock/items/magazine/25mm.json b/data/mods/Aftershock/items/magazine/25mm.json index 64c3ac9736f93..595e94e75a6fb 100644 --- a/data/mods/Aftershock/items/magazine/25mm.json +++ b/data/mods/Aftershock/items/magazine/25mm.json @@ -7,7 +7,7 @@ "description": "A 40-round magazine for use with 25mm firearms.", "weight": "340 g", "volume": "2 L", - "price": 70000, + "price": "700 USD", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", diff --git a/data/mods/Aftershock/items/magazine/5x50.json b/data/mods/Aftershock/items/magazine/5x50.json index 4d83c7ef06f8d..dc7364756eb3c 100644 --- a/data/mods/Aftershock/items/magazine/5x50.json +++ b/data/mods/Aftershock/items/magazine/5x50.json @@ -7,8 +7,8 @@ "description": "A 100-round box magazine for use with 5x50mm flechette firearms. Designated as RMFB100.", "weight": "360 g", "volume": "630ml", - "price": 15000, - "price_postapoc": 750, + "price": "150 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", @@ -25,8 +25,8 @@ "description": "A 50-round box magazine for use with 5x50mm flechette firearms. Designated as RMFB50.", "weight": "240 g", "volume": "315ml", - "price": 12500, - "price_postapoc": 500, + "price": "125 USD", + "price_postapoc": "5 USD", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", diff --git a/data/mods/Aftershock/items/magazine/7.50mm.json b/data/mods/Aftershock/items/magazine/7.50mm.json index eb5334674def3..13e24717ef841 100644 --- a/data/mods/Aftershock/items/magazine/7.50mm.json +++ b/data/mods/Aftershock/items/magazine/7.50mm.json @@ -8,7 +8,7 @@ "weight": "265 g", "volume": "290 ml", "longest_side": "190 mm", - "price": 8000, + "price": "80 USD", "material": [ "superalloy" ], "symbol": "#", "color": "light_gray", @@ -25,7 +25,7 @@ "weight": "1700 g", "volume": "1200 ml", "longest_side": "300 mm", - "price": 14000, + "price": "140 USD", "material": [ "plastic", "superalloy" ], "symbol": "#", "color": "light_gray", @@ -42,8 +42,8 @@ "description": "A speedloader for the MarSec T72 revolver, holds 9 rounds of 7.50mm ammunition.", "weight": "92 g", "volume": "350 ml", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", @@ -61,7 +61,7 @@ "weight": "300 g", "volume": "430 ml", "longest_side": "266 mm", - "price": 9000, + "price": "90 USD", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", diff --git a/data/mods/Aftershock/items/magazine/8x40mm.json b/data/mods/Aftershock/items/magazine/8x40mm.json index 601ae05442828..774c0868db171 100644 --- a/data/mods/Aftershock/items/magazine/8x40mm.json +++ b/data/mods/Aftershock/items/magazine/8x40mm.json @@ -7,8 +7,8 @@ "description": "This speedloader, made by Rivtech for use with the RM99 revolver, can hold 5 rounds of 8x40mm caseless rounds and quickly reload a compatible revolver.", "weight": "92 g", "volume": "250 ml", - "price": 8000, - "price_postapoc": 250, + "price": "80 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "superalloy", "plastic" ], "symbol": "#", "color": "dark_gray", diff --git a/data/mods/Aftershock/items/magazine/alien.json b/data/mods/Aftershock/items/magazine/alien.json index 7fbeaab6184aa..3d7243207006c 100644 --- a/data/mods/Aftershock/items/magazine/alien.json +++ b/data/mods/Aftershock/items/magazine/alien.json @@ -7,7 +7,7 @@ "description": "A conical device salvaged from an alien artifact. Grooves etched on its circular face slowly pulse with purple light.", "weight": "1000 g", "volume": "1225ml", - "price": 100000, + "price": "1 kUSD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", diff --git a/data/mods/Aftershock/items/magazine/foam.json b/data/mods/Aftershock/items/magazine/foam.json index af482b7ea016d..2af6d3a4598da 100644 --- a/data/mods/Aftershock/items/magazine/foam.json +++ b/data/mods/Aftershock/items/magazine/foam.json @@ -7,8 +7,8 @@ "description": "A pressurized 5L canister designed to feed an industrial foam gun.", "weight": "500 g", "volume": "5 L", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/mods/Aftershock/items/mutagen.json b/data/mods/Aftershock/items/mutagen.json index 448061d51f29f..5574a822f0ad7 100644 --- a/data/mods/Aftershock/items/mutagen.json +++ b/data/mods/Aftershock/items/mutagen.json @@ -5,7 +5,7 @@ "type": "COMESTIBLE", "name": { "str_sp": "mi-go mutagenic primer" }, "description": "A super-concentrated mutagen strongly resembling a lava lamp.", - "price": 1000000, + "price": "10 kUSD", "color": "red", "healthy": -4, "use_action": { @@ -21,7 +21,7 @@ "type": "COMESTIBLE", "name": { "str_sp": "mi-go mutagen" }, "description": "An extremely rare mutagen cocktail, it smells of sulfur and glows orange.", - "price": 500000, + "price": "5 kUSD", "use_action": { "type": "consume_drug", "activation_message": "You drink the mi-go mutagen.", @@ -34,7 +34,7 @@ "type": "COMESTIBLE", "name": { "str_sp": "mastodon mutagenic primer" }, "description": "A processed mutagenic primer not for those frightened of this thing they have become.", - "price": 1000000, + "price": "10 kUSD", "color": "red", "healthy": -4, "use_action": { @@ -50,7 +50,7 @@ "type": "COMESTIBLE", "name": { "str_sp": "mastodon mutagen" }, "description": "An extremely rare mutagen cocktail, it seeks to cure what's deep inside.", - "price": 500000, + "price": "5 kUSD", "use_action": { "type": "consume_drug", "activation_message": "You drink the mastodon mutagen.", diff --git a/data/mods/Aftershock/items/robotparts.json b/data/mods/Aftershock/items/robotparts.json index ea64a8a5c4e7d..5b0543b35d94e 100644 --- a/data/mods/Aftershock/items/robotparts.json +++ b/data/mods/Aftershock/items/robotparts.json @@ -8,7 +8,7 @@ "color": "light_gray", "weight": "40000 g", "volume": "20 L", - "price": 200000, + "price": "2 kUSD", "material": [ "steel" ], "category": "spare_parts" }, @@ -21,7 +21,7 @@ "color": "light_gray", "weight": "40000 g", "volume": "70000 ml", - "price": 200000, + "price": "2 kUSD", "material": [ "steel" ], "category": "spare_parts" }, @@ -34,7 +34,7 @@ "color": "light_gray", "weight": "60000 g", "volume": "80000 ml", - "price": 300000, + "price": "3 kUSD", "material": [ "steel" ], "category": "spare_parts" }, @@ -47,7 +47,7 @@ "color": "light_gray", "weight": "150000 g", "volume": "575000 ml", - "price": 1000000, + "price": "10 kUSD", "material": [ "steel" ], "category": "spare_parts" }, @@ -60,7 +60,7 @@ "color": "light_gray", "weight": "40000 g", "volume": "70000 ml", - "price": 200000, + "price": "2 kUSD", "material": [ "steel" ], "category": "spare_parts" }, @@ -120,7 +120,7 @@ "symbol": "c", "weight": "40000 g", "volume": "70000 ml", - "price": 200000, + "price": "2 kUSD", "material": [ "steel" ], "category": "spare_parts", "color": "red_green" @@ -133,7 +133,7 @@ "symbol": "c", "weight": "40000 g", "volume": "70000 ml", - "price": 200000, + "price": "2 kUSD", "material": [ "steel" ], "category": "spare_parts", "color": "red_green" @@ -147,8 +147,8 @@ "color": "light_gray", "weight": "60000 g", "volume": "20 L", - "price": 500000, - "price_postapoc": 250, + "price": "5 kUSD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "category": "spare_parts" } diff --git a/data/mods/Aftershock/items/tool_armor.json b/data/mods/Aftershock/items/tool_armor.json index 130e4a7856518..ba57a50ede183 100644 --- a/data/mods/Aftershock/items/tool_armor.json +++ b/data/mods/Aftershock/items/tool_armor.json @@ -8,8 +8,8 @@ "name": { "str": "cryopod bodyglove" }, "looks_like": "jumpsuit", "description": "A dark orange bodyglove, hundreds of tubes curl over its surface, tracing the contours of human musculature. Meant to control body temperature during prolonged cryopreservation, it could easily keep you comfortable in any earthly climate. Use it to activate its climate control functionality.", - "price": 1500000, - "price_postapoc": 150000, + "price": "15 kUSD", + "price_postapoc": "1 kUSD 500 USD", "material": [ "graphene_weave" ], "weight": "1250 g", "volume": "4500 ml", diff --git a/data/mods/Aftershock/items/tools.json b/data/mods/Aftershock/items/tools.json index 589b089cb9617..0b3ee506c0382 100644 --- a/data/mods/Aftershock/items/tools.json +++ b/data/mods/Aftershock/items/tools.json @@ -6,8 +6,8 @@ "description": "Never charge your phone again with the Rivtech atomic smartphone. Rated for 10 million years of use, this cutting-edge gadget had been on public markets for less than a week when the Cataclysm hit, and their eye-watering price made them a rarity. It includes an alarm clock, a high-resolution camera, and a bright flashlight.", "weight": "300 g", "volume": "50 ml", - "price": 200000, - "price_postapoc": 2500, + "price": "2 kUSD", + "price_postapoc": "25 USD", "material": [ "plastic", "aluminum" ], "looks_like": "cell_phone", "symbol": ";", @@ -193,8 +193,8 @@ "name": { "str": "Wraitheon executive's smartphone" }, "copy-from": "afs_atomic_smartphone", "description": "Your custom crafted atomic smartphone. Most notably a confidential executive-level override program allows you to remotely control most robots.", - "price": 20000000, - "price_postapoc": 250000, + "price": "200 kUSD", + "price_postapoc": "2 kUSD 500 USD", "material": [ "superalloy", "aluminum" ], "use_action": [ { @@ -259,8 +259,8 @@ "name": { "str": "atompot" }, "copy-from": "pressure_cooker", "description": "Rivtech's premiere self-heating kitchen appliance, complete with lid, hand-crafted with the power of the atom to reach any temperature in thirty seconds. As bulky as it is, its plutonium power source means that it can be used to cook an absurd amount of meals without ever worrying about running low on power. Unsurprisingly, sales weren't particularly good because of the prospect of irradiating your food, but internal shielding ensures that only trace amounts find their way into the center.", - "price": 30000, - "price_postapoc": 5000, + "price": "300 USD", + "price_postapoc": "50 USD", "material": [ "steel", "plastic" ], "looks_like": "pot", "symbol": ")", @@ -278,8 +278,8 @@ "weight": "6000 g", "volume": "1500 ml", "longest_side": "20 cm", - "price": 100000, - "price_postapoc": 3000, + "price": "1 kUSD", + "price_postapoc": "30 USD", "to_hit": -2, "material": [ "plastic", "aluminum" ], "qualities": [ [ "BOIL", 1 ] ], @@ -296,8 +296,8 @@ "description": "A huge, gas-powered saw with a diamond blade. If it has gasoline, it can be turned on to turn it into a powerful metal cutting tool.", "weight": "9979 g", "volume": "3 L", - "price": 100000, - "price_postapoc": 10000, + "price": "1 kUSD", + "price_postapoc": "100 USD", "to_hit": -3, "material": [ "steel", "plastic", "diamond" ], "symbol": "/", @@ -330,8 +330,8 @@ "description": "This former power cutter has been lightened and stripped of all those unnecessary safety measures, turning it into a gas-powered killing machine. Use it to turn it on.", "weight": "4301 g", "volume": "2 L", - "price": 100000, - "price_postapoc": 30000, + "price": "1 kUSD", + "price_postapoc": "300 USD", "to_hit": -3, "material": [ "steel", "plastic", "diamond" ], "symbol": "/", @@ -444,8 +444,8 @@ "description": "A modified laptop, now additionally capable of transmitting in the ultra-high frequencies utilized by robots. Activate it to command robots from afar.", "weight": "2721 g", "volume": "1 L", - "price": 10000, - "price_postapoc": 8000, + "price": "100 USD", + "price_postapoc": "80 USD", "material": [ "plastic", "aluminum" ], "symbol": ",", "color": "yellow", @@ -577,8 +577,8 @@ "description": "Matrioshka Fabritechnics created this portable nanotech forge for when expeditions are setting up a basecamp far from population centers. Once deployed it can be used to craft ultratech marvels that otherwise are too minute for human crafting.", "weight": "8464 g", "volume": "11356 ml", - "price": 5000, - "price_postapoc": 45000, + "price": "50 USD", + "price_postapoc": "450 USD", "looks_like": "forge", "symbol": "u", "color": "light_green", @@ -597,7 +597,7 @@ "description": "This is a crafting_pseudo_item if you have it something is wrong.", "weight": "6464 g", "volume": "11356 ml", - "price": 20000, + "price": "200 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "qualities": [ [ "NANO_FORGE", 1 ] ], @@ -631,8 +631,8 @@ "description": "Matrioshka Fabritechnics this device that can create pressures beyond those that create diamonds. Once deployed it can be used to craft ultratech marvels that require substances of singular qualities.", "weight": "8464 g", "volume": "11356 ml", - "price": 5000, - "price_postapoc": 45000, + "price": "50 USD", + "price_postapoc": "450 USD", "looks_like": "kiln", "symbol": "u", "color": "light_green", @@ -649,7 +649,7 @@ "description": "This is a crafting_pseudo_item if you have it something is wrong.", "weight": "6464 g", "volume": "11356 ml", - "price": 20000, + "price": "200 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "qualities": [ [ "DIAMONDPRESS", 1 ] ], @@ -713,8 +713,8 @@ "weight": "900 g", "volume": "1 L", "longest_side": "10 cm", - "price": 6000, - "price_postapoc": 500, + "price": "60 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "superalloy", "ceramic" ], "symbol": ";", diff --git a/data/mods/Aftershock/items/vehicle_items.json b/data/mods/Aftershock/items/vehicle_items.json index b5ee61bfca892..877c1f7a4ef6b 100644 --- a/data/mods/Aftershock/items/vehicle_items.json +++ b/data/mods/Aftershock/items/vehicle_items.json @@ -6,7 +6,7 @@ "description": "A heavy frame outfitted with tie-downs and attachment points for carrying cargo, with additional railings to keep a large machine in place. It is meant to hold large drones and robots for transport. Use it on a suitable robot to capture, use it on an empty tile to release.", "weight": "96 kg", "volume": "62500 ml", - "price": 48000, + "price": "480 USD", "category": "veh_parts", "material": [ "steel", "plastic" ], "symbol": "]", diff --git a/data/mods/Aftershock/items/weapons.json b/data/mods/Aftershock/items/weapons.json index b2f98fae4081d..0f05b588bbf24 100644 --- a/data/mods/Aftershock/items/weapons.json +++ b/data/mods/Aftershock/items/weapons.json @@ -7,8 +7,8 @@ "weight": "760 g", "volume": "2 L", "longest_side": "90 cm", - "price": 100000, - "price_postapoc": 2000, + "price": "1 kUSD", + "price_postapoc": "20 USD", "material": [ "superalloy", "qt_steel" ], "relic_data": { "passive_effects": [ { "id": "afs_ench_esab" } ] }, "symbol": "[", @@ -80,8 +80,8 @@ "color": "white", "name": { "str": "Alien lune" }, "description": "A delicate strand of light links the antipodes of this crescent-shaped device. If the strand is interrupted, the device clanks and shudders before violently emitting a bolt of plasma from its apex.", - "price": 1000000, - "price_postapoc": 20000, + "price": "10 kUSD", + "price_postapoc": "200 USD", "material": [ "superalloy", "qt_steel" ], "flags": [ "FIRE_TWOHAND", "STR_DRAW", "SLOW_WIELD", "WATERPROOF_GUN", "NEVER_JAMS" ], "skill": "archery", @@ -119,8 +119,8 @@ "description": "A huge, heavy metal gauntlet lined with tubing and gauges. Slow and unwieldy, it uses internal pressure to deliver devastating blows, but takes tremendous strength to use effectively. Thanks to an internal microreactor, it doesn't require power of its own.", "weight": "3778 g", "volume": "2 L", - "price": 10000000, - "price_postapoc": 20000, + "price": "100 kUSD", + "price_postapoc": "200 USD", "material": [ "qt_steel" ], "symbol": "[", "looks_like": "gauntlets_chitin", @@ -138,8 +138,8 @@ "description": "These gloves are designed for handling organisms that live in extremely cold temperatures. They can also be used to freeze your foes to death.", "weight": "3778 g", "volume": "2 L", - "price": 10000000, - "price_postapoc": 20000, + "price": "100 kUSD", + "price_postapoc": "200 USD", "material": [ "superalloy" ], "symbol": "[", "looks_like": "gauntlets_chitin", @@ -175,7 +175,7 @@ "name": { "str": "deployed grenade launcher" }, "description": "A grenade launcher mounted onto your right-hand wrist. Less powerful than a proper grenade launcher, but infinitely more portable, and quick to reload.", "volume": "2250 ml", - "price": 0, + "price": "0 cent", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -199,7 +199,7 @@ "color": "green", "name": { "str_sp": "Tankbot Main Gun" }, "description": "The 120mm cannon from a tankbot. If you have this, you'd best be debugging!", - "price": 99999999, + "price": "999 kUSD 999 USD 99 cent", "material": [ "steel" ], "skill": "launcher", "ammo": [ "120mm" ], @@ -225,8 +225,8 @@ "color": "light_gray", "symbol": "/", "material": [ "titanium" ], - "price": 20000, - "price_postapoc": 1750, + "price": "200 USD", + "price_postapoc": "17 USD 50 cent", "melee_damage": { "bash": 22 }, "weapon_category": [ "MACES" ] }, @@ -238,7 +238,7 @@ "description": "Designed to evade security measures, this knife is a must have for any Cataclysm dinner party.", "weight": "390 g", "volume": "250 ml", - "price": 4000, + "price": "40 USD", "material": [ "ceramic", "plastic" ], "symbol": "/", "color": "dark_gray", @@ -263,8 +263,8 @@ "longest_side": "140 cm", "qualities": [ [ "COOK", 1 ] ], "flags": [ "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR" ], - "price": 7500, - "price_postapoc": 1200, + "price": "75 USD", + "price_postapoc": "12 USD", "melee_damage": { "bash": 5, "stab": 28 }, "weapon_category": [ "POLEARMS", "SPEARS" ] }, @@ -276,10 +276,10 @@ "copy-from": "compbow", "name": { "str": "Aztlani bow" }, "description": "An ornate bow used by Aztlani nobility during hunting rituals. Designed to fell the plated creatures of Aztlan, its articulated and power assisted limbs allow it to fire projectiles with a strength comparable to modern assault rifles.\n\nWith its drawing aid system currently disabled, firing it will require truly superhuman strength. It can be activated to toggle it drawing assist functionality.", - "price": 50000, + "price": "500 USD", "material": [ "superalloy", "qt_steel", "wood" ], "min_strength": 40, - "price_postapoc": 40000, + "price_postapoc": "400 USD", "armor_data": { "armor": [ { @@ -332,8 +332,8 @@ "color": "white", "name": { "str": "Aztlani hunting sword" }, "description": "An ornate, single-handed sword used by Aztlani hunters to finish injured game. Made from gleaming composite alloy, its tip and frontal blade have been sharpened to a monomolecular point, while its back features a serrated saw edge.", - "price": 100000, - "price_postapoc": 450000, + "price": "1 kUSD", + "price_postapoc": "4 kUSD 500 USD", "material": [ "superalloy", "qt_steel", "wood" ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], "techniques": [ "WBLOCK_2" ], @@ -353,13 +353,13 @@ "type": "GUN", "name": { "str": "salvage bow" }, "description": "A bow made from readily-available materials, and quickly and cheaply put together. It is not made to be pretty, but to get a job done. Its nocks and string are made of shape-memory alloy that help increase string tension in the string. The memory alloy requires a UPS source to be activated.", - "price": 38000, + "price": "380 USD", "material": [ "steel", "plastic" ], "energy_drain": "4 kJ", "weight": "540 g", "volume": "2500 ml", "longest_side": "152 cm", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "armor_data": { "armor": [ { @@ -391,7 +391,7 @@ "name": { "str": "salvage crossbow" }, "reload_noise_volume": 4, "description": "A crossbow constructed of readily available materials, and quickly and cheaply put together. While it isn't very pretty, it gets the job done, and its drawing mechanism is motorized allowing quick reloading.", - "price": 200000, + "price": "2 kUSD", "material": [ "steel", "plastic" ], "skill": "rifle", "min_strength": 7, @@ -399,7 +399,7 @@ "weight": "3000 g", "volume": "1750 ml", "longest_side": "69 cm", - "price_postapoc": 6000, + "price_postapoc": "60 USD", "energy_drain": "4 kJ", "to_hit": 1, "ranged_damage": { "damage_type": "stab", "amount": 16 }, @@ -432,8 +432,8 @@ "description": "A long filament of nested carbon nanotubes only a few microns in diameter. In essence a very thin, very strong and very sharp blade that you throw at a moment's notice.", "weight": "40 g", "volume": "200 ml", - "price": 3500, - "price_postapoc": 500, + "price": "35 USD", + "price_postapoc": "5 USD", "material": [ "nanotubes" ], "flags": [ "REACH_ATTACK", diff --git a/data/mods/Aftershock/mobs/robots.json b/data/mods/Aftershock/mobs/robots.json index 424a4f5f6bcba..2528b627a27f5 100644 --- a/data/mods/Aftershock/mobs/robots.json +++ b/data/mods/Aftershock/mobs/robots.json @@ -840,8 +840,8 @@ "description": "A broken STEED, it looks beyond repair. At least the atomic core shielding should be intact.", "volume": "600 L", "weight": "800 kg", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "to_hit": -3, "material": [ "qt_steel", "nanoprinted_alloy", "kevlar" ], "symbol": "H", diff --git a/data/mods/Aftershock/mutations/integrated.json b/data/mods/Aftershock/mutations/integrated.json index ed94a8445875e..4f672312f8427 100644 --- a/data/mods/Aftershock/mutations/integrated.json +++ b/data/mods/Aftershock/mutations/integrated.json @@ -7,8 +7,8 @@ "description": "A course thick matt of fur, somewhere between a ballistic vest and attic insulation.", "weight": "4 kg", "volume": "4 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_fur" ], "symbol": "x", "color": "black", @@ -44,8 +44,8 @@ "description": "Your dermis has toughened and thickened to provide additional protection.", "weight": "1 kg", "volume": "900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "hflesh" ], "symbol": "x", "color": "light_red", @@ -70,8 +70,8 @@ "description": "Leathery and heavily armored, your lamellar skin has toughened for the fiercest battles ahead.", "weight": "4 kg", "volume": "3600 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "flesh", "enamel" ], "symbol": "x", "color": "light_red", diff --git a/data/mods/Aftershock/vehicles/part_items.json b/data/mods/Aftershock/vehicles/part_items.json index aa4e4160da3d5..184fc4ed86a81 100644 --- a/data/mods/Aftershock/vehicles/part_items.json +++ b/data/mods/Aftershock/vehicles/part_items.json @@ -13,7 +13,7 @@ "techniques": [ "DEF_DISARM" ], "volume": "7500 ml", "category": "veh_parts", - "price": 4000, + "price": "40 USD", "melee_damage": { "bash": 15 } }, { @@ -36,7 +36,7 @@ "material": [ "plastic", "steel" ], "volume": "6 L", "category": "veh_parts", - "price": 60000, + "price": "600 USD", "melee_damage": { "bash": 2 } }, { @@ -47,7 +47,7 @@ "to_hit": -5, "material": [ "glass", "steel" ], "volume": "4500 ml", - "price": 900000, + "price": "9 kUSD", "copy-from": "solar_panel" } ] diff --git a/data/mods/Backrooms/artifacts.json b/data/mods/Backrooms/artifacts.json index 625ec232eeee2..9583f198e84ba 100644 --- a/data/mods/Backrooms/artifacts.json +++ b/data/mods/Backrooms/artifacts.json @@ -6,8 +6,8 @@ "color": "light_gray", "name": { "str": "strange object" }, "description": "An object of uncertain origin, unusually heavy for its size.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "unobtanium" ], "volume": "150 ml", "weight": "2856 g", diff --git a/data/mods/Backrooms/items.json b/data/mods/Backrooms/items.json index e26ab97396f3e..310308331e5fe 100644 --- a/data/mods/Backrooms/items.json +++ b/data/mods/Backrooms/items.json @@ -8,8 +8,8 @@ "description": "A sizable blue plastic jug meant to hold and supply water in a water cooler or similar dispenser. Holds a lot of liquid, but unfortunately it doesn't come with a cap, making it hard to carry around when full.", "weight": "3740 g", "volume": "20000 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ")", diff --git a/data/mods/BlazeIndustries/items/gun/grenade.json b/data/mods/BlazeIndustries/items/gun/grenade.json index 9929b6f766157..02e4a18b6c031 100644 --- a/data/mods/BlazeIndustries/items/gun/grenade.json +++ b/data/mods/BlazeIndustries/items/gun/grenade.json @@ -6,7 +6,7 @@ "description": "A 40x46mm grenade with an EMP charge. It will release an electromagnetic pulse capable of damaging robots and some equipment.", "weight": "230 g", "volume": "250 ml", - "price": 40000, + "price": "400 USD", "material": [ "steel", "powder" ], "symbol": "=", "color": "yellow", @@ -29,7 +29,7 @@ "description": "This EMP grenade is active, and will shortly detonate, creating a large EMP field that damages robots and drains bionic energy. You may not want to be holding it much longer.", "weight": "400 g", "volume": "250 ml", - "price": 0, + "price": "0 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", diff --git a/data/mods/BlazeIndustries/items/items.json b/data/mods/BlazeIndustries/items/items.json index 26d223099e08f..a032e28376395 100644 --- a/data/mods/BlazeIndustries/items/items.json +++ b/data/mods/BlazeIndustries/items/items.json @@ -7,7 +7,7 @@ "name": { "str_sp": "scrap titanium" }, "category": "spare_parts", "description": "A piece of light titanium, usable for crafting or repairs.", - "price": 1000, + "price": "10 USD", "material": [ "titanium" ], "looks_like": "scrap", "weight": "450 g", @@ -24,8 +24,8 @@ "weight": "1 g", "//": "Density 4.506g/cm³ ~ 1.127kg/250ml @ stack 1000 = 1g/unit", "volume": "50 ml", - "price": 10000, - "price_postapoc": 750, + "price": "100 USD", + "price_postapoc": "7 USD 50 cent", "count": 100, "stack_size": 200, "material": [ "titanium" ], diff --git a/data/mods/BlazeIndustries/items/vehicle/blaze_engine.json b/data/mods/BlazeIndustries/items/vehicle/blaze_engine.json index 6e9e9dcbbf159..bb47757a47970 100644 --- a/data/mods/BlazeIndustries/items/vehicle/blaze_engine.json +++ b/data/mods/BlazeIndustries/items/vehicle/blaze_engine.json @@ -7,8 +7,8 @@ "description": "A large steam engine. An integrated boiler burns coal to heat water into steam, driving a reciprocating shaft. A condensor recaptures the water, making this a closed cycle system.", "weight": "280 kg", "volume": "95 L", - "price": 1400000, - "price_postapoc": 2800000 + "price": "14 kUSD", + "price_postapoc": "28 kUSD" }, { "id": "steam_triple_giant", @@ -18,8 +18,8 @@ "description": "A huge steam engine. An integrated boiler burns coal to heat water into steam, driving a reciprocating shaft. A condensor recaptures the water, making this a closed cycle system.", "weight": "835 kg", "volume": "175 L", - "price": 2565000, - "price_postapoc": 5130000 + "price": "25 kUSD 650 USD", + "price_postapoc": "51 kUSD 300 USD" }, { "id": "steam_turbine_small", @@ -30,8 +30,8 @@ "weight": "80 kg", "volume": "18750 ml", "//": "Steam turbine efficiency sucks - ideally 47% efficient with reheat cycles, versus 55% for a modern gas engine. Going with 33% efficieny for easy math", - "price": 255000, - "price_postapoc": 510000 + "price": "2 kUSD 550 USD", + "price_postapoc": "5 kUSD 100 USD" }, { "id": "steam_turbine_medium", @@ -41,8 +41,8 @@ "description": "A medium sized steam turbine. An integrated boiler burns coal to heat water into steam, driving a spinning turbine. A condensor recaptures the water, making this a closed cycle system.", "weight": "120 kg", "volume": "27500 ml", - "price": 380000, - "price_postapoc": 760000 + "price": "3 kUSD 800 USD", + "price_postapoc": "7 kUSD 600 USD" }, { "id": "steam_turbine_large", @@ -52,8 +52,8 @@ "description": "A large steam turbine. An integrated boiler burns coal to heat water into steam, driving a spinning turbine. A condensor recaptures the water, making this a closed cycle system.", "weight": "190 kg", "volume": "45 L", - "price": 595000, - "price_postapoc": 1190000 + "price": "5 kUSD 950 USD", + "price_postapoc": "11 kUSD 900 USD" }, { "id": "steam_turbine_giant", @@ -63,7 +63,7 @@ "description": "A huge steam turbine. An integrated boiler burns coal to heat water into steam, driving a spinning turbine. A condensor recaptures the water, making this a closed cycle system.", "weight": "345 kg", "volume": "81250 ml", - "price": 1060000, - "price_postapoc": 2120000 + "price": "10 kUSD 600 USD", + "price_postapoc": "21 kUSD 200 USD" } ] diff --git a/data/mods/BlazeIndustries/items/vehicle/blaze_gun.json b/data/mods/BlazeIndustries/items/vehicle/blaze_gun.json index d033a63152b46..a687375d0a27f 100644 --- a/data/mods/BlazeIndustries/items/vehicle/blaze_gun.json +++ b/data/mods/BlazeIndustries/items/vehicle/blaze_gun.json @@ -8,8 +8,8 @@ "description": "A Marlin 39A, modified for use in a vehicle turret.", "weight": "2948 g", "volume": "2500 ml", - "price": 23000, - "price_postapoc": 2000, + "price": "230 USD", + "price_postapoc": "20 USD", "to_hit": -1, "material": [ "iron", "wood" ], "symbol": "(", @@ -48,8 +48,8 @@ "weight": "3850 g", "volume": "2838 ml", "longest_side": "103 cm", - "price": 38000, - "price_postapoc": 3500, + "price": "380 USD", + "price_postapoc": "35 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", diff --git a/data/mods/BlazeIndustries/items/vehicle/blaze_other.json b/data/mods/BlazeIndustries/items/vehicle/blaze_other.json index 373d73915c8d1..1e91b1bd8d62d 100644 --- a/data/mods/BlazeIndustries/items/vehicle/blaze_other.json +++ b/data/mods/BlazeIndustries/items/vehicle/blaze_other.json @@ -11,8 +11,8 @@ "material": [ "steel", "plastic" ], "volume": "200 L", "category": "veh_parts", - "price": 80000, - "price_postapoc": 1000, + "price": "800 USD", + "price_postapoc": "10 USD", "melee_damage": { "bash": 2 } }, { @@ -25,8 +25,8 @@ "color": "white", "weight": "142882 g", "volume": "300 L", - "price": 40000, - "price_postapoc": 10000, + "price": "400 USD", + "price_postapoc": "100 USD", "material": [ "steel" ], "to_hit": -4, "flags": [ "DURABLE_MELEE" ], @@ -54,7 +54,7 @@ "weight": "66 kg", "volume": "500 L", "longest_side": "116cm", - "price": 0, - "price_postapoc": 10 + "price": "0 cent", + "price_postapoc": "10 cent" } ] diff --git a/data/mods/BlazeIndustries/items/vehicle/blaze_solar.json b/data/mods/BlazeIndustries/items/vehicle/blaze_solar.json index bcb91d8c5459e..b6473c41f18b5 100644 --- a/data/mods/BlazeIndustries/items/vehicle/blaze_solar.json +++ b/data/mods/BlazeIndustries/items/vehicle/blaze_solar.json @@ -7,8 +7,8 @@ "description": "A vertical array of three solar panels set on a chassis rising above one another on a metal pole with rudimentary tracking and motors. Due to the flimsy nature of the hydraulics and high surface area profile to maximize sunlight, they can't really be installed onto an existing vehicle. Requires a jumper cable or similar to pull power from.", "weight": "50000 g", "volume": "10000 ml", - "price": 120000, - "price_postapoc": 1000, + "price": "1 kUSD 200 USD", + "price_postapoc": "10 USD", "to_hit": -4, "flags": [ "NO_REPAIR" ], "material": [ "glass" ], diff --git a/data/mods/BlazeIndustries/vehicles/part_items.json b/data/mods/BlazeIndustries/vehicles/part_items.json index 1641ab9061468..954bdc37419a5 100644 --- a/data/mods/BlazeIndustries/vehicles/part_items.json +++ b/data/mods/BlazeIndustries/vehicles/part_items.json @@ -13,7 +13,7 @@ "techniques": [ "DEF_DISARM" ], "volume": "7500 ml", "category": "veh_parts", - "price": 4000, + "price": "40 USD", "melee_damage": { "bash": 15 } }, { diff --git a/data/mods/BombasticPerks/perkdata/frankenstein.json b/data/mods/BombasticPerks/perkdata/frankenstein.json index e46a417a5a233..fad7ed6a0f910 100644 --- a/data/mods/BombasticPerks/perkdata/frankenstein.json +++ b/data/mods/BombasticPerks/perkdata/frankenstein.json @@ -30,8 +30,8 @@ "description": "A stitched together monstrosity of meat and bone, with limbs as wide as trash cans. This one is still sleeping. It would require a master's touch to bring it to life.", "volume": "875000 ml", "weight": "200 kg", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -3, "material": [ "flesh" ], "symbol": ";", diff --git a/data/mods/BombasticPerks/perkdata/holdout_pocket.json b/data/mods/BombasticPerks/perkdata/holdout_pocket.json index 5da9f4e201f6c..8039e37d97c0c 100644 --- a/data/mods/BombasticPerks/perkdata/holdout_pocket.json +++ b/data/mods/BombasticPerks/perkdata/holdout_pocket.json @@ -6,8 +6,8 @@ "name": { "str_sp": "holdout pocket" }, "description": "A secret pocket no one knows about that can easily store a weapon.", "volume": "10 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "flesh" ], "symbol": "x", "color": "magenta", diff --git a/data/mods/BombasticPerks/perkdata/openpalm.json b/data/mods/BombasticPerks/perkdata/openpalm.json index 7cd9cd47fc747..fd6b0cc55e4a9 100644 --- a/data/mods/BombasticPerks/perkdata/openpalm.json +++ b/data/mods/BombasticPerks/perkdata/openpalm.json @@ -5,8 +5,8 @@ "category": "armor", "name": { "str_sp": "callused hands" }, "description": "You've dealt so many blows your hands are rough with calluses. The edge of your hand is sharp enough to cut paper.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "flesh" ], "material_thickness": 2, "symbol": "x", diff --git a/data/mods/BombasticPerks/perkdata/thick_skull.json b/data/mods/BombasticPerks/perkdata/thick_skull.json index e71a042680593..dd1f7f3718298 100644 --- a/data/mods/BombasticPerks/perkdata/thick_skull.json +++ b/data/mods/BombasticPerks/perkdata/thick_skull.json @@ -5,8 +5,8 @@ "category": "armor", "name": { "str_sp": "thick skull" }, "description": "You've taken so many hits to the head that your skull's gotten thicker.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "bone" ], "material_thickness": 3, "symbol": "x", diff --git a/data/mods/CrazyCataclysm/crazy_aperturepotato.json b/data/mods/CrazyCataclysm/crazy_aperturepotato.json index fd15f5805e3d4..1d18eb8bdff1d 100644 --- a/data/mods/CrazyCataclysm/crazy_aperturepotato.json +++ b/data/mods/CrazyCataclysm/crazy_aperturepotato.json @@ -25,7 +25,7 @@ "description": "Seems like some kind of Genetic Lifeform and Disk Operating System, attached to a potato.", "weight": "900 g", "volume": "500 ml", - "price": 9000, + "price": "90 USD", "to_hit": -1, "material": [ "plastic" ], "symbol": "%", diff --git a/data/mods/CrazyCataclysm/crazy_items.json b/data/mods/CrazyCataclysm/crazy_items.json index 3f82b882882c4..1e29b99d78d15 100644 --- a/data/mods/CrazyCataclysm/crazy_items.json +++ b/data/mods/CrazyCataclysm/crazy_items.json @@ -7,7 +7,7 @@ "description": "Attached to this grenade is a name tag with the name Kevin written on it. Does not seem to work like a grenade, handle with care.", "weight": "180 g", "volume": "250 ml", - "price": 40000, + "price": "400 USD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -29,7 +29,7 @@ "description": "Attached to this grenade is a name tag with the name Kevin written on it. Does not seem to work like a grenade, handle with care. Better throw it!", "weight": "180 g", "volume": "250 ml", - "price": 0, + "price": "0 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "*", @@ -48,7 +48,7 @@ "type": "BIONIC_ITEM", "name": { "str": "Ionic Overload Generator CBM" }, "description": "A powerful ion energy generator is implanted on your chest. Fires a powerful, ever-expanding energy blast. The resulting blast ignites oxygen creating fires as it moves and an explosion on impact. Close range use is highly discouraged.", - "price": 220000, + "price": "2 kUSD 200 USD", "difficulty": 8 }, { @@ -67,7 +67,7 @@ "description": "A powerful ion energy generator is implanted on your chest. Fires a powerful, ever-expanding energy blast that goes through various targets. The energy shot ignites oxygen creating fires as it moves and an explosion on impact.", "weight": "2950 g", "volume": "3 L", - "price": 1600000, + "price": "16 kUSD", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": "(", @@ -93,7 +93,7 @@ "description": "You can YEET all the bullets with this baby. YEET them right into all of the zombies in your path, all the hulks, the spiders, and those damned mole rats.", "weight": "709 g", "volume": "539 ml", - "price": 7500, + "price": "75 USD", "to_hit": -2, "material": [ "plastic", "steel", "zinc" ], "color": "dark_gray", @@ -119,7 +119,7 @@ "description": "This is a katana with a nozzle just behind the cutting edge of the blade. People love fire, and people love katana, so why not put them together? The gas burners attached to this blade can really turn up the heat on your foes. Use to ignite.", "weight": "1400 g", "volume": "2250 ml", - "price": 98000, + "price": "980 USD", "material": [ "steel" ], "symbol": "/", "color": "light_gray", @@ -146,7 +146,7 @@ "description": "This is a katana that glows with the fury and heat of the SUN! Well, okay it's not THAT hot, but getting hit with it still stings like the dickens. Use to shut off the gas.", "weight": "1400 g", "volume": "2250 ml", - "price": 98000, + "price": "980 USD", "material": [ "steel" ], "symbol": "/", "color": "red", @@ -180,7 +180,7 @@ "description": "Ein großes zweihändiges Schwert aus Deutschland, an dessen Klinge sich, unter Zuführung von Benzin, eine anhaltende Flamme erzeugen lässt. Es ist eine sehr mächtige Waffe.", "weight": "3400 g", "volume": "3750 ml", - "price": 160000, + "price": "1 kUSD 600 USD", "material": [ "steel" ], "symbol": "/", "color": "light_gray", @@ -208,7 +208,7 @@ "description": "Ein großes zweihändiges Schwert aus Deutschland, an dessen Klinge sich, unter Zuführung von Benzin, eine anhaltende Flamme erzeugen lässt. Es ist eine sehr mächtige Waffe.", "weight": "3400 g", "volume": "3750 ml", - "price": 160000, + "price": "1 kUSD 600 USD", "material": [ "steel" ], "symbol": "/", "color": "red", @@ -251,7 +251,7 @@ "techniques": [ "WBLOCK_1" ], "flags": [ "DURABLE_MELEE" ], "volume": "1750 ml", - "price": 18000, + "price": "180 USD", "melee_damage": { "bash": 19 } }, { @@ -262,7 +262,7 @@ "description": "This is sturdy wood bat, wrapped in gasoline-soaked rags and flame-resistant Nomex fabric. Light it, and the ball game will REALLY heat up. You'll need a lighter or matches to light it.", "weight": "1485 g", "volume": "2 L", - "price": 16000, + "price": "160 USD", "to_hit": 3, "material": [ "wood", "nomex" ], "symbol": "/", @@ -290,7 +290,7 @@ "description": "This is a sturdy wood bat, wrapped in gasoline-soaked rags and flame-resistant Nomex fabric. It is burning brightly, and makes it much easier to see the baselines at night games (It also makes the umpire FAR more likely to call a ball instead of a strike).", "weight": "1485 g", "volume": "2 L", - "price": 16000, + "price": "160 USD", "to_hit": 3, "material": [ "wood", "nomex" ], "symbol": "/", @@ -330,8 +330,8 @@ "category": "other", "name": { "str": "blurry picture of a scowling cartoon ape" }, "description": "Allegedly very important.", - "price": 2000000000, - "price_postapoc": 0 + "price": "20000 kUSD", + "price_postapoc": "0 cent" }, { "id": "old_key", @@ -357,7 +357,7 @@ "weight": "250 g", "longest_side": "100 cm", "to_hit": { "grip": "solid", "length": "long", "surface": "line", "balance": "uneven" }, - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "flags": [ "BELT_CLIP", "NONCONDUCTIVE" ], "weapon_category": [ "MEDIUM_SWORDS" ], "qualities": [ [ "BUTCHER", -50 ] ], @@ -396,8 +396,8 @@ "description": "A pressurized 0.5L canister built crafting into a small auxiliary flamethrower.", "weight": "100 g", "volume": "500 ml", - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray" diff --git a/data/mods/Defense_Mode/items.json b/data/mods/Defense_Mode/items.json index 426246906021c..a7b3f184cdfb1 100644 --- a/data/mods/Defense_Mode/items.json +++ b/data/mods/Defense_Mode/items.json @@ -4,8 +4,8 @@ "id": "mercenary_contract", "name": { "str": "service contract" }, "description": "A slip of paper signed by the issuer and the recipient, detailing the terms of service of a hiring contract.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "weight": "1 g", "volume": "1 ml", "to_hit": -3, diff --git a/data/mods/DinoMod/items/books.json b/data/mods/DinoMod/items/books.json index 1a3e928ed46e7..de6a57bc9b3cb 100644 --- a/data/mods/DinoMod/items/books.json +++ b/data/mods/DinoMod/items/books.json @@ -7,8 +7,8 @@ "description": "The voluminous notes of an obviously talented paleontologist, dedicated biologist, and amateur author. These notes jump from such topics as fossil digs, science fiction stories, also strangely enough notes on dinosaur biology and potential hybridization efforts.", "weight": "1200 g", "volume": "750 ml", - "price": 300000, - "price_postapoc": 150000, + "price": "3 kUSD", + "price_postapoc": "1 kUSD 500 USD", "material": [ "paper" ], "symbol": "?", "looks_like": "adv_chemistry", diff --git a/data/mods/DinoMod/items/carnivore.json b/data/mods/DinoMod/items/carnivore.json index bffe19b6bac7b..6019633aab5f7 100644 --- a/data/mods/DinoMod/items/carnivore.json +++ b/data/mods/DinoMod/items/carnivore.json @@ -27,8 +27,8 @@ "volume": "1400 ml", "symbol": "@", "color": "white", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "bone" ] }, { @@ -42,8 +42,8 @@ "volume": "2800 ml", "symbol": "@", "color": "white", - "price": 20, - "price_postapoc": 20, + "price": "20 cent", + "price_postapoc": "20 cent", "material": [ "bone" ] }, { @@ -57,8 +57,8 @@ "volume": "5600 ml", "symbol": "@", "color": "white", - "price": 40, - "price_postapoc": 40, + "price": "40 cent", + "price_postapoc": "40 cent", "material": [ "bone" ] }, { @@ -72,8 +72,8 @@ "volume": "1400 ml", "symbol": "@", "color": "white", - "price": 10, - "price_postapoc": 10, + "price": "10 cent", + "price_postapoc": "10 cent", "material": [ "bone" ], "qualities": [ [ "CUT_FINE", 1 ] ] }, @@ -88,8 +88,8 @@ "volume": "2800 ml", "symbol": "@", "color": "white", - "price": 20, - "price_postapoc": 20, + "price": "20 cent", + "price_postapoc": "20 cent", "material": [ "bone" ], "qualities": [ [ "CUT", 1 ], [ "CUT_FINE", 1 ] ] }, @@ -104,8 +104,8 @@ "volume": "5600 ml", "symbol": "@", "color": "white", - "price": 40, - "price_postapoc": 40, + "price": "40 cent", + "price_postapoc": "40 cent", "material": [ "bone" ], "qualities": [ [ "CUT", 1 ], [ "CUT_FINE", 1 ], [ "BUTCHER", 1 ] ] }, diff --git a/data/mods/DinoMod/items/containers.json b/data/mods/DinoMod/items/containers.json index 193bd22ef3c2d..e99a590187588 100644 --- a/data/mods/DinoMod/items/containers.json +++ b/data/mods/DinoMod/items/containers.json @@ -7,8 +7,8 @@ "description": "The stomach of a sauropod, cleaned and sealed with strings. It can hold 6 liters of water.", "weight": "1566 g", "volume": "1 L", - "price": 9000, - "price_postapoc": 50, + "price": "90 USD", + "price_postapoc": "50 cent", "to_hit": -1, "material": [ "gutskin" ], "symbol": ")", diff --git a/data/mods/DinoMod/items/egg.json b/data/mods/DinoMod/items/egg.json index c97ba8b2de04c..e6b3d396faca6 100644 --- a/data/mods/DinoMod/items/egg.json +++ b/data/mods/DinoMod/items/egg.json @@ -774,8 +774,8 @@ "symbol": "o", "quench": -1, "description": "A smaller hard-boiled dinosaur egg, still in its shell. Portable and nutritious!", - "price": 95, - "price_postapoc": 50, + "price": "95 cent", + "price_postapoc": "50 cent", "material": [ "egg" ], "fun": 2, "flags": [ "FREEZERBURN" ], @@ -791,8 +791,8 @@ "symbol": "o", "quench": -10, "description": "A hard-boiled dinosaur egg, still in its shell. Portable and nutritious!", - "price": 395, - "price_postapoc": 200, + "price": "3 USD 95 cent", + "price_postapoc": "2 USD", "material": [ "egg" ], "fun": 10, "flags": [ "FREEZERBURN" ], @@ -808,8 +808,8 @@ "symbol": "o", "quench": -15, "description": "A large hard-boiled dinosaur egg, still in its shell. It may be wise to disassemble it into two pieces to eat.", - "price": 595, - "price_postapoc": 300, + "price": "5 USD 95 cent", + "price_postapoc": "3 USD", "material": [ "egg" ], "fun": 20, "flags": [ "FREEZERBURN" ], diff --git a/data/mods/DinoMod/items/helmets.json b/data/mods/DinoMod/items/helmets.json index c183d43c9a170..2294f6553310f 100644 --- a/data/mods/DinoMod/items/helmets.json +++ b/data/mods/DinoMod/items/helmets.json @@ -6,8 +6,8 @@ "description": "The top part of a dinosaur skull, equipped with leather straps to secure it on your head. Every inch of the skull has been carved with a maze of fine, intertwined symbols.", "weight": "1 kg", "volume": "3 L", - "price": 1400, - "price_postapoc": 200, + "price": "14 USD", + "price_postapoc": "2 USD", "material": [ "leather", "bone" ], "symbol": "[", "color": "dark_gray", @@ -22,8 +22,8 @@ "description": "The top part of a spiky dinosaur skull, equipped with leather straps to secure it on your head. Every inch of the skull has been carved with a maze of fine, intertwined symbols.", "weight": "1 kg", "volume": "3 L", - "price": 1400, - "price_postapoc": 200, + "price": "14 USD", + "price_postapoc": "2 USD", "material": [ "leather", "bone" ], "symbol": "[", "color": "dark_gray", @@ -39,8 +39,8 @@ "description": "The top part of a dinosaur skull, equipped with leather straps to secure it on your head. Every inch of the skull has been carved with a maze of fine, intertwined symbols.", "weight": "1 kg", "volume": "3 L", - "price": 1400, - "price_postapoc": 200, + "price": "14 USD", + "price_postapoc": "2 USD", "material": [ "leather", "bone" ], "symbol": "[", "color": "dark_gray", diff --git a/data/mods/DinoMod/items/mutagen.json b/data/mods/DinoMod/items/mutagen.json index 02084e250c5c4..2236e301a068c 100644 --- a/data/mods/DinoMod/items/mutagen.json +++ b/data/mods/DinoMod/items/mutagen.json @@ -5,7 +5,7 @@ "type": "COMESTIBLE", "name": { "str_sp": "tyrant mutagenic primer" }, "description": "A super-concentrated mutagenic primer strongly resembling children's toy slime.", - "price": 1000000, + "price": "10 kUSD", "color": "light_green", "healthy": -4, "use_action": { @@ -22,7 +22,7 @@ "name": { "str_sp": "tyrant mutagen" }, "description": "An extremely rare mutagen cocktail, it smells like blood and is a green goop with blood-red streaks.", "color": "light_green", - "price": 500000, + "price": "5 kUSD", "use_action": { "type": "consume_drug", "activation_message": "You drink the tyrant mutagen.", @@ -35,7 +35,7 @@ "type": "COMESTIBLE", "name": { "str_sp": "stego mutagenic primer" }, "description": "A super-concentrated mutagenic primer not for those frightened of this thing they have become.", - "price": 1000000, + "price": "10 kUSD", "color": "light_green", "healthy": -4, "use_action": { @@ -52,7 +52,7 @@ "name": { "str_sp": "stego mutagen" }, "description": "An extremely rare mutagen cocktail, it seeks to cure what's deep inside.", "color": "light_green", - "price": 500000, + "price": "5 kUSD", "use_action": { "type": "consume_drug", "activation_message": "You drink the stego mutagen.", @@ -65,7 +65,7 @@ "type": "COMESTIBLE", "name": { "str_sp": "horns mutagenic primer" }, "description": "A super-concentrated mutagenic primer containing refined and purified biological samples, spiked with rum.", - "price": 1000000, + "price": "10 kUSD", "color": "light_green", "healthy": -4, "use_action": { @@ -82,7 +82,7 @@ "name": { "str_sp": "horns mutagen" }, "description": "An extremely rare mutagen cocktail containing a mix of biological samples, spiked with rum.", "color": "light_green", - "price": 500000, + "price": "5 kUSD", "use_action": { "type": "consume_drug", "activation_message": "You drink the horns mutagen.", diff --git a/data/mods/DinoMod/items/mutagen_ingredients.json b/data/mods/DinoMod/items/mutagen_ingredients.json index abf3fa5261a0e..b599e7afb5b47 100644 --- a/data/mods/DinoMod/items/mutagen_ingredients.json +++ b/data/mods/DinoMod/items/mutagen_ingredients.json @@ -6,8 +6,8 @@ "color": "light_green", "name": { "str": "raptor sample" }, "description": "A sample of tissues and liquids from a living dromaeosaurid, popularly called a 'raptor', a flightless feathered predatory dinosaur popularized by an American film.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "flesh" ], "flags": [ "NO_SALVAGE" ], "weight": "114 g", @@ -21,8 +21,8 @@ "color": "light_red", "name": { "str": "tyrant sample" }, "description": "A sample of tissues and liquids from a living tyrannosauroid, one of many carnivorous three-toed predator dinosaurs known for being very big.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "flesh" ], "flags": [ "NO_SALVAGE" ], "weight": "114 g", @@ -36,8 +36,8 @@ "color": "light_blue", "name": { "str": "stegosaurus sample" }, "description": "A sample of tissues and liquids from a living thyreophoran, one of many plant eating dinosaurs with natural protective armor.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "flesh" ], "flags": [ "NO_SALVAGE" ], "weight": "114 g", @@ -51,8 +51,8 @@ "color": "light_blue", "name": { "str": "ceratopsian sample" }, "description": "A sample of tissues and liquids from a living ceratopsian, one of many plant eating dinosaurs with dramatic head adaptations useful for fighting and for finding a mate.", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "flesh" ], "flags": [ "NO_SALVAGE" ], "weight": "114 g", diff --git a/data/mods/DinoMod/items/mutation_armor.json b/data/mods/DinoMod/items/mutation_armor.json index 8541e353feb5b..d1a342697020f 100644 --- a/data/mods/DinoMod/items/mutation_armor.json +++ b/data/mods/DinoMod/items/mutation_armor.json @@ -7,8 +7,8 @@ "description": "Thick, bulky and heavy. This skin withstands punishment from even the biggest beasts.", "weight": "10 kg", "volume": "3600 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "leather", "flesh", "bone", "chitin" ], "symbol": "x", "color": "light_red", diff --git a/data/mods/DinoMod/items/pets.json b/data/mods/DinoMod/items/pets.json index 4981109a1689e..4b54e43b70e37 100644 --- a/data/mods/DinoMod/items/pets.json +++ b/data/mods/DinoMod/items/pets.json @@ -6,8 +6,8 @@ "description": "A sturdy reinforced plastic container meant to hold dinosaurs for transport. Use it on a suitable animal to capture, use it on an empty tile to release.", "weight": "10000 g", "volume": "50 L", - "price": 2000, - "price_postapoc": 200, + "price": "20 USD", + "price_postapoc": "2 USD", "material": [ "steel", "plastic" ], "symbol": "#", "color": "light_gray", @@ -24,8 +24,8 @@ "description": "A sturdy reinforced wooden container meant to hold dinosaurs for transport. Use it on a suitable animal to capture, use it on an empty tile to release.", "weight": "15000 g", "volume": "50 L", - "price": 1600, - "price_postapoc": 100, + "price": "16 USD", + "price_postapoc": "1 USD", "material": [ "wood" ], "symbol": "#", "color": "brown", diff --git a/data/mods/DinoMod/items/pets_bear_armor.json b/data/mods/DinoMod/items/pets_bear_armor.json index 4857397b81de2..0b59af55569eb 100644 --- a/data/mods/DinoMod/items/pets_bear_armor.json +++ b/data/mods/DinoMod/items/pets_bear_armor.json @@ -17,8 +17,8 @@ "color": "yellow", "name": { "str": "Kevlar-lined bear-sized peto" }, "description": "A heavy mattress-like armor of cloth, leather, and thick linings of Kevlar, originally used as horse protection for bullfighting, but adapted for the noblest of beasts. You could put this on a friendly bear.", - "price": 50000, - "price_postapoc": 5000, + "price": "500 USD", + "price_postapoc": "50 USD", "material": [ "cotton", "leather", "kevlar" ], "weight": "30 kg", "volume": "150 L", @@ -31,8 +31,8 @@ "color": "green", "name": { "str": "biosilicified chitin bear armor" }, "description": "A makeshift assembly of criniere, peytral, and croupiere made from biosilicified chitin fitted to a thin mesh. You could put this on a friendly bear.", - "price": 120000, - "price_postapoc": 8000, + "price": "1 kUSD 200 USD", + "price_postapoc": "80 USD", "material": [ "acidchitin", "leather" ], "weight": "35 kg", "volume": "150 L", @@ -46,8 +46,8 @@ "color": "green", "name": { "str": "chitin bear armor" }, "description": "A makeshift assembly of criniere, peytral, and croupiere made from chitin fitted to a thin mesh. You could put this on a friendly bear.", - "price": 100000, - "price_postapoc": 6000, + "price": "1 kUSD", + "price_postapoc": "60 USD", "material": [ "chitin", "leather" ], "weight": "35 kg", "volume": "150 L", @@ -61,8 +61,8 @@ "color": "green", "name": { "str": "chainmail bear armor" }, "description": "A heavy covering of chainmail, suitably made for bears as protection. You could put this on a friendly bear.", - "price": 40000, - "price_postapoc": 10000, + "price": "400 USD", + "price_postapoc": "100 USD", "material": [ "steel", "leather" ], "weight": "40 kg", "volume": "150 L", @@ -75,8 +75,8 @@ "color": "green", "name": { "str": "boiled leather bear barding with caparison", "str_pl": "boiled leather bear bardings with caparison" }, "description": "A full barding for bears, consisting of boiled leather with cloth underneath. This caparison depicts four men in heavy metal armor riddled with bullet marks. You could put this on a friendly bear.", - "price": 30000, - "price_postapoc": 3000, + "price": "300 USD", + "price_postapoc": "30 USD", "material": [ "cotton", "leather" ], "weight": "15 kg", "volume": "150 L", @@ -115,8 +115,8 @@ "color": "green", "name": { "str": "boiled leather bear barding with bones", "str_pl": "boiled leather bear bardings with bones" }, "description": "Leather bear barding with decorative bones affixed, meant to invoke fear in bandits and raiders and traders all! You could put this on a friendly bear.", - "price": 45000, - "price_postapoc": 3000, + "price": "450 USD", + "price_postapoc": "30 USD", "material": [ "bone", "leather" ], "weight": "17 kg", "volume": "150 L", @@ -129,8 +129,8 @@ "color": "green", "name": { "str": "bear rain sheet" }, "description": "A thin plastic covering, adapted to protect a bear from acid zombie splashes and similar caustic substances. You could put this on a friendly bear.", - "price": 15000, - "price_postapoc": 1500, + "price": "150 USD", + "price_postapoc": "15 USD", "material": [ "neoprene", "plastic" ], "weight": "14 kg", "volume": "150 L", @@ -143,8 +143,8 @@ "color": "red", "name": { "str": "bear-sized holiday sweater" }, "description": "A very large warm wool sweater with a festive holiday pattern. You could put this on a friendly bear.", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "material": [ "wool" ], "weight": "3 kg", "volume": "20 L", @@ -158,8 +158,8 @@ "color": "brown", "name": { "str": "iron bear armor" }, "description": "A heavy covering of strategically placed iron plates and leather, suitably made for bears as protection. You could put this on a friendly bear.", - "price": 50000, - "price_postapoc": 10000, + "price": "500 USD", + "price_postapoc": "100 USD", "material": [ "iron", "leather" ], "weight": "30 kg", "volume": "150 L", @@ -172,8 +172,8 @@ "color": "light_gray", "name": { "str": "steel bear armor" }, "description": "A heavy covering of steel plate and leather, suitably made for bears as protection. You could put this on a friendly bear.", - "price": 60000, - "price_postapoc": 15000, + "price": "600 USD", + "price_postapoc": "150 USD", "material": [ "steel", "leather" ], "weight": "50 kg", "volume": "150 L", @@ -186,8 +186,8 @@ "color": "yellow", "name": { "str": "bronze bear armor" }, "description": "A heavy covering of strategically placed bronze plates and leather, suitably made for bears as protection. You could put this on a friendly bear.", - "price": 50000, - "price_postapoc": 10000, + "price": "500 USD", + "price_postapoc": "100 USD", "material": [ "bronze", "leather" ], "weight": "30 kg", "volume": "150 L", diff --git a/data/mods/DinoMod/items/pets_elephant_armor.json b/data/mods/DinoMod/items/pets_elephant_armor.json index 58c2cde299489..5d8b142f8fafd 100644 --- a/data/mods/DinoMod/items/pets_elephant_armor.json +++ b/data/mods/DinoMod/items/pets_elephant_armor.json @@ -17,8 +17,8 @@ "color": "yellow", "name": { "str": "Kevlar-lined elephant-sized peto" }, "description": "A heavy mattress-like armor of cloth, leather, and thick linings of Kevlar, originally used as horse protection for bullfighting. You could put this on a friendly elephant.", - "price": 50000, - "price_postapoc": 5000, + "price": "500 USD", + "price_postapoc": "50 USD", "material": [ "cotton", "leather", "kevlar" ], "weight": "30 kg", "volume": "150 L", @@ -31,8 +31,8 @@ "color": "green", "name": { "str": "biosilicified chitin elephant armor" }, "description": "A makeshift assembly of criniere, peytral, and croupiere made from biosilicified chitin fitted to a thin mesh. You could put this on a friendly elephant.", - "price": 120000, - "price_postapoc": 8000, + "price": "1 kUSD 200 USD", + "price_postapoc": "80 USD", "material": [ "acidchitin", "leather" ], "weight": "35 kg", "volume": "150 L", @@ -46,8 +46,8 @@ "color": "green", "name": { "str": "chitin elephant armor" }, "description": "A makeshift assembly of criniere, peytral, and croupiere made from chitin fitted to a thin mesh. You could put this on a friendly elephant.", - "price": 100000, - "price_postapoc": 6000, + "price": "1 kUSD", + "price_postapoc": "60 USD", "material": [ "chitin", "leather" ], "weight": "35 kg", "volume": "150 L", @@ -61,8 +61,8 @@ "color": "green", "name": { "str": "chainmail elephant armor" }, "description": "A heavy covering of chainmail, suitably made for elephants as protection. You could put this on a friendly elephant.", - "price": 40000, - "price_postapoc": 10000, + "price": "400 USD", + "price_postapoc": "100 USD", "material": [ "steel", "leather" ], "weight": "40 kg", "volume": "150 L", @@ -75,8 +75,8 @@ "color": "green", "name": { "str": "boiled leather elephant barding with caparison", "str_pl": "boiled leather elephant bardings with caparison" }, "description": "A full barding for elephants, consisting of boiled leather with cloth underneath. This caparison depicts a battle between a monstrous demon and a regal warrior astride an elephant and wielding an elaborate vajra. You could put this on a friendly elephant.", - "price": 30000, - "price_postapoc": 3000, + "price": "300 USD", + "price_postapoc": "30 USD", "material": [ "cotton", "leather" ], "weight": "15 kg", "volume": "150 L", @@ -119,8 +119,8 @@ "color": "green", "name": { "str": "boiled leather elephant barding with bones", "str_pl": "boiled leather elephant bardings with bones" }, "description": "Leather elephant barding with decorative bones affixed, meant to invoke fear in bandits and raiders and traders all! You could put this on a friendly elephant.", - "price": 45000, - "price_postapoc": 3000, + "price": "450 USD", + "price_postapoc": "30 USD", "material": [ "bone", "leather" ], "weight": "17 kg", "volume": "150 L", @@ -133,8 +133,8 @@ "color": "green", "name": { "str": "elephant rain sheet" }, "description": "A thin plastic covering, adapted to protect an elephant from acid zombie splashes and similar caustic substances. You could put this on a friendly elephant.", - "price": 15000, - "price_postapoc": 1500, + "price": "150 USD", + "price_postapoc": "15 USD", "material": [ "neoprene", "plastic" ], "weight": "14 kg", "volume": "150 L", @@ -147,8 +147,8 @@ "color": "red", "name": { "str": "elephant-sized holiday sweater" }, "description": "A very large warm wool sweater with a festive holiday pattern. You could put this on a friendly elephant.", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "material": [ "wool" ], "weight": "3 kg", "volume": "20 L", @@ -162,8 +162,8 @@ "color": "brown", "name": { "str": "iron elephant armor" }, "description": "A heavy covering of strategically placed iron plates and leather, suitably made for elephants as protection. You could put this on a friendly elephant.", - "price": 50000, - "price_postapoc": 10000, + "price": "500 USD", + "price_postapoc": "100 USD", "material": [ "iron", "leather" ], "weight": "30 kg", "volume": "150 L", @@ -176,8 +176,8 @@ "color": "light_gray", "name": { "str": "steel elephant armor" }, "description": "A heavy covering of steel plate and leather, suitably made for elephants as protection. You could put this on a friendly elephant.", - "price": 60000, - "price_postapoc": 15000, + "price": "600 USD", + "price_postapoc": "150 USD", "material": [ "steel", "leather" ], "weight": "50 kg", "volume": "150 L", @@ -190,8 +190,8 @@ "color": "yellow", "name": { "str": "bronze elephant armor" }, "description": "A heavy covering of strategically placed bronze plates and leather, suitably made for elephants as protection. You could put this on a friendly elephant.", - "price": 50000, - "price_postapoc": 10000, + "price": "500 USD", + "price_postapoc": "100 USD", "material": [ "bronze", "leather" ], "weight": "30 kg", "volume": "150 L", diff --git a/data/mods/DinoMod/items/pets_ostrich_armor.json b/data/mods/DinoMod/items/pets_ostrich_armor.json index ad17a680d2302..8f60bd16bc782 100644 --- a/data/mods/DinoMod/items/pets_ostrich_armor.json +++ b/data/mods/DinoMod/items/pets_ostrich_armor.json @@ -17,8 +17,8 @@ "color": "yellow", "name": { "str": "Kevlar-lined ostrich-sized peto" }, "description": "A heavy mattress-like armor of cloth, leather, and thick linings of Kevlar, originally used as horse protection for bullfighting, but adapted for the noblest of beasts. You could put this on a friendly ostrich.", - "price": 50000, - "price_postapoc": 5000, + "price": "500 USD", + "price_postapoc": "50 USD", "material": [ "cotton", "leather", "kevlar" ], "weight": "30 kg", "volume": "150 L", @@ -31,8 +31,8 @@ "color": "green", "name": { "str": "biosilicified chitin ostrich armor" }, "description": "A makeshift assembly of criniere, peytral, and croupiere made from biosilicified chitin fitted to a thin mesh. You could put this on a friendly ostrich.", - "price": 120000, - "price_postapoc": 8000, + "price": "1 kUSD 200 USD", + "price_postapoc": "80 USD", "material": [ "acidchitin", "leather" ], "weight": "35 kg", "volume": "150 L", @@ -46,8 +46,8 @@ "color": "green", "name": { "str": "chitin ostrich armor" }, "description": "A makeshift assembly of criniere, peytral, and croupiere made from chitin fitted to a thin mesh. You could put this on a friendly ostrich.", - "price": 100000, - "price_postapoc": 6000, + "price": "1 kUSD", + "price_postapoc": "60 USD", "material": [ "chitin", "leather" ], "weight": "35 kg", "volume": "150 L", @@ -61,8 +61,8 @@ "color": "green", "name": { "str": "chainmail ostrich armor" }, "description": "A heavy covering of chainmail, customized for large two legged birds as protection. You could put this on a friendly ostrich. This caparison depicts four men in heavy metal armor riddled with bullet marks.", - "price": 40000, - "price_postapoc": 10000, + "price": "400 USD", + "price_postapoc": "100 USD", "material": [ "steel", "leather" ], "weight": "40 kg", "volume": "150 L", @@ -75,8 +75,8 @@ "color": "green", "name": { "str": "boiled leather ostrich barding with caparison", "str_pl": "boiled leather ostrich bardings with caparison" }, "description": "A full barding for ostriches, consisting of boiled leather with cloth underneath. This caparison depicts four men in heavy metal armor riddled with bullet marks. You could put this on a friendly ostrich.", - "price": 30000, - "price_postapoc": 3000, + "price": "300 USD", + "price_postapoc": "30 USD", "material": [ "cotton", "leather" ], "weight": "15 kg", "volume": "150 L", @@ -115,8 +115,8 @@ "color": "green", "name": { "str": "boiled leather ostrich barding with bones", "str_pl": "boiled leather ostrich bardings with bones" }, "description": "Leather ostrich barding with decorative bones affixed, meant to invoke fear in bandits and raiders and traders all! You could put this on a friendly ostrich.", - "price": 45000, - "price_postapoc": 3000, + "price": "450 USD", + "price_postapoc": "30 USD", "material": [ "bone", "leather" ], "weight": "17 kg", "volume": "150 L", @@ -129,8 +129,8 @@ "color": "green", "name": { "str": "ostrich rain sheet" }, "description": "A thin plastic covering, adapted to protect an ostrich from acid zombie splashes and similar caustic substances. You could put this on a friendly ostrich.", - "price": 15000, - "price_postapoc": 1500, + "price": "150 USD", + "price_postapoc": "15 USD", "material": [ "neoprene", "plastic" ], "weight": "14 kg", "volume": "150 L", @@ -143,8 +143,8 @@ "color": "red", "name": { "str": "ostrich-sized holiday sweater" }, "description": "A very large warm wool sweater with a festive holiday pattern. You could put this on a friendly ostrich.", - "price": 10000, - "price_postapoc": 1000, + "price": "100 USD", + "price_postapoc": "10 USD", "material": [ "wool" ], "weight": "3 kg", "volume": "20 L", @@ -158,8 +158,8 @@ "color": "brown", "name": { "str": "iron ostrich armor" }, "description": "A heavy covering of strategically placed iron plates and leather, suitably made for ostriches as protection. You could put this on a friendly ostrich.", - "price": 50000, - "price_postapoc": 10000, + "price": "500 USD", + "price_postapoc": "100 USD", "material": [ "iron", "leather" ], "weight": "30 kg", "volume": "150 L", @@ -172,8 +172,8 @@ "color": "light_gray", "name": { "str": "steel ostrich armor" }, "description": "A heavy covering of steel plate and leather, suitably made for ostriches as protection. You could put this on a friendly ostrich.", - "price": 60000, - "price_postapoc": 15000, + "price": "600 USD", + "price_postapoc": "150 USD", "material": [ "steel", "leather" ], "weight": "50 kg", "volume": "150 L", @@ -186,8 +186,8 @@ "color": "yellow", "name": { "str": "bronze ostrich armor" }, "description": "A heavy covering of strategically placed bronze plates and leather, suitably made for ostriches as protection. You could put this on a friendly ostrich.", - "price": 50000, - "price_postapoc": 10000, + "price": "500 USD", + "price_postapoc": "100 USD", "material": [ "bronze", "leather" ], "weight": "30 kg", "volume": "150 L", diff --git a/data/mods/Generic_Guns/ammo/shot.json b/data/mods/Generic_Guns/ammo/shot.json index bfea762792aa4..4533d753c4cb9 100644 --- a/data/mods/Generic_Guns/ammo/shot.json +++ b/data/mods/Generic_Guns/ammo/shot.json @@ -28,7 +28,7 @@ "type": "AMMO", "name": { "str": "shotshell, birdshot", "str_pl": "shotshells, birdshot" }, "description": "A shotshell filled with numerous small pellets. Designed for hunting birds and other small game, its applications in combat are very limited.", - "price_postapoc": 2400, + "price_postapoc": "24 USD", "proportional": { "price": 0.2, "damage": { "damage_type": "bullet", "amount": 0.3 }, "recoil": 0.6, "loudness": 0.8 }, "extend": { "effects": [ "NOGIB" ] } }, diff --git a/data/mods/Generic_Guns/firearms/pistol_magnum.json b/data/mods/Generic_Guns/firearms/pistol_magnum.json index 47de7b2124df9..afa560c913601 100644 --- a/data/mods/Generic_Guns/firearms/pistol_magnum.json +++ b/data/mods/Generic_Guns/firearms/pistol_magnum.json @@ -10,8 +10,8 @@ "volume": "617 ml", "longest_side": "29 cm", "barrel_length": "152 mm", - "price": 87500, - "price_postapoc": 2750, + "price": "875 USD", + "price_postapoc": "27 USD 50 cent", "to_hit": -2, "material": [ "steel", "plastic" ], "symbol": "(", @@ -67,7 +67,7 @@ "description": "A crudely constructed carbine, chambered for magnum pistol ammo and standard pistol ammo. It feeds from commercial magnum pistol magazines, and locks with a rudimentary lever-action system. Its powerful cartridge and relative precision should serve well against zombies and medium game.", "weight": "2114 g", "volume": "2 L", - "price": 10000, + "price": "100 USD", "color": "brown", "ranged_damage": { "damage_type": "bullet", "amount": 0 }, "dispersion": 550, diff --git a/data/mods/Generic_Guns/magazines/grenade.json b/data/mods/Generic_Guns/magazines/grenade.json index 22506407f7152..0eec42ba64bb3 100644 --- a/data/mods/Generic_Guns/magazines/grenade.json +++ b/data/mods/Generic_Guns/magazines/grenade.json @@ -6,7 +6,7 @@ "description": "An ammo belt consisting of metal linkages which separate from the belt upon firing. This one holds grenade cartridges and is too bulky to be worn like other ammo belts.", "volume": "10 L", "weight": "7800 g", - "price": 0, + "price": "0 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/mods/Limb_WIP/armor/arm_prosthetics.json b/data/mods/Limb_WIP/armor/arm_prosthetics.json index 30bad9616eaf7..634163e638d8f 100644 --- a/data/mods/Limb_WIP/armor/arm_prosthetics.json +++ b/data/mods/Limb_WIP/armor/arm_prosthetics.json @@ -7,8 +7,8 @@ "weight": "2000 g", "volume": "8 L", "longest_side": "50 cm", - "price": 500000, - "price_postapoc": 20000, + "price": "5 kUSD", + "price_postapoc": "200 USD", "to_hit": 1, "material": [ "steel", "plastic" ], "symbol": "|", @@ -27,8 +27,8 @@ "weight": "2000 g", "volume": "8 L", "longest_side": "50 cm", - "price": 500000, - "price_postapoc": 20000, + "price": "5 kUSD", + "price_postapoc": "200 USD", "to_hit": 1, "material": [ "steel", "plastic" ], "symbol": "|", @@ -47,8 +47,8 @@ "weight": "2000 g", "volume": "8 L", "longest_side": "50 cm", - "price": 750000, - "price_postapoc": 150000, + "price": "7 kUSD 500 USD", + "price_postapoc": "1 kUSD 500 USD", "to_hit": 1, "material": [ "steel", "plastic" ], "symbol": "|", @@ -67,8 +67,8 @@ "weight": "2000 g", "volume": "8 L", "longest_side": "50 cm", - "price": 750000, - "price_postapoc": 150000, + "price": "7 kUSD 500 USD", + "price_postapoc": "1 kUSD 500 USD", "to_hit": 1, "material": [ "steel", "plastic" ], "symbol": "|", @@ -87,8 +87,8 @@ "weight": "3154 g", "volume": "8 L", "longest_side": "50 cm", - "price": 30000, - "price_postapoc": 13000, + "price": "300 USD", + "price_postapoc": "130 USD", "to_hit": 1, "material": [ "wood", "cotton" ], "symbol": "|", @@ -107,8 +107,8 @@ "weight": "3154 g", "volume": "8 L", "longest_side": "50 cm", - "price": 30000, - "price_postapoc": 13000, + "price": "300 USD", + "price_postapoc": "130 USD", "to_hit": 1, "material": [ "wood", "cotton" ], "symbol": "|", @@ -127,8 +127,8 @@ "weight": "4529 g", "volume": "8 L", "longest_side": "50 cm", - "price": 70000, - "price_postapoc": 40000, + "price": "700 USD", + "price_postapoc": "400 USD", "to_hit": 1, "material": [ "steel", "leather" ], "symbol": "|", @@ -147,8 +147,8 @@ "weight": "4529 g", "volume": "8 L", "longest_side": "50 cm", - "price": 70000, - "price_postapoc": 40000, + "price": "700 USD", + "price_postapoc": "400 USD", "to_hit": 1, "material": [ "steel", "leather" ], "symbol": "|", diff --git a/data/mods/Limb_WIP/armor/legs_prosthetics.json b/data/mods/Limb_WIP/armor/legs_prosthetics.json index d4e3265020b71..3e7f9bc944543 100644 --- a/data/mods/Limb_WIP/armor/legs_prosthetics.json +++ b/data/mods/Limb_WIP/armor/legs_prosthetics.json @@ -7,8 +7,8 @@ "weight": "3629 g", "volume": "10 L", "longest_side": "122 cm", - "price": 500000, - "price_postapoc": 20000, + "price": "5 kUSD", + "price_postapoc": "200 USD", "to_hit": 1, "material": [ "steel", "plastic" ], "symbol": "|", @@ -27,8 +27,8 @@ "weight": "3629 g", "volume": "10 L", "longest_side": "122 cm", - "price": 500000, - "price_postapoc": 20000, + "price": "5 kUSD", + "price_postapoc": "200 USD", "to_hit": 1, "material": [ "steel", "plastic" ], "symbol": "|", @@ -47,8 +47,8 @@ "weight": "3629 g", "volume": "10 L", "longest_side": "122 cm", - "price": 500000, - "price_postapoc": 20000, + "price": "5 kUSD", + "price_postapoc": "200 USD", "to_hit": 1, "material": [ "wood", "cotton" ], "symbol": "|", @@ -67,8 +67,8 @@ "weight": "3629 g", "volume": "10 L", "longest_side": "122 cm", - "price": 500000, - "price_postapoc": 20000, + "price": "5 kUSD", + "price_postapoc": "200 USD", "to_hit": 1, "material": [ "wood", "cotton" ], "symbol": "|", @@ -87,8 +87,8 @@ "weight": "8164 g", "volume": "10 L", "longest_side": "122 cm", - "price": 700000, - "price_postapoc": 50000, + "price": "7 kUSD", + "price_postapoc": "500 USD", "to_hit": 1, "material": [ "steel", "cotton" ], "symbol": "|", @@ -107,8 +107,8 @@ "weight": "8164 g", "volume": "10 L", "longest_side": "122 cm", - "price": 700000, - "price_postapoc": 50000, + "price": "7 kUSD", + "price_postapoc": "500 USD", "to_hit": 1, "material": [ "steel", "cotton" ], "symbol": "|", diff --git a/data/mods/Limb_WIP/armor/limb_armor.json b/data/mods/Limb_WIP/armor/limb_armor.json index 1c826e23a8ebb..eb065419a32fc 100644 --- a/data/mods/Limb_WIP/armor/limb_armor.json +++ b/data/mods/Limb_WIP/armor/limb_armor.json @@ -7,8 +7,8 @@ "description": "An example armor for testing custom limb/armor interactions. 100 coverage on the first sublimb of your debug tail with little encumbrance", "weight": "200 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 25, + "price": "10 USD", + "price_postapoc": "25 cent", "to_hit": -1, "material": [ "steel" ], "symbol": "[", @@ -83,8 +83,8 @@ "category": "armor", "name": { "str_sp": "bionic plating - arms" }, "description": "The durable alloy armor which protects the sensitive components that operate your bionic arms.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "kevlar_rigid", "superalloy" ], "symbol": "[", @@ -187,8 +187,8 @@ "category": "armor", "name": { "str_sp": "bionic plating - legs" }, "description": "The durable alloy armor which protects the sensitive components that operate your bionic legs.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "kevlar_rigid", "superalloy" ], "symbol": "[", @@ -296,8 +296,8 @@ "name": { "str_sp": "bionic plating - tank treads" }, "description": "The protective armor for the bionic tank treads which replace the legs.", "volume": "80000 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "superalloy", "rubber", "qt_steel" ], "symbol": "[", diff --git a/data/mods/Limb_WIP/bionics.json b/data/mods/Limb_WIP/bionics.json index b11267ca54dfc..d1204a6f4cd97 100644 --- a/data/mods/Limb_WIP/bionics.json +++ b/data/mods/Limb_WIP/bionics.json @@ -6,7 +6,7 @@ "name": { "str": "Bionic Limb - Left Leg CBM" }, "looks_like": "bio_int_enhancer", "description": "CBM which replaces the left leg with a bionic counterpart.", - "price": 220000, + "price": "2 kUSD 200 USD", "weight": "30000 g", "difficulty": 3, "volume": "8000 ml" @@ -18,7 +18,7 @@ "name": { "str": "Bionic Limb - Right Leg CBM" }, "looks_like": "bio_int_enhancer", "description": "CBM which replaces the left leg with a bionic counterpart.", - "price": 220000, + "price": "2 kUSD 200 USD", "weight": "30000 g", "difficulty": 3, "volume": "8000 ml" @@ -30,7 +30,7 @@ "name": { "str": "Bionic Limb - Left Arm CBM" }, "looks_like": "bio_int_enhancer", "description": "CBM which replaces the left leg with a bionic counterpart.", - "price": 220000, + "price": "2 kUSD 200 USD", "weight": "20000 g", "difficulty": 3, "volume": "5000 ml" @@ -42,7 +42,7 @@ "name": { "str": "Bionic Limb - Right Arm CBM" }, "looks_like": "bio_int_enhancer", "description": "CBM which replaces the left leg with a bionic counterpart.", - "price": 220000, + "price": "2 kUSD 200 USD", "weight": "20000 g", "difficulty": 3, "volume": "5000 ml" @@ -54,7 +54,7 @@ "name": { "str": "Bionic Limb - Tank Treads CBM" }, "looks_like": "bio_int_enhancer", "description": "CBM which replaces the left leg with a bionic counterpart.", - "price": 220000, + "price": "2 kUSD 200 USD", "weight": "120000 g", "difficulty": 3, "volume": "40000 ml" diff --git a/data/mods/MMA/martial.json b/data/mods/MMA/martial.json index e407940a1d9b5..0a1cc1828e796 100644 --- a/data/mods/MMA/martial.json +++ b/data/mods/MMA/martial.json @@ -107,7 +107,7 @@ "type": "TOOL", "name": { "str": "dragon hand scroll" }, "description": "Focus your ki into magical attacks.", - "price_postapoc": 12000, + "price_postapoc": "120 USD", "use_action": { "target": "ki_strike_scroll", "msg": "You unroll the dragon scroll…", diff --git a/data/mods/Magiclysm/Spells/attunements/Artificer.json b/data/mods/Magiclysm/Spells/attunements/Artificer.json index 0ba948e66d2c6..8806861b1f8df 100644 --- a/data/mods/Magiclysm/Spells/attunements/Artificer.json +++ b/data/mods/Magiclysm/Spells/attunements/Artificer.json @@ -41,8 +41,8 @@ "weight": "170 g", "volume": "40 ml", "longest_side": "25 cm", - "price": 450, - "price_postapoc": 50, + "price": "4 USD 50 cent", + "price_postapoc": "50 cent", "to_hit": -1, "symbol": ";", "color": "yellow", diff --git a/data/mods/Magiclysm/Spells/attunements/Crusader.json b/data/mods/Magiclysm/Spells/attunements/Crusader.json index af9720bb3d138..7fafa931b5c80 100644 --- a/data/mods/Magiclysm/Spells/attunements/Crusader.json +++ b/data/mods/Magiclysm/Spells/attunements/Crusader.json @@ -7,8 +7,8 @@ "weight": "1905 g", "volume": "4 L", "longest_side": "100 cm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 3, "material": [ "concentrated_mana" ], "symbol": "[", @@ -113,8 +113,8 @@ "looks_like": "longsword", "symbol": "/", "color": "light_gray", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "description": "A large sword made of glowing, radiant fire. It explodes with radiance when striking enemies.", "material": [ "concentrated_mana" ], "weapon_category": [ "LONG_SWORDS", "GREAT_SWORDS" ], diff --git a/data/mods/Magiclysm/bionics.json b/data/mods/Magiclysm/bionics.json index 8e1cb44b047cc..26ceb9d13130d 100644 --- a/data/mods/Magiclysm/bionics.json +++ b/data/mods/Magiclysm/bionics.json @@ -20,7 +20,7 @@ "description": "Internal tank for blood power generator bionic.", "volume": "751 ml", "weight": "1 g", - "price": 0, + "price": "0 cent", "material": [ "plastic" ], "symbol": "(", "color": "magenta", diff --git a/data/mods/Magiclysm/items/alchemy_items.json b/data/mods/Magiclysm/items/alchemy_items.json index 8ecd93afa9c66..ec1e6395a6a2a 100644 --- a/data/mods/Magiclysm/items/alchemy_items.json +++ b/data/mods/Magiclysm/items/alchemy_items.json @@ -6,7 +6,7 @@ "description": "This strangely shaped rock was once a part of an owlbear's complex digestive system, creating a link between owl throat and bear stomach. It is possible that it could serve a similar purpose in alchemy, helping to bind together two disparate halves.", "weight": "2 kg", "volume": "750 ml", - "price": 3100, + "price": "31 USD", "to_hit": -1, "material": [ "stone" ], "symbol": ";", @@ -55,8 +55,8 @@ "description": "A wooden band with copper trimmings to be worn on the head. Touching your temples with it on makes you feel very calm.", "weight": "700 g", "volume": "600ml", - "price": 1500, - "price_postapoc": 100, + "price": "15 USD", + "price_postapoc": "1 USD", "material": [ "copper", "wood" ], "symbol": "[", "color": "brown", @@ -74,8 +74,8 @@ "description": "A wooden band with silver trimmings to be worn on the head. Touching your temples with it on makes you feel very calm.", "weight": "700 g", "volume": "600ml", - "price": 3000, - "price_postapoc": 200, + "price": "30 USD", + "price_postapoc": "2 USD", "material": [ "silver", "wood" ], "symbol": "[", "color": "light_gray", @@ -108,7 +108,7 @@ "name": { "str": "large adrenal gland" }, "description": "An organ located above the kidneys responsible for secretion of adrenaline, cortisol, and aldosterone. This one is huge, whether by nature or mutation.", "delete": { "flags": [ "SMOKABLE" ] }, - "price": 2000 + "price": "20 USD" }, { "id": "glow_dust", @@ -117,7 +117,7 @@ "color": "yellow", "name": "glow dust", "description": "The powdered remains of a will-o-wisps's physical form. It seems to still possess an otherworldly glow.", - "price": 3800, + "price": "38 USD", "material": [ "powder" ], "weight": "5 g", "volume": "250 ml" @@ -130,7 +130,7 @@ "description": "Powered by the magic of glow powder and lesser mana potions, this extremely expensive little light will provide just enough light to read by for at least a decade. Use it to close the cover and hide the light.", "weight": "270 g", "volume": "250 ml", - "price": 125000, + "price": "1 kUSD 250 USD", "material": [ "glass" ], "symbol": ",", "color": "light_blue", @@ -150,7 +150,7 @@ "description": "Powered by the magic of glow powder and lesser mana potions, this extremely expensive little light will provide just enough light to read by for at least a decade. The cover is closed. Use it to open the cover and show the light.", "weight": "270 g", "volume": "250 ml", - "price": 125000, + "price": "1 kUSD 250 USD", "material": [ "glass" ], "symbol": ",", "color": "light_blue", @@ -164,7 +164,7 @@ "color": "light_gray", "name": "bulette plate", "description": "The great plates from behind a bulette's head have always been prized for use in shield and armor making.", - "price": 48000, + "price": "480 USD", "material": [ "arcane_skin" ], "weight": "30 kg", "volume": "3 L" @@ -176,7 +176,7 @@ "color": "red", "name": "bulette pearl", "description": "As a bulette burrows through the earth its gills collect minute amounts of precious metals and gems which slowly aggregate into lustrous gemstones prized for their beauty and power.", - "price": 10000, + "price": "100 USD", "material": [ "gemstone" ], "weight": "120 g", "volume": "250 ml" @@ -204,7 +204,7 @@ "description": "A long sucking apparatus harvested from stirge corpse. Makes a poor melee weapon.", "volume": "100 ml", "weight": "100 g", - "price": 2000, + "price": "20 USD", "symbol": ",", "color": "red", "to_hit": -1, @@ -221,7 +221,7 @@ "color": "red", "name": { "str": "chunk of demon chitin", "str_pl": "chunks of demon chitin" }, "description": "A piece of demon spider exoskeleton. It is light and very durable, and probably has some magical properties.", - "price": 1000, + "price": "10 USD", "material": [ "demon_chitin" ], "weight": "89 g", "volume": "250 ml", @@ -245,7 +245,7 @@ "symbol": "/", "color": "red", "name": "demon chitin plate", - "price": 15225, + "price": "152 USD 25 cent", "material": [ "demon_chitin" ], "weight": "10 kg", "volume": "4 L", @@ -266,14 +266,14 @@ "volume": "250 ml", "weapon_category": [ "SHIVS" ], "flags": [ "SPEAR", "SHEATH_KNIFE" ], - "price": 1500, + "price": "15 USD", "melee_damage": { "stab": 8 } }, { "type": "AMMO", "id": "alumentum", "category": "spare_parts", - "price": 900, + "price": "9 USD", "name": { "str_sp": "alumentum" }, "symbol": "=", "color": "light_blue", @@ -333,8 +333,8 @@ "description": "Mana bombs are powerful explosive devices developed by a little-known alchemist group for use against enemy spellcasters. These bombs are fueled by pure arcane energy and can kill instantly. The exact workings are unclear, but they appear to use some kind of massive mana burn.", "weight": "430 g", "volume": "200 ml", - "price": 2000, - "price_postapoc": 550, + "price": "20 USD", + "price_postapoc": "5 USD 50 cent", "to_hit": -1, "material": [ "crystallized_mana", "concentrated_mana" ], "symbol": "*", @@ -358,8 +358,8 @@ "description": "The liquid in the bottle is sizzling. Throwing it away from you, preferably at an enemy, would be a very good idea.", "weight": "430 g", "volume": "200 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -3, "material": [ "concentrated_mana", "crystallized_mana" ], "symbol": "*", diff --git a/data/mods/Magiclysm/items/archery.json b/data/mods/Magiclysm/items/archery.json index aa34008ffc7f6..6427a76a65ace 100644 --- a/data/mods/Magiclysm/items/archery.json +++ b/data/mods/Magiclysm/items/archery.json @@ -7,7 +7,7 @@ "color": "white", "name": { "str": "Ichaival" }, "description": "Ichaival, the bow of Odin. Rumored to fire 10 arrows with every pull of the string. It has gold and silver ornaments on it, as well as an ornate Raven.", - "price": 160000, + "price": "1 kUSD 600 USD", "material": [ "orichalcum_metal", "gold", "wood" ], "flags": [ "FIRE_TWOHAND", @@ -57,7 +57,7 @@ { "type": "AMMO", "id": "arrow_odin", - "price": 3500, + "price": "35 USD", "name": "orichalcum arrow", "symbol": "=", "color": "white", @@ -80,7 +80,7 @@ { "id": "arrow_druid_crafted", "type": "AMMO", - "price": 25000, + "price": "250 USD", "name": { "str": "tangler arrow" }, "symbol": "=", "color": "green", @@ -88,7 +88,7 @@ "description": "An arrow with a fragment of a druid rune in the arrowhead. It unleashes a storm of entangling vegetation when it strikes.", "material": [ { "type": "wood", "portion": 81 }, { "type": "steel", "portion": 19 } ], "volume": "90 ml", - "price_postapoc": 100, + "price_postapoc": "1 USD", "weight": "32 g", "longest_side": "76 cm", "melee_damage": { "bash": 3, "cut": 1 }, @@ -172,8 +172,8 @@ "name": { "str": "quiver of holding +1", "str_pl": "quivers of holding +1" }, "description": "A quiver enchanted to hold 40 arrows or bolts while not taking up any more space than a normal quiver. Rarely made after the invention of firearms.", "copy-from": "quiver", - "price": 50000, - "price_postapoc": 2000, + "price": "500 USD", + "price_postapoc": "20 USD", "looks_like": "quiver", "pocket_data": [ { diff --git a/data/mods/Magiclysm/items/armor.json b/data/mods/Magiclysm/items/armor.json index ea6e6fbd7e193..305610abcc80f 100644 --- a/data/mods/Magiclysm/items/armor.json +++ b/data/mods/Magiclysm/items/armor.json @@ -124,8 +124,8 @@ "color": "red", "name": { "str": "demon chitin dog mesh harness", "str_pl": "demon chitin dog mesh harnesses" }, "description": "A makeshift harness of demon chitin fitted to a thin mesh protecting the neck to flank of canines. You could put this on a friendly dog.", - "price": 50000, - "price_postapoc": 5000, + "price": "500 USD", + "price_postapoc": "50 USD", "material": [ "demon_chitin" ], "weight": "4862 g", "environmental_protection": 8 @@ -137,8 +137,8 @@ "color": "green", "name": { "str": "demon chitin horse armor" }, "description": "A makeshift assembly of criniere, peytral and croupiere made from demon chitin fitted to a thin mesh. You could put this on a friendly horse.", - "price": 120000, - "price_postapoc": 12000, + "price": "1 kUSD 200 USD", + "price_postapoc": "120 USD", "material": [ "demon_chitin", "steel" ], "weight": "31500 g", "volume": "150 L", diff --git a/data/mods/Magiclysm/items/bionics.json b/data/mods/Magiclysm/items/bionics.json index c3f071a13ec3d..d67e6526dcb23 100644 --- a/data/mods/Magiclysm/items/bionics.json +++ b/data/mods/Magiclysm/items/bionics.json @@ -5,7 +5,7 @@ "type": "BIONIC_ITEM", "name": { "str": "Blood Power Generator CBM" }, "description": "Using the latest advancement in technomancy this bionic is able to convert the innate energy stored in blood into bionic power. The stronger the blood the better. It can hold up to 100 mL of blood.", - "price": 450000, + "price": "4 kUSD 500 USD", "weight": "500 g", "difficulty": 8 }, @@ -20,7 +20,7 @@ "type": "BIONIC_ITEM", "name": { "str": "Crystallized Mana Nose Replacement CBM" }, "description": "A large gem made with crystallized mana and some other stabilizing metals. Comes with a specially designed power pack (installed into the skull) that does not interfere with your mana ley lines. WARNING: for Technomancer use only. By using this spell you are waiving all liability of Frikken Laser Beams Inc. and its subsidiaries.", - "price": 450000, + "price": "4 kUSD 500 USD", "weight": "750 g", "volume": "177 ml", "difficulty": 8 diff --git a/data/mods/Magiclysm/items/black_dragon_items.json b/data/mods/Magiclysm/items/black_dragon_items.json index 779172f9bfb83..dfe4a19e739b1 100644 --- a/data/mods/Magiclysm/items/black_dragon_items.json +++ b/data/mods/Magiclysm/items/black_dragon_items.json @@ -6,7 +6,7 @@ "symbol": "o", "color": "black_white", "name": "black dragon scale", - "price": 2500, + "price": "25 USD", "material": [ "black_dragon_scales" ], "weight": "380 g", "volume": "75 ml", @@ -35,7 +35,7 @@ "comestible_type": "FOOD", "symbol": ",", "description": "A carefully folded raw hide harvested from a black dragon. It is a large enough piece that it is workable to make armor, and with enough scales you could make scale mail.", - "price": 50000, + "price": "500 USD", "material": [ "black_dragon_hide", "flesh" ], "flags": [ "NO_SALVAGE", "TRADER_AVOID" ], "vitamins": [ ], @@ -49,7 +49,7 @@ "description": "A treated black dragon hide which is undergoing the chemical processes required to become workable. You will be able to activate it to unroll and make use of it when it is done.", "weight": "2500 g", "volume": "4 L", - "price": 0, + "price": "0 cent", "to_hit": -2, "material": [ "flesh", "black_dragon_hide" ], "symbol": ",", @@ -72,7 +72,7 @@ "color": "black_white", "name": "black dragon hide", "description": "Prepared hide from a black dragon. Hard, acid-resistant, and with more scales could make a suit of armor as hard as steel and half as heavy.", - "price": 50000, + "price": "500 USD", "material": [ "black_dragon_hide" ], "weight": "2500 g", "volume": "4 L", @@ -97,7 +97,7 @@ "description": "Boots made of black incredibly durable dragonscale. Very protective, and surprisingly light.", "weight": "945 g", "volume": "3250 ml", - "price": 75000, + "price": "750 USD", "to_hit": -2, "material": [ "black_dragon_hide", "black_dragon_scales" ], "symbol": "[", @@ -117,7 +117,7 @@ "description": "Boots made of very durable black dragonhide. Very protective, and surprisingly light.", "weight": "655 g", "volume": "3250 ml", - "price": 50000, + "price": "500 USD", "to_hit": -2, "material": [ "black_dragon_hide" ], "symbol": "[", @@ -138,7 +138,7 @@ "use_action": { "type": "transform", "target": "helmet_black_dragon_scale_raised", "msg": "You raise your visor." }, "weight": "856 g", "volume": "2500 ml", - "price": 58000, + "price": "580 USD", "to_hit": -1, "material": [ "black_dragon_hide", "black_dragon_scales" ], "symbol": "[", @@ -176,7 +176,7 @@ "description": "A helmet made from very durable black dragonhide. It protects your head well, but doesn't cover your face.", "weight": "585 g", "volume": "2 L", - "price": 58000, + "price": "580 USD", "to_hit": -1, "material": [ "black_dragon_hide" ], "symbol": "[", @@ -197,7 +197,7 @@ "description": "A full suit of incredibly durable black dragon scale mail. It comes with all the accoutrements that cover your torso, legs, and arms, with the benefit of being very light and flexible.", "weight": "4250 g", "volume": "12 L", - "price": 2000000, + "price": "20 kUSD", "to_hit": -3, "material": [ "black_dragon_hide", "black_dragon_scales" ], "symbol": "[", @@ -217,7 +217,7 @@ "description": "A full suit of very durable black dragonhide armor. It comes with all the accoutrements that cover your torso, legs, and arms, with the benefit of being very light and flexible.", "weight": "3 kg", "volume": "11 L", - "price": 2000000, + "price": "20 kUSD", "to_hit": -3, "material": [ "black_dragon_hide" ], "symbol": "[", @@ -237,7 +237,7 @@ "description": "A pair of heavy-duty gauntlets made of incredibly durable black dragonscale that covers your hands.", "weight": "380 g", "volume": "1 L", - "price": 180000, + "price": "1 kUSD 800 USD", "to_hit": 2, "material": [ "black_dragon_hide", "black_dragon_scales" ], "symbol": "[", @@ -256,7 +256,7 @@ "description": "A pair of gloves made of very durable black dragonhide, modified to be easy to wear while providing maximum protection under extreme conditions.", "weight": "230 g", "volume": "750 ml", - "price": 180000, + "price": "1 kUSD 800 USD", "to_hit": 2, "material": [ "black_dragon_hide" ], "symbol": "[", @@ -397,8 +397,8 @@ "description": "A custom-built backpack. Made of very durable dragon leather and carefully crafted to hold as much stuff as possible.", "weight": "900 g", "volume": "5250 ml", - "price": 240000, - "price_postapoc": 3250, + "price": "2 kUSD 400 USD", + "price_postapoc": "32 USD 50 cent", "material": [ "black_dragon_hide" ], "symbol": "[", "looks_like": "backpack", @@ -426,8 +426,8 @@ "name": { "str": "XL dragonhide backpack" }, "weight": "1200 g", "volume": "6250 ml", - "price": 280000, - "price_postapoc": 3450, + "price": "2 kUSD 800 USD", + "price_postapoc": "34 USD 50 cent", "symbol": "[", "pocket_data": [ { diff --git a/data/mods/Magiclysm/items/books.json b/data/mods/Magiclysm/items/books.json index ac77565ed3c25..ba2bc30ed15a7 100644 --- a/data/mods/Magiclysm/items/books.json +++ b/data/mods/Magiclysm/items/books.json @@ -8,8 +8,8 @@ "weight": "1587 g", "volume": "1750 ml", "longest_side": "22 cm", - "price": 8200, - "price_postapoc": 750, + "price": "82 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "blue", @@ -30,8 +30,8 @@ "description": "A beginner textbook on magical theories.", "weight": "1087 g", "volume": "1450 ml", - "price": 5200, - "price_postapoc": 550, + "price": "52 USD", + "price_postapoc": "5 USD 50 cent", "required_level": 0, "max_level": 2, "intelligence": 9, @@ -47,8 +47,8 @@ "description": "This book goes into details about different ways to boost one's caster level above what one would normally achieve. Domination schools can be boosted by various items detailed inside, while harmony schools can be boosted by circumstances. Regardless, the book cautions that this boost can not exceed 1 + ( your highest caster level in that school / 5 ). For animist, they get a boost if they stand in blood. More blood means a higher maximum boost. Stormshapers gets a boost while being outside during precipitation. More precipitation means a higher maximum boost. Earthshapers get a boost by being underground, and by standing on dirt, sand, clay or the like. Apparently, standing in pits is also very effective. Druids gets a boost by standing on grass, fern, bushes, and the like. Hugging a young tree gives among the highest possible boosts for druids.", "weight": "1087 g", "volume": "1450 ml", - "price": 5200, - "price_postapoc": 550, + "price": "52 USD", + "price_postapoc": "5 USD 50 cent", "required_level": 0, "max_level": 2, "intelligence": 9, @@ -63,8 +63,8 @@ "description": "This book is written in a runic language unfamiliar to you. Fortunately, there are several very detailed pictures that demonstrate the process of forging a sword from an ingot of silvery metal. You get the impression that this is some sort of textbook for blacksmiths.", "weight": "654 g", "volume": "1250 ml", - "price": 6400, - "price_postapoc": 2250, + "price": "64 USD", + "price_postapoc": "22 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "blue", diff --git a/data/mods/Magiclysm/items/books_lore.json b/data/mods/Magiclysm/items/books_lore.json index 38093b7d564fd..edfe596776f22 100644 --- a/data/mods/Magiclysm/items/books_lore.json +++ b/data/mods/Magiclysm/items/books_lore.json @@ -44,7 +44,7 @@ "description": "A photo of a jovial, old wizard, he seems to be dancing with a coat rack in this basement. There is a stack of suitcases in the background.", "weight": "1 g", "volume": "10 ml", - "price": 800, + "price": "8 USD", "material": [ "paper" ], "symbol": "*", "color": "light_gray" @@ -68,8 +68,8 @@ "weight": "484 g", "volume": "654 ml", "longest_side": "23 cm", - "price": 4399, - "price_postapoc": 1500, + "price": "43 USD 99 cent", + "price_postapoc": "15 USD", "material": [ "paper" ], "copy-from": "book_nonf_soft_tpl", "melee_damage": { "bash": 2 } diff --git a/data/mods/Magiclysm/items/cast_spell_items.json b/data/mods/Magiclysm/items/cast_spell_items.json index d7525ab4ca796..e0237073761f5 100644 --- a/data/mods/Magiclysm/items/cast_spell_items.json +++ b/data/mods/Magiclysm/items/cast_spell_items.json @@ -17,7 +17,7 @@ "comestible_type": "DRINK", "flags": [ "EATEN_COLD", "NO_AUTO_CONSUME", "NUTRIENT_OVERRIDE" ], "phase": "liquid", - "price": 2500, + "price": "25 USD", "freezing_point": 4 }, { @@ -27,7 +27,7 @@ "copy-from": "mana_potion_lesser", "use_action": { "type": "cast_spell", "spell_id": "potion_recover_mana", "no_fail": true, "level": 5 }, "calories": 0, - "price": 10000 + "price": "100 USD" }, { "id": "mana_potion_greater", @@ -36,7 +36,7 @@ "copy-from": "mana_potion_lesser", "calories": 0, "use_action": { "type": "cast_spell", "spell_id": "potion_recover_mana", "no_fail": true, "level": 15 }, - "price": 30000 + "price": "300 USD" }, { "id": "cats_grace_potion", @@ -47,7 +47,7 @@ "calories": 25, "use_action": { "type": "cast_spell", "spell_id": "cats_grace", "no_fail": true, "level": 25 }, "color": "yellow", - "price": 3000 + "price": "30 USD" }, { "id": "ogres_strength_potion", @@ -87,7 +87,7 @@ "copy-from": "mana_potion_lesser", "calories": 86, "use_action": { "type": "cast_spell", "spell_id": "flask_clairvoyance", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_spear", @@ -97,7 +97,7 @@ "copy-from": "mana_potion_lesser", "use_action": { "type": "cast_spell", "spell_id": "flask_spear", "no_fail": true, "level": 0 }, "calories": 0, - "price": 40000 + "price": "400 USD" }, { "id": "flask_confusion", @@ -107,7 +107,7 @@ "copy-from": "mana_potion_lesser", "calories": 0, "use_action": { "type": "cast_spell", "spell_id": "flask_confusion", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_teleport_rand", @@ -117,7 +117,7 @@ "copy-from": "mana_potion_lesser", "calories": 220, "use_action": { "type": "cast_spell", "spell_id": "flask_teleport_rand", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_teleport", @@ -127,7 +127,7 @@ "copy-from": "mana_potion_lesser", "calories": 260, "use_action": { "type": "cast_spell", "spell_id": "flask_teleport", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_shadow_field", @@ -137,7 +137,7 @@ "copy-from": "mana_potion_lesser", "use_action": { "type": "cast_spell", "spell_id": "flask_shadow_field", "no_fail": true, "level": 0 }, "calories": 0, - "price": 40000 + "price": "400 USD" }, { "id": "flask_fireball", @@ -147,7 +147,7 @@ "copy-from": "mana_potion_lesser", "calories": 0, "use_action": { "type": "cast_spell", "spell_id": "flask_fireball", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_invisibility", @@ -157,7 +157,7 @@ "copy-from": "mana_potion_lesser", "calories": 77, "use_action": { "type": "cast_spell", "spell_id": "flask_invisibility", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_healing", @@ -167,7 +167,7 @@ "copy-from": "mana_potion_lesser", "calories": 358, "use_action": { "type": "cast_spell", "spell_id": "flask_healing", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_feather", @@ -177,7 +177,7 @@ "copy-from": "mana_potion_lesser", "calories": 57, "use_action": { "type": "cast_spell", "spell_id": "flask_feather", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_night_vision", @@ -187,7 +187,7 @@ "copy-from": "mana_potion_lesser", "calories": 56, "use_action": { "type": "cast_spell", "spell_id": "flask_night_vision", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_charm", @@ -197,7 +197,7 @@ "copy-from": "mana_potion_lesser", "calories": 21, "use_action": { "type": "cast_spell", "spell_id": "flask_charm", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_sludge_field", @@ -207,7 +207,7 @@ "copy-from": "mana_potion_lesser", "calories": 0, "use_action": { "type": "cast_spell", "spell_id": "flask_sludge_field", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_speed", @@ -217,7 +217,7 @@ "copy-from": "mana_potion_lesser", "calories": 26, "use_action": { "type": "cast_spell", "spell_id": "flask_speed", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_stamina", @@ -227,7 +227,7 @@ "copy-from": "mana_potion_lesser", "calories": 156, "use_action": { "type": "cast_spell", "spell_id": "flask_stamina", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_rebreather", @@ -237,7 +237,7 @@ "copy-from": "mana_potion_lesser", "calories": 121, "use_action": { "type": "cast_spell", "spell_id": "flask_rebreather", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_excitement", @@ -247,7 +247,7 @@ "copy-from": "mana_potion_lesser", "calories": 89, "use_action": { "type": "cast_spell", "spell_id": "flask_excitement", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_resistance", @@ -257,7 +257,7 @@ "copy-from": "mana_potion_lesser", "calories": 211, "use_action": { "type": "cast_spell", "spell_id": "flask_resistance", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_illumination", @@ -267,7 +267,7 @@ "copy-from": "mana_potion_lesser", "calories": 7, "use_action": { "type": "cast_spell", "spell_id": "flask_illumination", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_mana_regen", @@ -277,7 +277,7 @@ "copy-from": "mana_potion_lesser", "calories": 66, "use_action": { "type": "cast_spell", "spell_id": "flask_mana_regen", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_max_mana", @@ -287,7 +287,7 @@ "copy-from": "mana_potion_lesser", "calories": 76, "use_action": { "type": "cast_spell", "spell_id": "flask_max_mana", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_regeneration", @@ -297,7 +297,7 @@ "copy-from": "mana_potion_lesser", "calories": 344, "use_action": { "type": "cast_spell", "spell_id": "flask_regeneration", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_mood", @@ -307,7 +307,7 @@ "copy-from": "mana_potion_lesser", "calories": 65, "use_action": { "type": "cast_spell", "spell_id": "flask_mood", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_toxin", @@ -317,7 +317,7 @@ "copy-from": "mana_potion_lesser", "calories": 0, "use_action": { "type": "cast_spell", "spell_id": "flask_toxin", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "flask_venom", @@ -327,7 +327,7 @@ "copy-from": "mana_potion_lesser", "calories": 0, "use_action": { "type": "cast_spell", "spell_id": "flask_venom", "no_fail": true, "level": 0 }, - "price": 40000 + "price": "400 USD" }, { "id": "animist_doll_zombie", @@ -384,7 +384,7 @@ "comestible_type": "DRINK", "flags": [ "TRADER_AVOID", "NUTRIENT_OVERRIDE" ], "phase": "liquid", - "price": 2500, + "price": "25 USD", "freezing_point": -12 }, { diff --git a/data/mods/Magiclysm/items/caster_level_boosters.json b/data/mods/Magiclysm/items/caster_level_boosters.json index d37ad5d4a112f..33d591f994602 100644 --- a/data/mods/Magiclysm/items/caster_level_boosters.json +++ b/data/mods/Magiclysm/items/caster_level_boosters.json @@ -11,7 +11,7 @@ "description": "This elaborate contraption of wooden sticks under tension and tightly wound strings has a pebble with a magus rune on in its center. Once activated, this device will transform the stored elastic potential energy into arcane energy, boosting your caster level of magus spells by 1 for as long as the stored energy lasts.", "weight": "150 g", "volume": "250 ml", - "price": 200, + "price": "2 USD", "to_hit": -1, "material": [ "wood" ], "symbol": "&", @@ -37,7 +37,7 @@ "description": "This elaborate contraption of wooden sticks and strings contains a rapidly spinning pebble with magus rune on. You feel slightly empowered, as your caster level of magus spells is boosted by 1.", "weight": "150 g", "volume": "250 ml", - "price": 200, + "price": "2 USD", "to_hit": -1, "material": [ "wood" ], "symbol": "&", @@ -62,7 +62,7 @@ "description": "This intricate contraption consists of fine gears, screw drivers, belts, pulleys, springs and other clockwork. The gearwork is contained in a casing of magically treated glass. An elegantly drawn magus rune is caged in the center, and a wind-up key extends out of the casing, allowing the device to be powered. Once wound up, it will boost your magus caster level by 2 for as long as the energy lasts.", "weight": "500 g", "volume": "250 ml", - "price": 200, + "price": "2 USD", "to_hit": -1, "material": [ "glass", "iron" ], "symbol": "&", @@ -87,7 +87,7 @@ "description": "This intricate contraption consists of fine gears, screw drivers, belts, pulleys, springs and other clockwork parts moving in a mesmerizing dance. The gearwork is contained in a casing of magically treated glass and gives off a soft ticking noise. An elegantly drawn magus rune in the center is being spun and rotated in a neverending complex dance of arcane energy. The wind-up key extending from the casing slowly spins back into its original position. You feel empowered, as your caster level of magus spells is boosted by 2.", "weight": "500 g", "volume": "250 ml", - "price": 200, + "price": "2 USD", "to_hit": -1, "material": [ "glass", "iron" ], "symbol": "&", @@ -113,8 +113,8 @@ "description": "A thick candle of magically treated tallow with a kelvinist rune artfully inscribed on the side. It doesn't burn for quite as long as a regular candle, but it will boost your caster level of kelvinist spells by 1 while burning. You'll need a lighter or matches to light it.", "weight": "225 g", "volume": "250 ml", - "price": 100, - "price_postapoc": 50, + "price": "1 USD", + "price_postapoc": "50 cent", "to_hit": -2, "material": [ "beeswax" ], "symbol": ",", @@ -160,8 +160,8 @@ "description": "An masterfully crafted metal oil lamp with two elongated nozzles, each containing a wick. The surface is carved with intricate arcane symbols, including a prominent kelvinist rune. The magic of the lamp protects it from the wind and from setting your backpack aflame. It does not provide much light, but will boost your kelvinist caster level by 2 while burning. Use it to light it.", "weight": "820 g", "volume": "300 ml", - "price": 800, - "price_postapoc": 100, + "price": "8 USD", + "price_postapoc": "1 USD", "material": [ "iron" ], "symbol": ";", "color": "brown", @@ -209,8 +209,8 @@ "color": "brown", "name": { "str": "technomancer's clay tablet" }, "description": "A fire-hardened clay tablet depicting a technomancer rune. Breaking the tablet will release the stored magical energy, boosting your technomancer caster level by 1 for a while.", - "price": 2500, - "price_postapoc": 10, + "price": "25 USD", + "price_postapoc": "10 cent", "material": [ "clay", "stone" ], "weight": "969 g", "volume": "500 ml", @@ -232,8 +232,8 @@ "weight": "3500 g", "volume": "20 L", "longest_side": "40 cm", - "price": 12000, - "price_postapoc": 700, + "price": "120 USD", + "price_postapoc": "7 USD", "to_hit": -1, "material": [ "steel" ], "symbol": "%", @@ -268,8 +268,8 @@ "volume": "20 L", "longest_side": "40 cm", "turns_per_charge": 2000, - "price": 12000, - "price_postapoc": 700, + "price": "120 USD", + "price_postapoc": "7 USD", "to_hit": -1, "material": [ "steel" ], "symbol": "%", @@ -306,8 +306,8 @@ "weight": "169 g", "volume": "188 ml", "longest_side": "20 cm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": { "grip": "solid", "length": "hand", "surface": "point", "balance": "neutral" }, "material": [ "bone" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", 12 ] ], @@ -336,8 +336,8 @@ "weight": "230 g", "volume": "200 ml", "longest_side": "20 cm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "steel" ], "ammo": [ "biomancer_booster_sludge" ], "pocket_data": [ { "pocket_type": "MAGAZINE", "watertight": true, "ammo_restriction": { "biomancer_booster_sludge": 10 } } ], @@ -362,7 +362,7 @@ "weight": "265 g", "volume": "250 ml", "charges": 1, - "price": 0, + "price": "0 cent", "symbol": "~", "color": "pink", "phase": "liquid", diff --git a/data/mods/Magiclysm/items/comestibles.json b/data/mods/Magiclysm/items/comestibles.json index c9312283ebf73..67f478624d3ca 100644 --- a/data/mods/Magiclysm/items/comestibles.json +++ b/data/mods/Magiclysm/items/comestibles.json @@ -12,7 +12,7 @@ "healthy": 3, "calories": 3200, "description": "This egg laid by an owlbear seems almost indistinguishable from a large rock until you touch it and can feel the warm glow of potential life energy from within. It's hard to believe that an owlbear could grow so quickly from something so small. Perhaps you could carefully crack it open to get at the liquid golden goodness inside.", - "price": 300000, + "price": "3 kUSD", "material": [ "egg", "stone" ], "volume": "2500 ml", "fun": -18, @@ -28,8 +28,8 @@ "name": { "str_sp": "whiskey" }, "copy-from": "whiskey", "//": "Normal whiskey has been greatly devalued in the apocalypse by the disproportionate quantity of endless whiskey flasks in comparison to the number of survivors.", - "price": 250, - "price_postapoc": 1 + "price": "2 USD 50 cent", + "price_postapoc": "1 cent" }, { "type": "COMESTIBLE", @@ -55,7 +55,7 @@ "symbol": "0", "name": { "str": "hairball" }, "description": "A big, ugly ball of animal spit and licked-off hairs. Don't swallow it.", - "price": 0, + "price": "0 cent", "flags": [ "TRADER_AVOID", "EDIBLE_FROZEN" ], "fun": -20 }, @@ -73,7 +73,7 @@ "copy-from": "mushroom", "name": { "str": "scream mushroom" }, "description": "The mushrooms harvested from a dead shrieker. Could be used in potions.", - "price": 1400 + "price": "14 USD" }, { "id": "tea_green", @@ -81,7 +81,7 @@ "copy-from": "tea_green", "name": { "str_sp": "green tea" }, "//": "Same reason as whiskey", - "price_postapoc": 1 + "price_postapoc": "1 cent" }, { "id": "purified_meat", @@ -90,7 +90,7 @@ "extend": { "flags": [ "NUTRIENT_OVERRIDE" ] }, "name": { "str_sp": "purified meat" }, "description": "Indistinguishable from pre-Cataclysm lab grown beef. It should be excellent but somehow it's just edible.", - "price": 400 + "price": "4 USD" }, { "id": "impure_meat", @@ -99,6 +99,6 @@ "extend": { "flags": [ "NUTRIENT_OVERRIDE" ] }, "name": { "str_sp": "impure meat" }, "description": "Not as tainted as previously and tastes like the real thing. You do not want to cook this for your friends, though if you do they won't know the difference for a while.", - "price": 100 + "price": "1 USD" } ] diff --git a/data/mods/Magiclysm/items/constructs.json b/data/mods/Magiclysm/items/constructs.json index ee4941489f34d..4dac416faebd7 100644 --- a/data/mods/Magiclysm/items/constructs.json +++ b/data/mods/Magiclysm/items/constructs.json @@ -6,8 +6,8 @@ "color": "red", "name": "golem core", "description": "The \"heart\" of a golem. Makes a soft humming noise when you hold it close to your ear.", - "price": 10000, - "price_postapoc": 5000, + "price": "100 USD", + "price_postapoc": "50 USD", "material": [ "orichalcum_metal" ], "weight": "5 kg", "volume": "1 L", @@ -22,7 +22,7 @@ "name": "broken clay golem", "category": "other", "description": "A broken clay golem, looking like a piece of post-modern art. Could be smashed for clay.", - "price": 10000, + "price": "100 USD", "material": [ "clay" ], "weight": "122 kg", "volume": "120 L", @@ -38,7 +38,7 @@ "name": "broken plastic golem", "category": "other", "description": "A broken plastic golem, like a giant action figure chewed up by an equally giant puppy. You could smash it up into recycled plastic bits.", - "price": 100, + "price": "1 USD", "material": [ "plastic" ], "weight": "70 kg", "volume": "150 L", @@ -54,7 +54,7 @@ "name": "broken stone golem", "category": "other", "description": "A broken stone golem, not that much different from a big boulder. Could be smashed for stone.", - "price": 10000, + "price": "100 USD", "material": [ "stone" ], "weight": "162 kg", "volume": "120 L", @@ -70,7 +70,7 @@ "name": "broken iron golem", "category": "other", "description": "A broken iron golem, with all iron you would possibly ever need. Could be smashed for iron.", - "price": 100000, + "price": "1 kUSD", "material": [ "iron" ], "weight": "875 kg", "volume": "120 L", @@ -86,7 +86,7 @@ "name": { "str_sp": "broken forge born" }, "category": "other", "description": "A broken forge born, with all orichalcum you would possibly ever need. Could be smashed for orichalcum.", - "price": 100000, + "price": "1 kUSD", "material": [ "orichalcum_metal" ], "weight": "945 kg", "volume": "120 L", @@ -102,7 +102,7 @@ "name": "broken stone golem", "category": "other", "description": "A broken earthshaper's golem, almost the same as it's natural stone counterpart. Could be smashed for stone.", - "price": 10000, + "price": "100 USD", "material": [ "stone" ], "weight": "112 kg", "volume": "80 L", diff --git a/data/mods/Magiclysm/items/currency.json b/data/mods/Magiclysm/items/currency.json index 01035b6d00085..be733e8220abf 100644 --- a/data/mods/Magiclysm/items/currency.json +++ b/data/mods/Magiclysm/items/currency.json @@ -5,8 +5,8 @@ "id": "denarius", "name": { "str": "denarius", "str_pl": "denarii" }, "description": "Each of these mithril coins has a profile of Valzain, and strangely each of these coins is defaced in some way.", - "price": 2500, - "price_postapoc": 2500, + "price": "25 USD", + "price_postapoc": "25 USD", "weight": "1 g", "volume": "1 ml", "to_hit": -3, diff --git a/data/mods/Magiclysm/items/enchanted.json b/data/mods/Magiclysm/items/enchanted.json index 4f3b4238d4a39..96bf48ce424eb 100644 --- a/data/mods/Magiclysm/items/enchanted.json +++ b/data/mods/Magiclysm/items/enchanted.json @@ -24,7 +24,7 @@ "color": "brown", "name": { "str": "minor staff of the magi", "str_pl": "minor staves of the magi" }, "description": "A simple carved staff, made of wood. It faintly glows with magic when you cast spells. Wielding it slightly increases your mana regeneration", - "price": 10000, + "price": "100 USD", "material": [ "wood" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "weapon_category": [ "QUARTERSTAVES" ], @@ -46,7 +46,7 @@ "color": "brown", "name": { "str": "lesser staff of the magi", "str_pl": "lesser staves of the magi" }, "description": "A beautifully carved staff, made of enchanted wood. It faintly glows with magic when you cast spells, but it is not a sturdy melee weapon. Wielding it increases your mana regeneration.", - "price": 40000, + "price": "400 USD", "material": [ "wood" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "weapon_category": [ "QUARTERSTAVES" ], @@ -68,7 +68,7 @@ "color": "brown", "name": { "str": "greater staff of the magi", "str_pl": "greater staves of the magi" }, "description": "A beautifully carved staff, made of enchanted wood and mithril. It faintly glows with magic when you cast spells, but it is not a sturdy melee weapon. Wielding it greatly increases your mana regeneration.", - "price": 1000000, + "price": "10 kUSD", "material": [ "wood", "mithril_metal" ], "techniques": [ "WBLOCK_2", "RAPID", "SWEEP" ], "weapon_category": [ "QUARTERSTAVES" ], @@ -91,7 +91,7 @@ "color": "red", "name": { "str": "sinister minor staff of bleeding", "str_pl": "sinister minor staves of bleeding" }, "description": "A sinister looking staff, made of wood and with a red orb of crystallized mana at the handle. The orb and its rune faintly glow with magic when you cast spells. Wielding it slightly increases your mana regeneration and allows you to cast the bleed spell.", - "price": 15000, + "price": "150 USD", "pocket_data": [ { "pocket_type": "MAGAZINE", "holster": true, "rigid": true, "ammo_restriction": { "crystallized_mana": 5 } } ], "charges_per_use": 1, "use_action": [ { "type": "cast_spell", "spell_id": "bleed", "no_fail": true, "level": 5, "need_wielding": true } ] @@ -103,7 +103,7 @@ "description": "A blue pointed hat with stars stitched into it. Wearing it increases your maximum mana.", "weight": "390 g", "volume": "2 L", - "price": 9500, + "price": "95 USD", "price_postapoc": "1200 USD", "material": [ "cotton" ], "symbol": "^", @@ -140,8 +140,8 @@ "copy-from": "cloak_wool", "name": { "str": "Cloak of Morthylla the Lamia", "str_pl": "Cloaks of Morthylla the Lamia" }, "description": "This cloak seems to absorb light except for the pinpricks of stars that move across its surface.", - "price": 1500000, - "price_postapoc": 360000, + "price": "15 kUSD", + "price_postapoc": "3 kUSD 600 USD", "material": [ "black_dragon_hide" ], "symbol": "[", "color": "dark_gray", @@ -158,7 +158,7 @@ "name": { "str": "Bag of Infinite Throwing Knives", "str_pl": "Bags of Infinite Throwing Knives" }, "description": "This bag conjures a magical throwing knife on activation. Only refills when worn. It also boosts your throwing abilities.", "//": "the bag itself gives +3 to throwing instead of knifes because of stupid code oogie woogie, that make effects (and enchantments, it seems) being apply in the very first move after the giving. ie if you give +3 to throwing for a knife, spawn it, and then throw it, it wont be applied", - "price": 800000, + "price": "8 kUSD", "price_postapoc": "1800 USD", "volume": "100 ml", "weight": "160 g", diff --git a/data/mods/Magiclysm/items/enchanted_belts.json b/data/mods/Magiclysm/items/enchanted_belts.json index 29699f7ec9abd..a9300504510d3 100644 --- a/data/mods/Magiclysm/items/enchanted_belts.json +++ b/data/mods/Magiclysm/items/enchanted_belts.json @@ -6,7 +6,7 @@ "description": "A leather belt. Useful for making your pair of pants fit.", "weight": "102 g", "volume": "250 ml", - "price": 90000, + "price": "900 USD", "material": [ "leather", "steel" ], "symbol": "[", "color": "brown", @@ -213,7 +213,7 @@ ], "symbol": "[", "description": "A custom-built leather utility belt that instantly creates any tool that you reach for. Activate to sheathe/draw a weapon.", - "price": 500000, + "price": "5 kUSD", "material": [ "leather", "steel" ], "volume": "4 L", "flags": [ "VARSIZE", "WATER_FRIENDLY", "STURDY", "BELTED", "OVERSIZE" ], @@ -263,7 +263,7 @@ "description": "A long braided flexible steel bullwhip that narrows into a sharp blade at the end. Easily capable of slicing and dicing anything that comes at you. It transforms back into a belt.", "weight": "2154 g", "volume": "2 L", - "price": 350000, + "price": "3 kUSD 500 USD", "material": [ "steel" ], "flags": [ "REACH_ATTACK", "REACH3", "WHIP", "UNBREAKABLE_MELEE" ], "techniques": [ "WBLOCK_1", "SWEEP", "WHIP_DISARM", "WRAP" ], diff --git a/data/mods/Magiclysm/items/enchanted_boots.json b/data/mods/Magiclysm/items/enchanted_boots.json index 5099921b49c6f..d02ed20e1d32c 100644 --- a/data/mods/Magiclysm/items/enchanted_boots.json +++ b/data/mods/Magiclysm/items/enchanted_boots.json @@ -225,8 +225,8 @@ "description": "One of the traditional items of the ancient elven warrior societies, these soft leather boots are worked with silver inlays in the shape of vines and leaves. They allow the wearer to walk in complete silence and move faster when in the wilderness.", "weight": "902 g", "volume": "2 L", - "price": 300000, - "price_postapoc": 15000, + "price": "3 kUSD", + "price_postapoc": "150 USD", "to_hit": -1, "material": [ "leather" ], "symbol": "[", diff --git a/data/mods/Magiclysm/items/enchanted_bracers.json b/data/mods/Magiclysm/items/enchanted_bracers.json index 49f1af91fcc8a..9b6bd24c104f2 100644 --- a/data/mods/Magiclysm/items/enchanted_bracers.json +++ b/data/mods/Magiclysm/items/enchanted_bracers.json @@ -7,7 +7,7 @@ "description": "A full assembly of medieval arm protection.", "weight": "1520 g", "volume": "2500 ml", - "price": 20000, + "price": "200 USD", "to_hit": -1, "material": [ "steel", "leather" ], "symbol": "[", diff --git a/data/mods/Magiclysm/items/enchanted_cloaks.json b/data/mods/Magiclysm/items/enchanted_cloaks.json index f7836c72a52e3..d9f8fc5e4851d 100644 --- a/data/mods/Magiclysm/items/enchanted_cloaks.json +++ b/data/mods/Magiclysm/items/enchanted_cloaks.json @@ -14,7 +14,7 @@ "looks_like": "cloak_leather", "weight": "2060 g", "volume": "3050 ml", - "price": 100000, + "price": "1 kUSD", "symbol": "w", "color": "blue", "material": [ "magical_material" ], @@ -51,7 +51,7 @@ "looks_like": "cloak_leather", "weight": "2060 g", "volume": "3050 ml", - "price": 200000, + "price": "2 kUSD", "symbol": "w", "color": "brown", "material": [ "magical_material" ], @@ -86,7 +86,7 @@ "looks_like": "cloak_leather", "weight": "2060 g", "volume": "3050 ml", - "price": 150000, + "price": "1 kUSD 500 USD", "symbol": "w", "color": "green", "material": [ "magical_material" ], @@ -102,7 +102,7 @@ "looks_like": "cloak", "weight": "1175 g", "volume": "3 L", - "price": 150000, + "price": "1 kUSD 500 USD", "symbol": "w", "color": "green", "material": [ "cotton", "veggy" ], diff --git a/data/mods/Magiclysm/items/enchanted_clothes.json b/data/mods/Magiclysm/items/enchanted_clothes.json index 0eab0ef710147..54c8278b51292 100644 --- a/data/mods/Magiclysm/items/enchanted_clothes.json +++ b/data/mods/Magiclysm/items/enchanted_clothes.json @@ -15,7 +15,7 @@ "looks_like": "dress_shirt", "weight": "360 g", "volume": "750 ml", - "price": 200000, + "price": "2 kUSD", "symbol": "[", "color": "brown", "armor": [ @@ -34,8 +34,8 @@ "description": "A well-made pair of old-fashioned pants, made of silvery iridescent material. Comfortable, but lacks pockets. It shimmers as you look at it. Made of parabolan wool, it sometimes dimly shows reflections of things here and not. This particular one has piratical flairs and glitters with enchantment.", "weight": "312 g", "volume": "1750 ml", - "price": 490000, - "price_postapoc": 50000, + "price": "4 kUSD 900 USD", + "price_postapoc": "500 USD", "material": [ "parabolan_wool" ], "symbol": "[", "looks_like": "pants", @@ -61,8 +61,8 @@ "looks_like": "dress_shirt", "weight": "360 g", "volume": "750 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "symbol": "[", "color": "brown", "armor": [ @@ -80,8 +80,8 @@ "description": "A well-made pair of old-fashioned pants, made of silvery iridescent material. Comfortable, but lacks pockets. It shimmers as you look at it. Made of parabolan wool, it sometimes dimly shows reflections of things here and not.", "weight": "312 g", "volume": "1750 ml", - "price": 4900, - "price_postapoc": 500, + "price": "49 USD", + "price_postapoc": "5 USD", "material": [ "parabolan_wool" ], "symbol": "[", "looks_like": "pants", @@ -97,8 +97,8 @@ "description": "A padded greatcoat assembled by quilting rarely available iridescent wool that was intended as standalone armor, this is half the thickness of a historical gambeson due to the quality of its material. Famed for its resistance to arrows in olden times, one might wonder how effective it might be against modern projectiles.", "weight": "7110 g", "volume": "3750 ml", - "price": 400000, - "price_postapoc": 300000, + "price": "4 kUSD", + "price_postapoc": "3 kUSD", "to_hit": -5, "material": [ "parabolan_wool" ], "symbol": "[", @@ -161,7 +161,7 @@ "description": "A thick iridescent wool greatcoat famed for its resistance to arrows in olden times. Compared to conventional wool, this is much lighter and less warm. The sleeves are a lot thinner for flexibility and it drapes below your legs, providing additional protection there.", "weight": "6288 g", "volume": "3750 ml", - "price_postapoc": 150000, + "price_postapoc": "1 kUSD 500 USD", "to_hit": -5, "material": [ "parabolan_wool" ], "symbol": "[", @@ -228,7 +228,7 @@ "description": "A thick iridescent wool surcoat famed for its resistance to arrows in the olden times. Compared to conventional wool, this is much lighter and less warm. It drapes below your legs, providing additional protection there, and it lacks sleeves entirely.", "weight": "5472 g", "volume": "3000 ml", - "price_postapoc": 100000, + "price_postapoc": "1 kUSD", "to_hit": -5, "material": [ "parabolan_wool" ], "symbol": "[", @@ -284,7 +284,7 @@ "description": "Tough, fairly thick iridescent wool pants worn on their own alongside a gambeson. These are made of layered wool quilting offering very solid protection, specifically for the purposes of stopping arrows.", "weight": "1641 g", "volume": "1875 ml", - "price_postapoc": 100000, + "price_postapoc": "1 kUSD", "to_hit": -5, "material": [ "parabolan_wool" ], "symbol": "[", @@ -331,7 +331,7 @@ "description": "Thick iridescent wool gauntlets worn in lieu of metal or leather armor. These are much less encumbering and warm than conventional wool, but they offer excellent protection against arrows.", "weight": "348 g", "volume": "250 ml", - "price_postapoc": 40000, + "price_postapoc": "400 USD", "to_hit": -1, "material": [ "parabolan_wool" ], "symbol": "[", diff --git a/data/mods/Magiclysm/items/enchanted_gunmods.json b/data/mods/Magiclysm/items/enchanted_gunmods.json index e3eff7d2aa40b..62a3414bcb08f 100644 --- a/data/mods/Magiclysm/items/enchanted_gunmods.json +++ b/data/mods/Magiclysm/items/enchanted_gunmods.json @@ -7,7 +7,7 @@ "description": "Rather than using purely wipe media, an additional localized silence spell in this tube quiets gunshots going through to hearing-safe levels.", "weight": "804 g", "volume": "375 ml", - "price": 77000, + "price": "770 USD", "to_hit": 2, "material": [ "steel" ], "symbol": ":", @@ -30,7 +30,7 @@ "weight": "108 g", "volume": "250 ml", "integral_volume": "0 L", - "price": 36000, + "price": "360 USD", "material": [ "plastic", "steel" ], "symbol": ":", "color": "dark_gray", @@ -52,7 +52,7 @@ "weight": "108 g", "volume": "250 ml", "integral_volume": "0 L", - "price": 36000, + "price": "360 USD", "material": [ "plastic", "steel" ], "symbol": ":", "color": "dark_gray", @@ -74,7 +74,7 @@ "weight": "270 g", "volume": "250 ml", "integral_volume": "0 L", - "price": 68000, + "price": "680 USD", "material": [ "plastic", "steel" ], "symbol": ":", "color": "dark_gray", diff --git a/data/mods/Magiclysm/items/enchanted_masks.json b/data/mods/Magiclysm/items/enchanted_masks.json index 38a7c6dc4d950..377b9bee3be79 100644 --- a/data/mods/Magiclysm/items/enchanted_masks.json +++ b/data/mods/Magiclysm/items/enchanted_masks.json @@ -7,7 +7,7 @@ "description": "A generic magic mask.", "weight": "442 g", "volume": "750 ml", - "price": 200000, + "price": "2 kUSD", "to_hit": -3, "material": [ "steel", "leather" ], "symbol": "[", diff --git a/data/mods/Magiclysm/items/enchanted_melee.json b/data/mods/Magiclysm/items/enchanted_melee.json index 754e674ee3fa6..7d8f3b38d3daf 100644 --- a/data/mods/Magiclysm/items/enchanted_melee.json +++ b/data/mods/Magiclysm/items/enchanted_melee.json @@ -683,7 +683,7 @@ "weight": "1388 g", "volume": "1250 ml", "longest_side": "130 cm", - "price": 3900, + "price": "39 USD", "to_hit": 2, "material": [ "wood", "bone" ], "symbol": "/", @@ -703,7 +703,7 @@ "weight": "1422 g", "volume": "1350 ml", "longest_side": "130 cm", - "price": 3900, + "price": "39 USD", "to_hit": 3, "material": [ "hflesh", "bone" ], "symbol": "/", @@ -731,7 +731,7 @@ "weight": "995 g", "volume": "440 ml", "longest_side": "65 cm", - "price": 3900, + "price": "39 USD", "material": [ "steel" ], "symbol": "/", "color": "light_gray", @@ -752,7 +752,7 @@ "weight": "1000 g", "volume": "550 ml", "longest_side": "65 cm", - "price": 5000, + "price": "50 USD", "material": [ "steel" ], "symbol": "/", "color": "light_gray", @@ -779,7 +779,7 @@ "weight": "1530 g", "volume": "1550 ml", "longest_side": "185 cm", - "price": 3900, + "price": "39 USD", "to_hit": 4, "material": [ "wood", "diamond" ], "symbol": "/", @@ -798,7 +798,7 @@ "weight": "1600 g", "volume": "1550 ml", "longest_side": "185 cm", - "price": 15000, + "price": "150 USD", "to_hit": 4, "material": [ "wood", "diamond" ], "symbol": "/", @@ -820,7 +820,7 @@ "description": "A sword with an undulating blade, reminiscent of a flame. There is a Kelvinist rune embedded in the pommel.", "proportional": { "weight": 0.9, "melee_damage": { "all": 1.1 } }, "relative": { "to_hit": 1 }, - "price": 3900, + "price": "39 USD", "symbol": "/", "color": "light_gray", "weapon_category": [ "MEDIUM_SWORDS" ], @@ -839,8 +839,8 @@ "name": { "str": "Kelvinist Frostbind" }, "//": "Stats based on scimitar +2, a weapon that will cast freezing touch when it hits, has wide strike", "description": "This curved sword, reminiscent of a scimitar, has a handle with an embedded crystal from which a cold wind emanates. There are Kelvinist runes embedded in the blade.", - "price": 558000, - "price_postapoc": 21000, + "price": "5 kUSD 580 USD", + "price_postapoc": "210 USD", "proportional": { "weight": 0.8, "melee_damage": { "all": 1.2 } }, "relative": { "to_hit": 2 }, "techniques": [ "WBLOCK_2", "WIDE" ], @@ -869,7 +869,7 @@ "weight": "2850 g", "volume": "2025 ml", "longest_side": "90 cm", - "price": 3900, + "price": "39 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "wood", "copper", "silver" ], "symbol": "/", @@ -889,8 +889,8 @@ "weight": "3755 g", "volume": "3500 ml", "longest_side": "90 cm", - "price": 55800, - "price_postapoc": 21000, + "price": "558 USD", + "price_postapoc": "210 USD", "to_hit": 0, "material": [ "wood", "copper", "silver" ], "symbol": "/", @@ -917,7 +917,7 @@ "weight": "504 g", "volume": "500 ml", "longest_side": "25 cm", - "price": 3000, + "price": "30 USD", "material": [ "wood", "steel" ], "symbol": ";", "color": "light_gray", @@ -936,7 +936,7 @@ "weight": "504 g", "volume": "500 ml", "longest_side": "25 cm", - "price": 15000, + "price": "150 USD", "material": [ "wood", "steel" ], "symbol": ";", "color": "light_gray", @@ -973,7 +973,7 @@ }, "volume": "750 ml", "longest_side": "60 cm", - "price": 34000, + "price": "340 USD", "melee_damage": { "bash": 24 } }, { @@ -1000,7 +1000,7 @@ }, "volume": "3 L", "longest_side": "150 cm", - "price": 34000, + "price": "340 USD", "melee_damage": { "bash": 29 } }, { @@ -1014,7 +1014,7 @@ "weight": "2750 g", "volume": "3550 ml", "longest_side": "150 cm", - "price": 10000, + "price": "100 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "neutral" }, "material": [ "steel", "wood" ], "symbol": "/", diff --git a/data/mods/Magiclysm/items/enchanted_misc.json b/data/mods/Magiclysm/items/enchanted_misc.json index 688ba15c5f9c4..0c6e4d944923e 100644 --- a/data/mods/Magiclysm/items/enchanted_misc.json +++ b/data/mods/Magiclysm/items/enchanted_misc.json @@ -6,8 +6,8 @@ "color": "light_gray", "name": "heat cube", "description": "A smooth steel cube the size of your fist. Several buttons on the sides activate the powers of the cube.", - "price": 200000, - "price_postapoc": 500000, + "price": "2 kUSD", + "price_postapoc": "5 kUSD", "material": [ "steel" ], "weight": "500 g", "volume": "450 ml", @@ -52,7 +52,7 @@ "description": "A small gold skeleton key. You can activate it to unlock locked things.", "weight": "20 g", "volume": "1 ml", - "price": 500000, + "price": "5 kUSD", "material": [ "gold" ], "symbol": "[", "color": "yellow", @@ -69,7 +69,7 @@ "description": "This is a high quality engraved wooden torch. On command, the tip bursts into flame and produces a fair amount of light. It will burn forever.", "weight": "831 g", "volume": "750 ml", - "price": 0, + "price": "0 cent", "price_postapoc": "150 USD", "to_hit": 1, "material": [ "wood" ], @@ -147,7 +147,7 @@ "copy-from": "tailors_kit", "name": "enchanted tailor's kit", "description": "This is a high quality, engraved steel kit with a variety of needles, some plastic spools for thread, some small scissors, even a small heating element for melting and joining plastic. Use a tailor's kit to customize your clothing and armor. This uses your tailoring skill. It also contains one of those magic spiders that constantly, if slowly, makes new thread.", - "price": 100000, + "price": "1 kUSD", "price_postapoc": "1700 USD", "material": [ "steel" ], "charges_per_use": 1, @@ -190,7 +190,7 @@ "description": "This is a small glass box that contains a spider that diligently works day and night to produce silk thread that it stores in a reservoir you can open and retrieve it from.", "weight": "100 g", "volume": "100 ml", - "price": 100000, + "price": "1 kUSD", "price_postapoc": "1150 USD", "to_hit": -2, "material": [ "glass" ], @@ -208,8 +208,8 @@ "description": "A tiny piece of grooved metal designed to allow a shooter to quickly load a bolt-action rifle.", "weight": "40 g", "volume": "50ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", diff --git a/data/mods/Magiclysm/items/enchanted_ranged.json b/data/mods/Magiclysm/items/enchanted_ranged.json index 04d64e09a01b7..8e262051f616d 100644 --- a/data/mods/Magiclysm/items/enchanted_ranged.json +++ b/data/mods/Magiclysm/items/enchanted_ranged.json @@ -7,7 +7,7 @@ "name": { "str": "Druid composite bow" }, "//": "Equivalent to composite bow for dispersion/reload/weight/range/encumb/bash, with two mod slots added equivalent to other weapons getting techniques", "description": "A bow made of multiple materials to maximize energy efficiency. There are two Druid runes embedded at the tips.", - "price": 32000, + "price": "320 USD", "material": [ "wood", "bone" ], "flags": [ "FIRE_TWOHAND", @@ -49,7 +49,7 @@ "weight": "1333 g", "volume": "450 ml", "longest_side": "25 cm", - "price": 74000, + "price": "740 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": "(", @@ -80,8 +80,8 @@ "type": "GUN", "name": { "str": "Pistolet modèle Gardes de la Marine", "str_pl": "several Pistolet modèle Gardes de la Marine" }, "description": "These beautifully-made enchanted flintlock pistols were specially made for young noble scions in the Gardes de la Marine. They still exist today as unspeakably-rare heirlooms that remain combat-worthy due to their magical nature.", - "price": 74000, - "price_postapoc": 25750, + "price": "740 USD", + "price_postapoc": "257 USD 50 cent", "to_hit": -1, "material": [ "iron", "wood" ], "symbol": "(", @@ -107,7 +107,7 @@ "weight": "1539 g", "volume": "1750 ml", "longest_side": "90 cm", - "price": 8000, + "price": "80 USD", "to_hit": 2, "material": [ "steel" ], "symbol": "/", @@ -209,7 +209,7 @@ "type": "AMMO", "id": "sharped_bone", "category": "spare_parts", - "price": 1000, + "price": "10 USD", "name": { "str": "sharpened bone" }, "symbol": "=", "color": "dark_gray", @@ -233,7 +233,7 @@ "color": "yellow", "name": { "str": "bow of elvenkind", "str_pl": "bows of elvenkind" }, "description": "One of the traditional items of the ancient elven warrior societies, this bow is enchanted to fire further, hit harder, and last longer than any normal wooden bow of its design could. Before the Cataclysm they were still made in small quantities for ceremonial purposes but no longer saw battlefield use, since the special forces of Tokoyo, Hy-Brasil, Alfheim, and the other elven nations long ago switched to using firearms.", - "price": 42000, + "price": "420 USD", "//": "based on a light composite bow. The actual enchantments are 50% increased range and higher damage and durability, the relic_data is just to make it purple.", "material": [ "wood" ], "flags": [ @@ -254,7 +254,7 @@ "weight": "400 g", "volume": "1500 ml", "longest_side": "183 cm", - "price_postapoc": 30000, + "price_postapoc": "300 USD", "armor_data": { "armor": [ { diff --git a/data/mods/Magiclysm/items/enchanted_rings.json b/data/mods/Magiclysm/items/enchanted_rings.json index 78552932aaaf0..50197383e4735 100644 --- a/data/mods/Magiclysm/items/enchanted_rings.json +++ b/data/mods/Magiclysm/items/enchanted_rings.json @@ -6,7 +6,7 @@ "description": "A generic copper magic ring.", "weight": "4 g", "volume": "1 ml", - "price": 5000, + "price": "50 USD", "price_postapoc": "20 USD", "material": [ "copper" ], "symbol": "[", @@ -32,7 +32,7 @@ "description": "A generic silver magic ring.", "weight": "5 g", "volume": "1 ml", - "price": 5000, + "price": "50 USD", "price_postapoc": "20 USD", "material": [ "silver" ], "symbol": "[", @@ -58,7 +58,7 @@ "description": "A generic gold magic ring.", "weight": "9 g", "volume": "1 ml", - "price": 5000, + "price": "50 USD", "price_postapoc": "20 USD", "material": [ "gold" ], "symbol": "[", @@ -84,7 +84,7 @@ "description": "A generic platinum magic ring.", "weight": "11 g", "volume": "1 ml", - "price": 5000, + "price": "50 USD", "price_postapoc": "20 USD", "material": [ "platinum" ], "symbol": "[", diff --git a/data/mods/Magiclysm/items/enchanted_tokens.json b/data/mods/Magiclysm/items/enchanted_tokens.json index 7b1a63c1655b4..08c5e9e3fd46a 100644 --- a/data/mods/Magiclysm/items/enchanted_tokens.json +++ b/data/mods/Magiclysm/items/enchanted_tokens.json @@ -6,7 +6,7 @@ "category": "other", "weight": "8 g", "volume": "1 ml", - "price": 25000, + "price": "250 USD", "material": [ "silver" ], "symbol": "o", "color": "light_gray" diff --git a/data/mods/Magiclysm/items/enchanted_unarmed.json b/data/mods/Magiclysm/items/enchanted_unarmed.json index b1a36998a27ef..451f563df72d9 100644 --- a/data/mods/Magiclysm/items/enchanted_unarmed.json +++ b/data/mods/Magiclysm/items/enchanted_unarmed.json @@ -29,7 +29,7 @@ "volume": "500 ml", "weight": "970 g", "to_hit": 2, - "price_postapoc": 124000, + "price_postapoc": "1 kUSD 240 USD", "qualities": [ [ "HAMMER", 1 ] ], "flags": [ "ONLY_ONE", "DURABLE_MELEE", "NONCONDUCTIVE", "FLAMING" ], "relic_data": { @@ -91,7 +91,7 @@ "volume": "1 L", "weight": "981 g", "to_hit": 1, - "price_postapoc": 145000, + "price_postapoc": "1 kUSD 450 USD", "qualities": [ [ "HAMMER", 2 ] ], "techniques": [ "WBLOCK_1", "BRUTAL" ], "flags": [ "DURABLE_MELEE", "NONCONDUCTIVE", "OVERSIZE", "MESSY" ], diff --git a/data/mods/Magiclysm/items/enchanted_wands.json b/data/mods/Magiclysm/items/enchanted_wands.json index 83fa1210c5d8d..992083e6e23de 100644 --- a/data/mods/Magiclysm/items/enchanted_wands.json +++ b/data/mods/Magiclysm/items/enchanted_wands.json @@ -32,7 +32,7 @@ "weight": "230 g", "volume": "500 ml", "longest_side": "38 cm", - "price": 10000, + "price": "100 USD", "to_hit": 1, "material": [ "wood" ], "symbol": "|", @@ -56,7 +56,7 @@ "id": "wand_magic_missile_lesser", "name": { "str": "lesser wand of magic missile", "str_pl": "lesser wands of magic missile" }, "copy-from": "spell_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts magic missile.", "use_action": { "type": "cast_spell", "spell_id": "magic_missile", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -65,7 +65,7 @@ "id": "wand_magic_missile_greater", "name": { "str": "greater wand of magic missile", "str_pl": "greater wands of magic missile" }, "copy-from": "spell_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts magic missile.", "use_action": { "type": "cast_spell", "spell_id": "magic_missile", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -82,7 +82,7 @@ "id": "wand_fireball_lesser", "name": { "str": "lesser wand of fireball", "str_pl": "lesser wands of fireball" }, "copy-from": "spell_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts fireball.", "use_action": { "type": "cast_spell", "spell_id": "fireball", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -91,7 +91,7 @@ "id": "wand_fireball_greater", "name": { "str": "greater wand of fireball", "str_pl": "greater wands of fireball" }, "copy-from": "spell_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts fireball.", "use_action": { "type": "cast_spell", "spell_id": "fireball", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -108,7 +108,7 @@ "id": "wand_mana_beam_lesser", "name": { "str": "lesser wand of mana beam", "str_pl": "lesser wands of mana beam" }, "copy-from": "spell_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts mana beam.", "use_action": { "type": "cast_spell", "spell_id": "magus_mana_beam", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -117,7 +117,7 @@ "id": "wand_mana_beam_greater", "name": { "str": "greater wand of mana beam", "str_pl": "greater wands of mana beam" }, "copy-from": "spell_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts mana beam.", "use_action": { "type": "cast_spell", "spell_id": "magus_mana_beam", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -134,7 +134,7 @@ "id": "wand_point_flare_lesser", "name": { "str": "lesser wand of point flare", "str_pl": "lesser wands of point flare" }, "copy-from": "spell_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts point flare.", "use_action": { "type": "cast_spell", "spell_id": "point_flare", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -143,7 +143,7 @@ "id": "wand_point_flare_greater", "name": { "str": "greater wand of point flare", "str_pl": "greater wands of point flare" }, "copy-from": "spell_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts point flare.", "use_action": { "type": "cast_spell", "spell_id": "point_flare", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -160,7 +160,7 @@ "id": "wand_hoaryblast_lesser", "name": { "str": "lesser wand of hoary blast", "str_pl": "lesser wands of hoary blast" }, "copy-from": "spell_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts hoary blast.", "use_action": { "type": "cast_spell", "spell_id": "hoary_blast", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -169,7 +169,7 @@ "id": "wand_hoaryblast_greater", "name": { "str": "greater wand of hoary blast", "str_pl": "greater wands of hoary blast" }, "copy-from": "spell_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts hoary blast.", "use_action": { "type": "cast_spell", "spell_id": "hoary_blast", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -186,7 +186,7 @@ "id": "wand_cone_cold_lesser", "name": { "str": "lesser wand of cone of cold", "str_pl": "lesser wands of cone of cold" }, "copy-from": "spell_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts cone of cold.", "use_action": { "type": "cast_spell", "spell_id": "cone_cold", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -195,7 +195,7 @@ "id": "wand_cone_cold_greater", "name": { "str": "greater wand of cone of cold", "str_pl": "greater wands of cone of cold" }, "copy-from": "spell_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts cone of cold.", "use_action": { "type": "cast_spell", "spell_id": "cone_cold", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -204,7 +204,7 @@ "id": "wand_knock_minor", "name": { "str": "minor wand of knock", "str_pl": "minor wands of knock" }, "copy-from": "spell_wand", - "price": 5000, + "price": "50 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts knock.", "use_action": { "type": "cast_spell", "spell_id": "knock", "no_fail": true, "level": 5, "need_wielding": true } }, @@ -213,7 +213,7 @@ "id": "wand_knock_lesser", "name": { "str": "lesser wand of knock", "str_pl": "lesser wands of knock" }, "copy-from": "spell_wand", - "price": 10000, + "price": "100 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts knock.", "use_action": { "type": "cast_spell", "spell_id": "knock", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -222,7 +222,7 @@ "id": "wand_knock_greater", "name": { "str": "greater wand of knock", "str_pl": "greater wands of knock" }, "copy-from": "spell_wand", - "price": 15000, + "price": "150 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts knock.", "use_action": { "type": "cast_spell", "spell_id": "knock", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -231,7 +231,7 @@ "id": "wand_improved_knock_minor", "name": { "str": "minor wand of improved knock", "str_pl": "minor wands of improved knock" }, "copy-from": "spell_wand", - "price": 10000, + "price": "100 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts improved knock.", "use_action": { "type": "cast_spell", "spell_id": "improved_knock", "no_fail": true, "level": 5, "need_wielding": true } }, @@ -240,7 +240,7 @@ "id": "wand_improved_knock_lesser", "name": { "str": "lesser wand of improved knock", "str_pl": "lesser wands of improved knock" }, "copy-from": "spell_wand", - "price": 15000, + "price": "150 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts improved knock.", "use_action": { "type": "cast_spell", "spell_id": "improved_knock", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -249,7 +249,7 @@ "id": "wand_improved_knock_greater", "name": { "str": "greater wand of improved knock", "str_pl": "greater wands of improved knock" }, "copy-from": "spell_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with a mana crystal socket at the base that casts a spell when activated. This wand casts improved knock.", "use_action": { "type": "cast_spell", "spell_id": "improved_knock", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -266,7 +266,7 @@ "id": "wand_disp_magic_missile_lesser", "name": { "str": "disposable lesser wand of magic missile", "str_pl": "disposable lesser wands of magic missile" }, "copy-from": "disp_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts magic missile.", "use_action": { "type": "cast_spell", "spell_id": "magic_missile", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -275,7 +275,7 @@ "id": "wand_disp_magic_missile_greater", "name": { "str": "disposable greater wand of magic missile", "str_pl": "disposable greater wands of magic missile" }, "copy-from": "disp_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts magic missile.", "use_action": { "type": "cast_spell", "spell_id": "magic_missile", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -292,7 +292,7 @@ "id": "wand_disp_fireball_lesser", "name": { "str": "disposable lesser wand of fireball", "str_pl": "disposable lesser wands of fireball" }, "copy-from": "disp_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts fireball.", "use_action": { "type": "cast_spell", "spell_id": "fireball", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -301,7 +301,7 @@ "id": "wand_disp_fireball_greater", "name": { "str": "disposable greater wand of fireball", "str_pl": "disposable greater wands of fireball" }, "copy-from": "disp_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts fireball.", "use_action": { "type": "cast_spell", "spell_id": "fireball", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -318,7 +318,7 @@ "id": "wand_disp_mana_beam_lesser", "name": { "str": "disposable lesser wand of mana beam", "str_pl": "disposable lesser wands of mana beam" }, "copy-from": "disp_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts mana beam.", "use_action": { "type": "cast_spell", "spell_id": "magus_mana_beam", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -327,7 +327,7 @@ "id": "wand_disp_mana_beam_greater", "name": { "str": "disposable greater wand of mana beam", "str_pl": "disposable greater wands of mana beam" }, "copy-from": "disp_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts mana beam.", "use_action": { "type": "cast_spell", "spell_id": "magus_mana_beam", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -344,7 +344,7 @@ "id": "wand_disp_point_flare_lesser", "name": { "str": "disposable lesser wand of point flare", "str_pl": "disposable lesser wands of point flare" }, "copy-from": "disp_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts point flare.", "use_action": { "type": "cast_spell", "spell_id": "point_flare", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -353,7 +353,7 @@ "id": "wand_disp_point_flare_greater", "name": { "str": "disposable greater wand of point flare", "str_pl": "disposable greater wands of point flare" }, "copy-from": "disp_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts point flare.", "use_action": { "type": "cast_spell", "spell_id": "point_flare", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -370,7 +370,7 @@ "id": "wand_disp_hoaryblast_lesser", "name": { "str": "disposable lesser wand of hoary blast", "str_pl": "disposable lesser wands of hoary blast" }, "copy-from": "disp_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts hoary blast.", "use_action": { "type": "cast_spell", "spell_id": "hoary_blast", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -379,7 +379,7 @@ "id": "wand_disp_hoaryblast_greater", "name": { "str": "disposable greater wand of hoary blast", "str_pl": "disposable greater wands of hoary blast" }, "copy-from": "disp_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts hoary blast.", "use_action": { "type": "cast_spell", "spell_id": "hoary_blast", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -396,7 +396,7 @@ "id": "wand_disp_cone_cold_lesser", "name": { "str": "disposable lesser wand of cone of cold", "str_pl": "disposable lesser wands of cone of cold" }, "copy-from": "disp_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts cone of cold.", "use_action": { "type": "cast_spell", "spell_id": "cone_cold", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -405,7 +405,7 @@ "id": "wand_disp_cone_cold_greater", "name": { "str": "disposable greater wand of cone of cold", "str_pl": "disposable greater wands of cone of cold" }, "copy-from": "disp_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts cone of cold.", "use_action": { "type": "cast_spell", "spell_id": "cone_cold", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -414,7 +414,7 @@ "id": "wand_disp_knock_minor", "name": { "str": "disposable minor wand of knock", "str_pl": "disposable minor wands of knock" }, "copy-from": "disp_wand", - "price": 5000, + "price": "50 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts knock.", "use_action": { "type": "cast_spell", "spell_id": "knock", "no_fail": true, "level": 5, "need_wielding": true } }, @@ -423,7 +423,7 @@ "id": "wand_disp_knock_lesser", "name": { "str": "disposable lesser wand of knock", "str_pl": "disposable lesser wands of knock" }, "copy-from": "disp_wand", - "price": 10000, + "price": "100 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts knock.", "use_action": { "type": "cast_spell", "spell_id": "knock", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -432,7 +432,7 @@ "id": "wand_disp_knock_greater", "name": { "str": "disposable greater wand of knock", "str_pl": "disposable greater wands of knock" }, "copy-from": "disp_wand", - "price": 15000, + "price": "150 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts knock.", "use_action": { "type": "cast_spell", "spell_id": "knock", "no_fail": true, "level": 15, "need_wielding": true } }, @@ -441,7 +441,7 @@ "id": "wand_disp_improved_knock_minor", "name": { "str": "disposable minor wand of improved knock", "str_pl": "disposable minor wands of improved knock" }, "copy-from": "disp_wand", - "price": 10000, + "price": "100 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts improved knock.", "use_action": { "type": "cast_spell", "spell_id": "improved_knock", "no_fail": true, "level": 5, "need_wielding": true } }, @@ -450,7 +450,7 @@ "id": "wand_disp_improved_knock_lesser", "name": { "str": "disposable lesser wand of improved knock", "str_pl": "disposable lesser wands of improved knock" }, "copy-from": "disp_wand", - "price": 20000, + "price": "200 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts improved knock.", "use_action": { "type": "cast_spell", "spell_id": "improved_knock", "no_fail": true, "level": 10, "need_wielding": true } }, @@ -459,7 +459,7 @@ "id": "wand_disp_improved_knock_greater", "name": { "str": "disposable greater wand of improved knock", "str_pl": "disposable greater wands of improved knock" }, "copy-from": "disp_wand", - "price": 30000, + "price": "300 USD", "description": "A slender wooden wand with an embedded mana crystal at the base that casts a spell when activated. This wand casts improved knock.", "use_action": { "type": "cast_spell", "spell_id": "improved_knock", "no_fail": true, "level": 15, "need_wielding": true } } diff --git a/data/mods/Magiclysm/items/ethereal_items.json b/data/mods/Magiclysm/items/ethereal_items.json index 00817a0821be7..eb0a1993568bf 100644 --- a/data/mods/Magiclysm/items/ethereal_items.json +++ b/data/mods/Magiclysm/items/ethereal_items.json @@ -7,7 +7,7 @@ "weight": "1 g", "volume": "250 ml", "longest_side": "20 cm", - "price": 1, + "price": "1 cent", "to_hit": 2, "material": [ "concentrated_mana" ], "symbol": "[", @@ -37,7 +37,7 @@ "description": "This is a small flame you can hold in your hand. With a thought, you can cause it to light something on fire, or you can throw it to ignite something flammable.", "weight": "1 g", "volume": "1 ml", - "price": 0, + "price": "0 cent", "symbol": ",", "color": "red", "use_action": [ { "type": "firestarter", "moves": 20 } ], @@ -51,7 +51,7 @@ "description": "Small electric spark, that does not disappear under your force. With a thought, you can cause it to light something on fire, or you can throw it to ignite something flammable.", "weight": "1 g", "volume": "1 ml", - "price": 0, + "price": "0 cent", "symbol": ",", "color": "yellow", "use_action": [ { "type": "firestarter", "moves": 20 } ], @@ -67,7 +67,7 @@ "weight": "1 g", "material": [ "magical_material" ], "volume": "250 ml", - "price": 1, + "price": "1 cent", "to_hit": -2, "symbol": ",", "color": "light_green", @@ -83,7 +83,7 @@ "description": "A small magical light that you can read by.", "weight": "0 kg", "volume": "0 L", - "price": 0, + "price": "0 cent", "symbol": ",", "color": "light_green", "material": [ "magical_material" ], @@ -99,7 +99,7 @@ "weight": "1 kg", "volume": "5 L", "longest_side": "50 cm", - "price": 1, + "price": "1 cent", "to_hit": 1, "material": [ "concentrated_mana" ], "symbol": "[", @@ -120,7 +120,7 @@ "weight": "1 g", "volume": "250 ml", "longest_side": "15 cm", - "price": 1, + "price": "1 cent", "to_hit": -2, "material": [ "concentrated_mana" ], "symbol": "[", @@ -279,7 +279,7 @@ "description": "A large pouch of tough flesh on your back, filled with tiny tentacles that grasp and hold anything you place inside. It shifts and adjusts itself to minimize encumbrance.", "weight": "0 kg", "volume": "0 L", - "price": 0, + "price": "0 cent", "material": [ "flesh" ], "symbol": "[", "color": "green", @@ -376,8 +376,8 @@ "description": "A magically conjured quiver, marvelously light and easy to wear despite the arrows it holds.", "weight": "260 g", "volume": "500 ml", - "price": 6500, - "price_postapoc": 1000, + "price": "65 USD", + "price_postapoc": "10 USD", "melee_damage": { "bash": 2 }, "material": [ "leather" ], "symbol": "[", @@ -410,8 +410,8 @@ "description": "A magically conjured quiver, marvelously light and easy to wear despite the arrows it holds. This is an enhanced version, created by your increased mastery of the spell.", "weight": "260 g", "volume": "500 ml", - "price": 6500, - "price_postapoc": 1000, + "price": "65 USD", + "price_postapoc": "10 USD", "melee_damage": { "bash": 2 }, "material": [ "leather" ], "symbol": "[", @@ -484,7 +484,7 @@ "description": "This handful of fine dust glows with a growing intensity.", "weight": "1 g", "volume": "30 ml", - "price": 0, + "price": "0 cent", "symbol": "!", "color": "white", "initial_charges": 15, @@ -630,7 +630,7 @@ "description": "The manifestation of your rage. It won't disappear until you calm down.", "weight": "1 g", "volume": "1 ml", - "price": 3646, + "price": "36 USD 46 cent", "symbol": "o", "color": "white", "material": [ "magical_material" ], @@ -645,7 +645,7 @@ "description": "The manifestation of your rage. It won't disappear until you calm down.", "weight": "1 g", "volume": "1 ml", - "price": 3646, + "price": "36 USD 46 cent", "symbol": "o", "color": "white", "material": [ "magical_material" ], @@ -721,7 +721,7 @@ "color": "brown", "name": { "str": "impact sling" }, "description": "A leather sling, quivering with energy when in your palm to the point of almost tearing. A pebble appears when you begin spinning it.", - "price": 150, + "price": "1 USD 50 cent", "material": [ "leather" ], "flags": [ "NEVER_JAMS", @@ -739,7 +739,7 @@ "volume": "250 ml", "longest_side": "25 cm", "skill": "throw", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "ranged_damage": { "damage_type": "bash", "amount": 20 }, "range": 20, @@ -778,7 +778,7 @@ "description": "You have become the werewolf. Boys becoming men, men becoming wolves.", "weight": "1 g", "volume": "1 ml", - "price": 3646, + "price": "36 USD 46 cent", "symbol": "o", "color": "white", "material": [ "magical_material" ], @@ -866,7 +866,7 @@ "weight": "100 g", "volume": "100 ml", "longest_side": "15 cm", - "price": 1, + "price": "1 cent", "material": [ "concentrated_mana" ], "symbol": "[", "color": "light_gray", @@ -916,8 +916,8 @@ "weight": "1 g", "volume": "3050 ml", "longest_side": "298 mm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "concentrated_mana" ], "symbol": ")", @@ -1046,8 +1046,8 @@ "type": "GENERIC", "id": "magical_throwing_knife", "copy-from": "throwing_knife", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "name": { "str": "magical throwing knife", "str_pl": "magical throwing knives" }, "description": "A thin and flat knife made for throwing. Its ineffective cutting edge and odd shape make it unsuitable for use as a tool.", "material": [ "concentrated_mana" ], @@ -1290,8 +1290,8 @@ "type": "AMMO", "id": "elastic_potential_energy", "category": "spare_parts", - "price": 12000, - "price_postapoc": 2, + "price": "120 USD", + "price_postapoc": "2 cent", "name": { "str_sp": "elastic potential energy" }, "symbol": "=", "color": "yellow", @@ -1312,8 +1312,8 @@ "description": "A mixture of bark, moss, and leaves, glowing softly with verdant energy.", "weight": "50 g", "volume": "60 ml", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "wood" ], "symbol": "!", "color": "green", @@ -1421,8 +1421,8 @@ "description": "Your hands can spark with electricity powerful enough to heat metal to searing temperatures and weld it together. You can also zap the undead with it.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "$", "color": "red", "material": [ "concentrated_mana" ], @@ -1451,7 +1451,7 @@ "looks_like": "spear_wood", "description": "A twisted wooden spear whose branches twine together into a vicious point sticky with sap.", "weight": "1200 g", - "price_postapoc": 1, + "price_postapoc": "1 cent", "color": "green", "symbol": "/", "material": [ "wood" ], @@ -1462,7 +1462,7 @@ "to_hit": { "grip": "weapon", "length": "long", "surface": "point", "balance": "good" }, "flags": [ "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "SHEATH_SPEAR", "UNBREAKABLE_MELEE", "NO_REPAIR", "NO_SALVAGE" ], "weapon_category": [ "POLEARMS", "SPEARS" ], - "price": 1, + "price": "1 cent", "qualities": [ [ "COOK", 1 ] ], "relic_data": { "passive_effects": [ { "has": "WIELD", "hit_you_effect": [ { "id": "bramble_spear_slow", "hit_self": false } ] } ] } }, @@ -1474,7 +1474,7 @@ "description": "Your skin is bark-like and covered in thorns.", "weight": "6 kg", "volume": "7500 ml", - "price": 0, + "price": "0 cent", "material": [ "wood" ], "symbol": "x", "color": "brown", @@ -1523,8 +1523,8 @@ "description": "Your fingers are a series of knives made of bone and flesh. Enemies beware.", "weight": "0 g", "volume": "0 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "flesh" ], "symbol": ",", "color": "magenta", @@ -1544,7 +1544,7 @@ "description": "Covered in magical seaweed, you can travel and breathe underwater as long as this spell is in effect.", "weight": "0 g", "volume": "0 ml", - "price": 0, + "price": "0 cent", "material": [ "veggy" ], "symbol": "O", "color": "blue", @@ -1581,7 +1581,7 @@ "description": "You can easily walk on the surface of the water.", "weight": "0 g", "volume": "0 ml", - "price": 0, + "price": "0 cent", "material": [ "concentrated_mana" ], "symbol": "O", "color": "blue", @@ -1758,8 +1758,8 @@ "weight": "3 kg", "volume": "92 L", "longest_side": "550 mm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "water" ], "phase": "solid", @@ -1789,7 +1789,7 @@ "description": "You don't feel anything.", "weight": "0 g", "volume": "0 ml", - "price": 3646, + "price": "36 USD 46 cent", "symbol": "o", "color": "white", "material": [ "magical_material" ], @@ -1814,7 +1814,7 @@ "description": "Think as the bear. Move as the bear. Sleep as the bear.", "weight": "0 g", "volume": "0 ml", - "price": 3646, + "price": "36 USD 46 cent", "symbol": "o", "color": "white", "material": [ "magical_material" ], @@ -1846,11 +1846,11 @@ "name": { "str": "luck-bone" }, "description": "A bone from some creature or other, inhabited by benevolent spirits.", "color": "white", - "price": 0, + "price": "0 cent", "material": [ "bone" ], "weight": "225 g", "symbol": "%", - "price_postapoc": 10, + "price_postapoc": "10 cent", "volume": "250 ml", "longest_side": "40 cm", "relic_data": { "passive_effects": [ { "id": "ench_luck_bone" } ] } diff --git a/data/mods/Magiclysm/items/fuel.json b/data/mods/Magiclysm/items/fuel.json index b57f381330873..91745d907254e 100644 --- a/data/mods/Magiclysm/items/fuel.json +++ b/data/mods/Magiclysm/items/fuel.json @@ -8,7 +8,7 @@ "container": "flask_glass", "symbol": "~", "description": "Blood of a dragon, it radiates warmth and looking at it you see moving patterns form and disappear in it as if looking at an actual fire.", - "price": 750, + "price": "7 USD 50 cent", "material": [ "dragon_blood" ], "volume": "1 ml", "phase": "liquid", @@ -49,7 +49,7 @@ "weight": "265 g", "volume": "250 ml", "charges": 1, - "price": 0, + "price": "0 cent", "symbol": "~", "color": "light_blue", "phase": "liquid", diff --git a/data/mods/Magiclysm/items/furniture.json b/data/mods/Magiclysm/items/furniture.json index f038f85f07df3..6b90c72ea678b 100644 --- a/data/mods/Magiclysm/items/furniture.json +++ b/data/mods/Magiclysm/items/furniture.json @@ -7,7 +7,7 @@ "symbol": "Y", "color": "brown", "flags": [ "NO_SALVAGE", "FRAGILE_MELEE" ], - "price": 0, + "price": "0 cent", "price_postapoc": "1000 USD", "longest_side": "150 cm", "volume": "200 L", @@ -22,7 +22,7 @@ "description": "This is a high quality engraved wooden torch, placed into a wood and metal sconce and ready to be attached to a wall. It will burn forever with a smokeless light. Now you can light your wizard's ritual room in the traditional fashion.", "weight": "1531 g", "volume": "2250 ml", - "price": 0, + "price": "0 cent", "price_postapoc": "150 USD", "longest_side": "60 cm", "to_hit": 1, @@ -53,8 +53,8 @@ "symbol": "#", "color": "green", "flags": [ "NO_SALVAGE", "FRAGILE_MELEE" ], - "price": 3000, - "price_postapoc": 250, + "price": "30 USD", + "price_postapoc": "2 USD 50 cent", "longest_side": "95 cm", "volume": "30 L", "weight": "12 kg", diff --git a/data/mods/Magiclysm/items/generic.json b/data/mods/Magiclysm/items/generic.json index 21cf63c3aec2d..9d8e599ae6a4c 100644 --- a/data/mods/Magiclysm/items/generic.json +++ b/data/mods/Magiclysm/items/generic.json @@ -6,8 +6,8 @@ "color": "dark_gray", "name": { "str": "parabolan felt patch", "str_pl": "parabolan felt patches" }, "description": "A smallish patch of iridescent felt; could be disassembled for parabolan wool fiber.", - "price": 2000, - "price_postapoc": 200, + "price": "20 USD", + "price_postapoc": "2 USD", "material": [ "parabolan_wool" ], "flags": [ "NO_SALVAGE" ], "weight": "3 g", @@ -19,8 +19,8 @@ "type": "AMMO", "id": "parabolan_yarn", "category": "spare_parts", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "name": { "str_sp": "parabolan yarn" }, "symbol": "=", "color": "dark_gray", @@ -43,7 +43,7 @@ "volume": "2500 ml", "color": "green", "symbol": "%", - "price_postapoc": 0, + "price_postapoc": "0 cent", "material": [ "veggy" ], "flags": [ "TRADER_AVOID" ] } diff --git a/data/mods/Magiclysm/items/herbs_and_flowers.json b/data/mods/Magiclysm/items/herbs_and_flowers.json index d1dfe04e25cad..e2c0a741ce9ff 100644 --- a/data/mods/Magiclysm/items/herbs_and_flowers.json +++ b/data/mods/Magiclysm/items/herbs_and_flowers.json @@ -11,7 +11,7 @@ "symbol": "%", "calories": 100, "description": "A fractal corolla winds inward in mathematical harmony, reflecting beauty in its ideal form.", - "price_postapoc": 600, + "price_postapoc": "6 USD", "material": "veggy", "volume": "50 ml", "weight": "50 g", @@ -30,7 +30,7 @@ "comestible_type": "FOOD", "calories": 156, "description": "A handful of moonflowers glitter like tiny stars and faintly smell of morning dew. Properly harvested, they will never wilt or wither.", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "volume": "250 ml", "vitamins": [ [ "iron", 5 ], [ "vitC", 3 ], [ "redcells", 2 ] ] }, @@ -42,7 +42,7 @@ "color": "blue", "symbol": "o", "description": "A small rod of curled white petals, delicately shielding toxic pollen that will lead to an agonizing, if mercifully quick death. Infamously used by romantic assassins, when an artistic death is deemed more important than practicality.", - "price_postapoc": 700, + "price_postapoc": "7 USD", "volume": "5 ml", "weight": "5 g", "material": "veggy" @@ -53,7 +53,7 @@ "name": { "str": "olieribos sheaf", "str_pl": "olieribos sheaves" }, "description": "Dark colored leaves and bitter roots, firmly tied together in a small sheaf. It's not toxic, but many people have died trying to taste it, due to the airway obstruction.", "//": "armor' and 'summon' related", - "price_postapoc": 400, + "price_postapoc": "4 USD", "flags": [ "NONCONDUCTIVE" ], "material": "veggy", "symbol": "o", @@ -68,7 +68,7 @@ "name": { "str_sp": "glowing mushroom caps" }, "//": "'light' related, partially 'speed'", "description": "Slim stripes cut from a bioluminescent mushroom, still surrounded by a faint glowing aura.", - "price_postapoc": 970, + "price_postapoc": "9 USD 70 cent", "symbol": "o", "color": "light_cyan", "weight": "70 g", @@ -85,7 +85,7 @@ "name": { "str_sp": "horn moss capsules" }, "//": "'healing' related", "description": "Pure white moss capsules, shaped like a goat's horn. The fine spores contained within are a powerful magical reagent, and can be consumed to recover small amounts of health.", - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", "symbol": "o", "color": "white", "weight": "35 g", @@ -108,7 +108,7 @@ "comestible_type": "FOOD", "looks_like": "wheat", "description": "Stalks cut from a golden reed. They have a strong, spiced aroma.", - "price_postapoc": 780, + "price_postapoc": "7 USD 80 cent", "vitamins": [ [ "calcium", 12 ], [ "vitC", 3 ], [ "redcells", 2 ] ] }, { @@ -123,7 +123,7 @@ "comestible_type": "FOOD", "looks_like": "egg", "description": "Heavy wooden shells surrounding a diminutive white fruit.", - "price_postapoc": 1000, + "price_postapoc": "10 USD", "vitamins": [ [ "calcium", 8 ], [ "vitC", 5 ], [ "redcells", 3 ] ] }, { @@ -138,7 +138,7 @@ "comestible_type": "FOOD", "looks_like": "egg", "description": "Knife sharp thorns from a dragonail bush. Eating them raw would be a dangerous challenge.", - "price_postapoc": 890, + "price_postapoc": "8 USD 90 cent", "vitamins": [ [ "iron", 7 ], [ "vitC", 4 ], [ "calcium", 1 ] ] }, { @@ -152,7 +152,7 @@ "calories": 67, "comestible_type": "FOOD", "description": "The black root of a moly plant, extracted from the ground through great effort. Rumored to grant protection to those who consume it.", - "price_postapoc": 300, + "price_postapoc": "3 USD", "vitamins": [ [ "calcium", 13 ], [ "iron", 7 ] ] }, { @@ -167,7 +167,7 @@ "use_action": { "type": "cast_spell", "spell_id": "flower_fern_spell", "no_fail": true, "level": 0 }, "comestible_type": "FOOD", "description": "A small flower cut from a fern, it has a faint honeyed aroma. Believed to bring good luck to whoever finds it.", - "price_postapoc": 1200, + "price_postapoc": "12 USD", "vitamins": [ [ "calcium", 8 ], [ "vitC", 4 ], [ "iron", 2 ] ] }, { @@ -182,7 +182,7 @@ "use_action": { "type": "cast_spell", "spell_id": "funnelcap_spell", "no_fail": true, "level": 0 }, "comestible_type": "FOOD", "description": "Large chunks of funnelcap meat, still leaking fine amounts of clear sap.", - "price_postapoc": 60, + "price_postapoc": "60 cent", "vitamins": [ [ "vitC", 5 ], [ "iron", 3 ], [ "redcells", 2 ] ] }, { @@ -197,7 +197,7 @@ "use_action": { "type": "cast_spell", "spell_id": "sojourners_palm_spell", "no_fail": true, "level": 0 }, "comestible_type": "FOOD", "description": "A red puffball flower cut from a sojourner's palm. When wind wafts between its petals, you can hear the sounds of faraway places.", - "price_postapoc": 1400, + "price_postapoc": "14 USD", "volume": "10 ml", "weight": "10 g", "vitamins": [ [ "iron", 5 ], [ "vitC", 3 ], [ "redcells", 2 ] ] @@ -214,7 +214,7 @@ "use_action": { "type": "cast_spell", "spell_id": "whiskflower_spell", "no_fail": true, "level": 0 }, "comestible_type": "FOOD", "description": "A pink whisk shaped flower with a powerful alcoholic smell.", - "price_postapoc": 110, + "price_postapoc": "1 USD 10 cent", "volume": "10 ml", "weight": "10 g", "vitamins": [ [ "iron", 5 ], [ "vitC", 3 ], [ "redcells", 2 ] ] diff --git a/data/mods/Magiclysm/items/mana_crystals.json b/data/mods/Magiclysm/items/mana_crystals.json index b136ffd2ae947..4cd9de81ca50d 100644 --- a/data/mods/Magiclysm/items/mana_crystals.json +++ b/data/mods/Magiclysm/items/mana_crystals.json @@ -9,7 +9,7 @@ "type": "AMMO", "id": "crystallized_mana", "category": "spare_parts", - "price": 1000, + "price": "10 USD", "name": { "str_sp": "crystallized mana" }, "symbol": "=", "color": "yellow", @@ -30,7 +30,7 @@ "description": "This is a small mana crystal specifically designed to be attached to wand tips.", "weight": "5 g", "volume": "250 ml", - "price": 1500, + "price": "15 USD", "symbol": "=", "color": "yellow", "ammo_type": [ "crystallized_mana" ], diff --git a/data/mods/Magiclysm/items/melee.json b/data/mods/Magiclysm/items/melee.json index 7b1ecf2242896..48ce2e746cff3 100644 --- a/data/mods/Magiclysm/items/melee.json +++ b/data/mods/Magiclysm/items/melee.json @@ -10,7 +10,7 @@ "material": [ "orichalcum_metal", "wood", "gold" ], "techniques": [ "WBLOCK_2", "BRUTAL" ], "volume": "2500 ml", - "price": 200000, + "price": "2 kUSD", "melee_damage": { "bash": 45, "stab": 23 } }, { @@ -23,7 +23,7 @@ "material": [ "orichalcum_metal", "wood", "gold" ], "techniques": [ "WBLOCK_1", "IMPALE", "SWEEP" ], "volume": "3250 ml", - "price": 200000, + "price": "2 kUSD", "melee_damage": { "bash": 10, "cut": 35 } }, { @@ -36,7 +36,7 @@ "material": [ "orichalcum_metal", "steel" ], "techniques": [ "WBLOCK_2", "PRECISE", "DIVIDE" ], "volume": "2000 ml", - "price": 200000, + "price": "2 kUSD", "melee_damage": { "bash": 6, "cut": 45 } }, { @@ -45,7 +45,7 @@ "type": "GENERIC", "name": { "str": "Laevateinn" }, "description": "Laevateinn, the staff of Loki. Said to have been plucked from the gates of Hel by Loki. Imbued with a mysterious magic, the magic of the trickster god himself.", - "price": 160000, + "price": "1 kUSD 600 USD", "material": [ "steel", "gold", "orichalcum_metal" ], "extend": { "flags": [ "MAGIC_FOCUS" ] }, "techniques": [ "WBLOCK_2", "SPIN", "RAPID", "SWEEP" ], @@ -93,7 +93,7 @@ "material": [ "orichalcum_metal", "wood" ], "volume": "3250 ml", "relic_data": { "passive_effects": [ { "has": "WIELD", "condition": "ALWAYS", "hit_you_effect": [ { "id": "wolfsbane" } ] } ] }, - "price": 200000, + "price": "2 kUSD", "melee_damage": { "bash": 10, "cut": 35 } }, { diff --git a/data/mods/Magiclysm/items/metals.json b/data/mods/Magiclysm/items/metals.json index 292e503ab8704..d0532cbc2118f 100644 --- a/data/mods/Magiclysm/items/metals.json +++ b/data/mods/Magiclysm/items/metals.json @@ -7,7 +7,7 @@ "description": "A lump of raw orichalcum. Needs to be reformed into an ingot to be useful.", "weight": "1000 g", "volume": "250 ml", - "price": 2500, + "price": "25 USD", "to_hit": -4, "stack_size": 2, "//": "Density 7.60g/cm³ ~ 1.9kg/250ml @ 1000g/unit ~ stack 2 and formed as a solid ingot so 100% of this", @@ -26,7 +26,7 @@ "description": "A sliver of orichalcum broken from a larger piece. Needs to be reformed into an ingot to be useful.", "weight": "250 g", "volume": "250 ml", - "price": 1000, + "price": "10 USD", "to_hit": -2, "stack_size": 4, "//": "Density 7.60g/cm³ ~ 1.9kg/250ml @ 250g/unit ~ stack 8 but mishapen so only 50% of this", @@ -46,7 +46,7 @@ "//": "Density the same as steel.", "weight": "2 kg", "volume": "253 ml", - "price": 6399, + "price": "63 USD 99 cent", "to_hit": -3, "material": [ "orichalcum_metal" ], "symbol": "=", @@ -61,7 +61,7 @@ "description": "A lump of raw mithril. Needs to be reformed into an ingot to be useful.", "weight": "675 g", "volume": "250 ml", - "price": 2500, + "price": "25 USD", "to_hit": -4, "stack_size": 2, "material": [ "mithril_metal" ], @@ -80,7 +80,7 @@ "//": "density of aluminum", "weight": "683 g", "volume": "253 ml", - "price": 6399, + "price": "63 USD 99 cent", "to_hit": -3, "material": [ "mithril_metal" ], "symbol": "=", diff --git a/data/mods/Magiclysm/items/mutagen.json b/data/mods/Magiclysm/items/mutagen.json index 26a4e0bd3ff46..b45c2bb120091 100644 --- a/data/mods/Magiclysm/items/mutagen.json +++ b/data/mods/Magiclysm/items/mutagen.json @@ -14,7 +14,7 @@ "addiction_potential": 5, "calories": 26, "description": "A very concentrated form of mana potion.", - "price": 60000, + "price": "600 USD", "volume": "500 ml", "phase": "liquid", "charges": 2, diff --git a/data/mods/Magiclysm/items/obsolete.json b/data/mods/Magiclysm/items/obsolete.json index 46586a8dd43d4..d3a90688d23b8 100644 --- a/data/mods/Magiclysm/items/obsolete.json +++ b/data/mods/Magiclysm/items/obsolete.json @@ -12,7 +12,7 @@ "description": "A sawn-off double-barrel shotgun mounted on a metal cestus. The lack of a stock to absorb recoil means some strength is required to fire.", "weight": "1566 g", "volume": "1500 ml", - "price": 20000, + "price": "200 USD", "material": [ "steel" ], "techniques": [ "WBLOCK_1", "BRUTAL" ], "min_strength": 7, @@ -34,7 +34,7 @@ "description": "An all-encompassing, invisible layer of magic distorts light around your body. Allows you to dodge two extra attacks in a given turn.", "weight": "1g", "volume": "1ml", - "price": 3646, + "price": "36 USD 46 cent", "symbol": "o", "color": "white", "material": [ "magical_material" ], @@ -98,7 +98,7 @@ "description": "An all-encompassing, invisible layer of protection against acid.", "weight": "1g", "volume": "1ml", - "price": 3646, + "price": "36 USD 46 cent", "symbol": "o", "color": "green", "material": [ "magical_material" ], @@ -131,7 +131,7 @@ "description": "An all-encompassing, invisible layer of protection against acid.", "weight": "1g", "volume": "1ml", - "price": 3646, + "price": "36 USD 46 cent", "symbol": "o", "color": "green", "material": [ "magical_material" ], diff --git a/data/mods/Magiclysm/items/recipe_books.json b/data/mods/Magiclysm/items/recipe_books.json index 480ecc587d50b..d0d1e324e8cd2 100644 --- a/data/mods/Magiclysm/items/recipe_books.json +++ b/data/mods/Magiclysm/items/recipe_books.json @@ -7,7 +7,7 @@ "description": "This book details black dragons: The most evil of dragons, who live in ruins generally in swamps. Immune to acid and breathe acid. The book also details how to prepare its hide and craft various armors that make use of some of its acid resistance.", "weight": "1 kg", "volume": "750 ml", - "price": 7900, + "price": "79 USD", "material": [ "paper" ], "symbol": "?", "color": "black_white", @@ -27,7 +27,7 @@ "description": "This book painstakingly delves into the history of black dragons, gruesomely detailing their acts, the cults that worship them, and those that oppose them. In its pages are some alchemical formulae that can be concocted using the remains of dead black dragons.", "weight": "1 kg", "volume": "750 ml", - "price": 7900, + "price": "79 USD", "material": [ "paper" ], "symbol": "?", "color": "black_white", @@ -47,7 +47,7 @@ "description": "A paperback tome for the art of liquid magic, alcohol not included.", "weight": "780 g", "volume": "1550 ml", - "price": 7900, + "price": "79 USD", "material": [ "paper" ], "symbol": "?", "color": "white", @@ -67,7 +67,7 @@ "description": "A paperback tome for the art of binding undead creatures' souls to dolls, along with emulating their healing factor.", "weight": "425 g", "volume": "450 ml", - "price": 7900, + "price": "79 USD", "material": [ "paper" ], "symbol": "?", "color": "black", @@ -88,7 +88,7 @@ "description": "Small old notebook without cover. There are some illegal potion recipes, that you can't find in common books", "weight": "260 g", "volume": "350 ml", - "price": 13900, + "price": "139 USD", "material": [ "paper" ], "symbol": "?", "color": "white", @@ -107,7 +107,7 @@ "description": "Huge, hardcover book, filled with the most detailed information about alchemy history, usage, and future, authored by Trismegistus. Modern edition, published by Noita Press.", "weight": "870 g", "volume": "750 ml", - "price": 17800, + "price": "178 USD", "material": [ "paper" ], "symbol": "?", "color": "white", @@ -127,7 +127,7 @@ "description": "A paperback tome for the art of combining modern technology with magic. There is a disclaimer on the back: `Cannith Industries bears no responsibility for malfunctions or accidents for any products mentioned herein`.", "weight": "1 kg", "volume": "750 ml", - "price": 7900, + "price": "79 USD", "material": [ "paper" ], "symbol": "?", "color": "black", @@ -156,7 +156,7 @@ "time": "1 h", "fun": 0, "skill": "fabrication", - "price": 30000, + "price": "300 USD", "required_level": 8 }, { @@ -167,7 +167,7 @@ "description": "A leatherbound book with an embossed cauldron on the cover. Inside it describes ways to purify food magically.", "weight": "1 kg", "volume": "750 ml", - "price": 7900, + "price": "79 USD", "material": [ "paper" ], "symbol": "?", "color": "white", @@ -187,7 +187,7 @@ "description": "A book with a brass coverplate. It professes to teach one how to make magical metals such as Orichalcum. It is dry reading even for an alchemical tome.", "weight": "1 kg", "volume": "750 ml", - "price": 7900, + "price": "79 USD", "material": [ "paper" ], "symbol": "?", "color": "white", @@ -207,7 +207,7 @@ "description": "A leatherbound book with a picture of a shield holding back dragonfire on the cover. There are many ways to turn monster skins and hides into protective equipment inside.", "weight": "1 kg", "volume": "750 ml", - "price": 7900, + "price": "79 USD", "material": [ "paper" ], "symbol": "?", "color": "white", @@ -227,7 +227,7 @@ "description": "A paperback tome on the art of imbuing items with magic properties.", "weight": "1 kg", "volume": "750 ml", - "price": 7900, + "price": "79 USD", "material": [ "paper" ], "symbol": "?", "color": "white", @@ -247,8 +247,8 @@ "description": "A textbook on enchanting weapons.", "weight": "750 g", "volume": "1250 ml", - "price": 9400, - "price_postapoc": 4250, + "price": "94 USD", + "price_postapoc": "42 USD 50 cent", "material": [ "paper" ], "symbol": "?", "color": "blue", @@ -270,7 +270,7 @@ "description": "A history of the ancient art of \"botanical enchantment\", infusing fruit with mana to create primitive potions. While one of the earliest methods of alchemy known, discovered in prehistoric times, advancement in alchemical techniques (to say nothing of modern chemistry) rendered it a curiosity at best in the decades leading up to the Cataclysm. Still, the book details several methods of botanical enchantment that would probably be useful.", "weight": "750 g", "volume": "1250 ml", - "price": 3000, + "price": "30 USD", "material": [ "paper" ], "symbol": "?", "color": "white", @@ -290,7 +290,7 @@ "description": "A reference book discussing the ancient and now mostly-forgot art of enchanted archery. With firearms so convenient and taking much less training to use, it has long since fallen out of favor, but this book is so detailed you could revive it for yourself with the recipes it contains.", "weight": "1300 g", "volume": "2500 ml", - "price": 7900, + "price": "79 USD", "material": [ "paper" ], "symbol": "?", "color": "black", @@ -311,7 +311,7 @@ "description": "Despite the title, this seems to be written in Middle English. A little obtuse, but you can make out most of the words well enough.", "weight": "600 g", "volume": "850 ml", - "price": 8000, + "price": "80 USD", "material": [ "paper" ], "looks_like": "manual_gun", "skill": "fabrication", diff --git a/data/mods/Magiclysm/items/spell_scrolls.json b/data/mods/Magiclysm/items/spell_scrolls.json index edd8cdbaa76a8..cbdb51bbf9632 100644 --- a/data/mods/Magiclysm/items/spell_scrolls.json +++ b/data/mods/Magiclysm/items/spell_scrolls.json @@ -6,7 +6,7 @@ "category": "manuals", "weight": "475 g", "volume": "500 ml", - "price": 4000, + "price": "40 USD", "material": [ "paper" ], "symbol": "?", "color": "white" @@ -1143,7 +1143,7 @@ "description": "This scroll details how a spell called 'Lightning Blast' which is commonly used among Stormshapers can be altered to become much more powerful, at a much higher mana cost.", "weight": "129 g", "volume": "500 ml", - "price": 25000, + "price": "250 USD", "symbol": "?", "color": "light_blue", "use_action": { "type": "learn_spell", "spells": [ "lightning_storm" ] } diff --git a/data/mods/Magiclysm/items/spellbooks.json b/data/mods/Magiclysm/items/spellbooks.json index f92cc02d1a9ff..97cba892915b8 100644 --- a/data/mods/Magiclysm/items/spellbooks.json +++ b/data/mods/Magiclysm/items/spellbooks.json @@ -38,7 +38,7 @@ "description": "You would describe this as more like a pamphlet than a spellbook, but it seems to have at least a few interesting spells you can use.", "weight": "585 g", "volume": "250 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -57,7 +57,7 @@ "description": "A professional-looking book on stormshaping, structured after many college textbooks. It has less to apply than one might expect from its size.", "weight": "900 g", "volume": "1200 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -73,7 +73,7 @@ "description": "This appears to be the spell version of a guide for what things to take with you when backpacking. It's a little bulky, but will certainly prove useful.", "weight": "1 kg", "volume": "1250 ml", - "price": 35000, + "price": "350 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -101,7 +101,7 @@ "description": "This charred husk of a book still contains many ways to light things aflame.", "weight": "450 g", "volume": "1 L", - "price": 1904, + "price": "19 USD 4 cent", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -120,7 +120,7 @@ "description": "This details complex diagrams, rituals, and choreography that describes various spells.", "weight": "920 g", "volume": "750 ml", - "price": 30000, + "price": "300 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -139,7 +139,7 @@ "description": "This appears to mostly be a religious text, but it does have some notes on healing.", "weight": "585 g", "volume": "500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -158,7 +158,7 @@ "description": "Despite the title, this seems to be written in Middle English. A little obtuse, but you can make out most of the words well enough.", "weight": "830 g", "volume": "750 ml", - "price": 30000, + "price": "300 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -174,7 +174,7 @@ "description": "This slim book almost seems to be made from ice, it's cold to the touch.", "weight": "450 g", "volume": "1 L", - "price": 1904, + "price": "19 USD 4 cent", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -190,7 +190,7 @@ "description": "A large book embossed with crossed lightning bolts and storm clouds, it tingles to the touch.", "weight": "430 g", "volume": "750 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -220,7 +220,7 @@ "description": "A small, but thick book, that covers the most recent developments in the field, including real examples.", "weight": "537 g", "volume": "930 ml", - "price": 9000, + "price": "90 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -239,7 +239,7 @@ "description": "A large, illustrated book, that describes the unpopular side of stormshaping - wind control. Despite being less \"cool\", it has more control, and can be as devastating as lightning.", "weight": "473 g", "volume": "825 ml", - "price": 7000, + "price": "70 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -265,7 +265,7 @@ "description": "A scholarly work, that discusses the electromancy boom in the 60's and how the mass military draft of fresh, inexperienced mages changed the war, with examples of tactics and spells used by year. Summary says \"it changed nothing\".", "weight": "378 g", "volume": "660 ml", - "price": 11700, + "price": "117 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -308,7 +308,7 @@ "description": "A small white book, it subtly amplifies the ambient light around it.", "weight": "430 g", "volume": "750 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -336,7 +336,7 @@ "description": "A small tome, seemingly covered in tanned human skin.", "weight": "355 g", "volume": "500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -355,7 +355,7 @@ "description": "A bark covered book.", "weight": "355 g", "volume": "500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -382,7 +382,7 @@ "//": "1 technomancer, 2 animist, 1 druid, 1 earthshaper spell", "weight": "728 g", "volume": "3 L", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -409,7 +409,7 @@ "description": "While no longer popular in the age of nitrogen fertilizer and industrial farm equipment, copies of this tome continued to be published for years for a small audience of back-to-nature, do-it-yourself organic mage-farmers.", "weight": "483 g", "volume": "825 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -436,7 +436,7 @@ "description": "Your standard wizardy looking spellbook, filled with Magus combat spells. You sure lucked out!", "weight": "434 g", "volume": "750 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -455,7 +455,7 @@ "description": "This large dusty spellbook seems perpetually, well, dusty. It contains a considerable amount of earthly power.", "weight": "483 g", "volume": "825 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -474,7 +474,7 @@ "description": "A book written by someone obviously very self-absorbed who describes himself as \"Chosen of Gaia, the Only Champion of Terra\". Despite his arrogance, his mastery in combining different earthshaper's abilities as described in the book make him an accomplished sorcerer worth learning from.", "weight": "247 g", "volume": "398 ml", - "price": 9000, + "price": "90 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -500,7 +500,7 @@ "description": "This advertising booklet promotes one spell that allows you to create a different tool for different purposes. Surprisingly, it works as the book says - you can change the shape of your tool, depending on your needs.", "weight": "83 g", "volume": "132 ml", - "price": 1000, + "price": "10 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -516,7 +516,7 @@ "description": "This small lightweight book seems to almost not entirely exist, let's say it 97% does. It contains Magus spells focused on movement.", "weight": "231 g", "volume": "500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -535,7 +535,7 @@ "description": "This looks like someone was designing a new spell, but spilled a mug of coffee on it and crumpled it up in anger. You can tell that it will definitely cast something, but you can't be sure that it will work very well.", "weight": "129 g", "volume": "100 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -551,7 +551,7 @@ "description": "This book details various ways of summoning an undead minion to fight for you. They all appear to disappear after a short time, crumbling to dust.", "weight": "788 g", "volume": "2250 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -570,7 +570,7 @@ "description": "This thick manual instructs the spellcaster on manipulating and empowering various forms of matter and energy.", "weight": "258 g", "volume": "750 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -589,7 +589,7 @@ "//": "2 Technomancer spells", "weight": "211 g", "volume": "500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -608,7 +608,7 @@ "description": "This lab reference material book is thick and overflowing with information on combining magic with EM radiation.", "weight": "284 g", "volume": "1 L", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -627,7 +627,7 @@ "description": "This is a heavy, university thaumaturgical-program-level guidebook. It discusses the various practical applications of magic in repairwork and engineering, with a focus on immediately-usable techniques instead of airy theoretical approaches.", "weight": "1200 g", "volume": "2500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -653,7 +653,7 @@ "description": "A famous animist grimoire from early modernity. Its cryptic passages describe and map connections between the spiritual world and ours.", "weight": "920 g", "volume": "750 ml", - "price": 30000, + "price": "300 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -669,7 +669,7 @@ "description": "A small tablet of blackened stone, apparently cut from a much larger slab. Golden runes glow over its surface, and slowly shift into intelligible sentences when you stare at them.", "weight": "4000 g", "volume": "2500 ml", - "price": 5000, + "price": "50 USD", "material": [ "stone" ], "looks_like": "material_shrd_limestone", "symbol": "?", @@ -685,7 +685,7 @@ "description": "This book outlines in great detail how time and space are wibbly-wobbly and non-Euclidean. It also appears to have a dozen different coordinate systems that it uses nearly interchangeably, which makes it hard to follow. There's lots of jargon, but with intense study you can probably learn a thing or two about portals.", "weight": "1200 g", "volume": "2500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -700,7 +700,7 @@ "description": "A very, very old and heavy tome of various spells lost to the ages, either for good reason, or simply through the passage of time. There are very few copies in existence, usually owned by those of great power, and yet all of them seem to have the last dozen pages or so torn out, in haste.", "weight": "2400 g", "volume": "5000 ml", - "price": 7500, + "price": "75 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -716,7 +716,7 @@ "description": "The Human is the only creature that seeks to improve himself. This study examines different spells that can heighten various senses temporarily, in hopes to discover a more permanent solution.", "weight": "1300 g", "volume": "2500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -731,7 +731,7 @@ "description": "A very sarcastically-written guide to using magic to get into and out of places you absolutely are not supposed to be.", "weight": "1200 g", "volume": "2500 ml", - "price": 7500, + "price": "75 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -753,7 +753,7 @@ "description": "This thick paperback book is a collection of the proper magical preparations to survive various disasters. Unfortunately, the zombie apocalypse section doesn't account for everything that's gone wrong in the Cataclysm, but there's still a lot of useful knowledge here.", "weight": "473 g", "volume": "825 ml", - "price": 3500, + "price": "35 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -777,7 +777,7 @@ "name": { "ctxt": "spellbook", "str": "The Elven Path", "str_pl": "copies of The Elven Path" }, "//": "7 Druid spells", "description": "Written by the elven archdruid Tylindel Melithilarahd over 500 years ago, this weighty tome was considered *the* most important book of the Harmonist druidic movement up until just before the Cataclysm. Archdruid Melithilarahd's death in 2016 ended his overt patronage of his own works, allowing other writers to attempt to make their mark, especially younger elves who did not have such a strident anti-modern attitude. In addition to all the philosophical essays about the importance of living in harmony with nature and allowing plants to grow where they will are several plant-based druidic spells.", - "price": 15000, + "price": "150 USD", "material": [ "paper", "cardboard" ], "symbol": "?", "looks_like": "cookbook", @@ -806,7 +806,7 @@ "description": "A thin book full of spells designed to help the practitioner short-cut having to actually do any work. Considering the effort involved in studying magic, you're not sure any actual time is being saved.", "weight": "355 g", "volume": "500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -831,7 +831,7 @@ "description": "A thin book about the usefulness of magic in hiking, such as keeping clean, keeping the weather good, staying dry, and otherwise avoiding all the problems of the mundane outdoors.", "weight": "900 g", "volume": "1200 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -850,7 +850,7 @@ "//": "1 technomancer, 2 classless spells", "weight": "1728 g", "volume": "3 L", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -866,7 +866,7 @@ "description": "A reference book for the practical use of magic in healing the sort of wounds that are likely to occur at home: burns from cooking, scraped knees, cuts from knives, bruises, colds and the flu, and so on.", "weight": "483 g", "volume": "825 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -888,7 +888,7 @@ "description": "An old 19th-century travelogue, detailing the author's travels among the elven tribes of northern Greenland. The section about the midwinter festival and the northern lights is particularly detailed.", "weight": "1200 g", "volume": "2500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -904,7 +904,7 @@ "description": "A description of weather patterns, geological formations in particularly storm-prone areas, essays from well-known storm chasers, proper equipment and safety, how to keep dry, and a way to use magic to completely avoid any possible danger from the storm itself. The book does explicitly warn that if a tree falls on you, you're on your own, though, so the title seems to be more than half marketing.", "weight": "585 g", "volume": "500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -923,7 +923,7 @@ "description": "A thin guide to using magic to avoid extremes of both hot and cold, allowing you to design your wardrobe around always looking good rather than having to account for summer's heat or winter's chill.", "weight": "430 g", "volume": "750 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -939,7 +939,7 @@ "description": "A very thin book, filled with glossy photos, about how to use druidic magic to call up cats whenever you are feeling lonely, if you can't afford one, or if you live in a place that doesn't normally allow pets. The people in the photos watching half-a-dozen cats play sure look happy.", "weight": "355 g", "volume": "500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -955,7 +955,7 @@ "description": "This very thin booklet about the ecological benefits of using magic instead of a mundane morning cleaning routine. At the bottom of the back cover is an abstract logo of two people holding both hands with a tree growing through the resulting circle, and the words \"Gaia's Children\" beneath it.", "weight": "83 g", "volume": "132 ml", - "price": 1000, + "price": "10 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -971,7 +971,7 @@ "description": "A somewhat alarmist book about the ways to survive after the collapse of civilization, using simple magic to deal with common problems. Sadly, there are no anti-zombie combat spells within.", "weight": "434 g", "volume": "750 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -990,7 +990,7 @@ "//": "2 Earthshaper spells", "weight": "211 g", "volume": "500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1006,7 +1006,7 @@ "description": "A study of the inherent non-scalability of magical solutions to problems, touching on the difficulty of producing crystallized mana in the quantities needed for industrial use, the long time period necessary for magical materials like orichalcum, mithril, or crimsonite to reach reliability, the way that earthshaping and druidism specifically require wilderness for some of their spells, and the way that an average mage exhausts their mana pool within fifteen minutes of working on any major project without extensive study and training.", "weight": "1728 g", "volume": "3 L", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1022,7 +1022,7 @@ "description": "A guide to using magic to create practical special effects, whether for a birthday celebration, house party, or simply for your own amusement.", "weight": "483 g", "volume": "825 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1038,7 +1038,7 @@ "description": "A reference tome for using magic to garden in a \"organic, traditional, earth-centered way\", as the back cover states.", "weight": "258 g", "volume": "750 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1054,7 +1054,7 @@ "description": "This book claims to be an aid to people who always forget their keys or need to get into their car quickly, but the selection of spells seems pretty suspicious to you.", "weight": "585 g", "volume": "550 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1070,7 +1070,7 @@ "description": "An academic book about the history of known Nethereum incursions, including the 1908 Tunguska incident, the disappearance of the army of Cambyses, various dancing plagues, the earthquake that destroyed the kingdom of Mgarzhbag, the Week Without Sun in the 7th century, and more, along with a variety of speculation about possible other historical and pre-historical incursions.", "weight": "355 g", "volume": "500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1089,7 +1089,7 @@ "description": "A formal study of the various sylphs, anemoi, shedim, hytersprites, hyades, ame-onna, and other spirits associated with air, wind, or weather.", "weight": "1588 g", "volume": "2250 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1109,7 +1109,7 @@ "description": "A copy of a religious text from the Ghâzkhud dwarven religion. Amidst the prayers and songs and meditations on the ancestors and the earth and the stones are some spells, though pious traditional ghâzkhudians would react with shock if you called them that.", "weight": "537 g", "volume": "930 ml", - "price": 9000, + "price": "90 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1125,7 +1125,7 @@ "description": "This obvious cash-in book does have some actual practical spells amongst all the philosophical-sounding essays about the importance of cleanliness.", "weight": "585 g", "volume": "550 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1141,7 +1141,7 @@ "description": "A description of the various ways to use natural herbs and plants to fuel magical healing. There is a lot of useful knowledge of here if you sift through the book and filter out the various chapters about the dangers of allopathic medicine and modern post-industrial lifestyles.", "weight": "537 g", "volume": "930 ml", - "price": 9000, + "price": "90 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1160,7 +1160,7 @@ "description": "A book about how technomancy, usually thought of as being based around electricity and human enhancement, somehow also encompasses quick moment but only when holograms are involved. At least half the book is descriptions of experiments performed by research thaumaturges to find the exact boundaries of technomancy when movement is involved.", "weight": "355 g", "volume": "500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1176,7 +1176,7 @@ "description": "A series of stories of the various ways magic can go wrong if the wrong ingredients, words, or gestures are used. A lot of the stories are merely funny, like the magus who in trying to alter the Sorcerer's Hand spell caused music to follow her everywhere she went, but but there's the occasional real tragedy mixed in as a cautionary tale.", "weight": "483 g", "volume": "825 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1192,7 +1192,7 @@ "description": "A guide to using biomancy to perform extreme intermittent fasting, eating an enormous amount of food only once every 2-5 days, depending on the mage's skill. The book is filled with both glossy photos of extremely fit, beautiful people and warnings to make sure that your stomach isn't full when the spell wears off.", "weight": "284 g", "volume": "550 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1208,7 +1208,7 @@ "description": "A guide to living without any magic at all, including ways to perform tasks that were traditionally performed with magic, such as starting fires, tending minor wounds, cooking and preserving food, doing laundry, and so on. Somewhat hypocritically, it does include a dispelling spell in the back of the book.", "weight": "258 g", "volume": "750 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1224,7 +1224,7 @@ "description": "This self-help book is themed around the Peaceful Rest spell, famed before the Cataclysm as an easy way to avoid tossing and turning. Laudably, the book seems to be mostly about eventually weaning the reader off the need to cast a spell to be able to fall asleep on time.", "weight": "483 g", "volume": "825 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1240,7 +1240,7 @@ "description": "The 2020 edition of the classic tome of fire magic, not containing any restricted battle magic but popular all the same.", "weight": "537 g", "volume": "930 ml", - "price": 9000, + "price": "90 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1266,7 +1266,7 @@ "description": "A weighty tome containing all three of the Rites of the First Circle, the rituals used by dedicated mages to increase their ability to channel and recover mana.", "weight": "1588 g", "volume": "2250 ml", - "price": 50000, + "price": "500 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1284,7 +1284,7 @@ "description": "A lengthy list of the rituals and components necessary to slightly increase the efficiency by which the mage's body processes mana.", "weight": "483 g", "volume": "825 ml", - "price": 50000, + "price": "500 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1299,7 +1299,7 @@ "description": "A lengthy list of the rituals and components necessary to increase the efficiency by which the mage's body processes mana.", "weight": "900 g", "volume": "1200 ml", - "price": 50000, + "price": "500 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1314,7 +1314,7 @@ "description": "A lengthy list of the rituals and components necessary to slightly increase the rate by which the mage's body regains mana.", "weight": "483 g", "volume": "825 ml", - "price": 50000, + "price": "500 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1329,7 +1329,7 @@ "description": "A lengthy list of the rituals and components necessary to increase the rate by which the mage's body regains mana.", "weight": "900 g", "volume": "1200 ml", - "price": 50000, + "price": "500 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1344,7 +1344,7 @@ "description": "A lengthy list of the rituals and components necessary to slightly increase the sensitivity that the mage's body has to mana.", "weight": "483 g", "volume": "825 ml", - "price": 50000, + "price": "500 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1359,7 +1359,7 @@ "description": "A lengthy list of the rituals and components necessary to increase the sensitivity that the mage's body has to mana.", "weight": "900 g", "volume": "1200 ml", - "price": 50000, + "price": "500 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -1378,7 +1378,7 @@ "description": "This romanticized book of dubious historical accuracy details how pirates used magic to their advantage while sailing. From better telescopes to banks of fog to hide their approach, it seems that according to this author at least, piracy was a true terror to behold.", "weight": "437 g", "volume": "825 ml", - "price": 7000, + "price": "70 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", diff --git a/data/mods/Magiclysm/items/tools.json b/data/mods/Magiclysm/items/tools.json index bd29e5b805fc5..c5155c28d67fb 100644 --- a/data/mods/Magiclysm/items/tools.json +++ b/data/mods/Magiclysm/items/tools.json @@ -7,7 +7,7 @@ "description": "This cauldron made of demon spider chitin seems to absorb the light. It will hold 16 liters of material and will absorb poisons from it. It may have other properties that require discovery.", "weight": "1424 g", "volume": "20 L", - "price": 2000, + "price": "20 USD", "to_hit": -1, "looks_like": "clay_hydria", "material": [ "demon_chitin" ], @@ -45,7 +45,7 @@ "description": "This is a portable version of the charcoal forge that is magically enhanced and fortified with demon spider chitin in order to be able to resmelt magical metals into their workable ingot form.", "weight": "10 kg", "volume": "8 L", - "price": 200000, + "price": "2 kUSD", "to_hit": -2, "material": [ "demon_chitin" ], "symbol": ";", @@ -65,7 +65,7 @@ "description": "Some alchemical mortar, ready to be used in building projects expecting temperatures on par with dragonbreath.", "category": "spare_parts", "container": "bag_canvas", - "price": 500000, + "price": "5 kUSD", "material": [ "powder_nonflam" ], "weight": "2340 g", "volume": "1 L", @@ -144,8 +144,8 @@ "description": "The natural cluster of parabolan wool fibers. Could be processed to felt patches or yarns.", "weight": "120 g", "volume": "500 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -4, "material": [ "parabolan_wool" ], "symbol": ",", diff --git a/data/mods/Magiclysm/items/vehicle/frames.json b/data/mods/Magiclysm/items/vehicle/frames.json index 2fe4a8660164d..5e4595c3b81c3 100644 --- a/data/mods/Magiclysm/items/vehicle/frames.json +++ b/data/mods/Magiclysm/items/vehicle/frames.json @@ -8,7 +8,7 @@ "weight": "10 kg", "color": "yellow", "material": [ "orichalcum_metal" ], - "price": 10000 + "price": "100 USD" }, { "type": "GENERIC", @@ -20,7 +20,7 @@ "weight": "100 kg", "color": "yellow", "material": [ "orichalcum_metal" ], - "price": 80000 + "price": "800 USD" }, { "type": "GENERIC", @@ -29,6 +29,6 @@ "copy-from": "orichalcum_frame", "description": "A frame made of orichalcum. Partially torn down in order to reduce weight at the cost of durability.", "weight": "40 kg", - "price": 30000 + "price": "300 USD" } ] diff --git a/data/mods/Magiclysm/items/vehicle/vehicle_parts.json b/data/mods/Magiclysm/items/vehicle/vehicle_parts.json index 7f3aa00b438d4..e62c482c0986f 100644 --- a/data/mods/Magiclysm/items/vehicle/vehicle_parts.json +++ b/data/mods/Magiclysm/items/vehicle/vehicle_parts.json @@ -9,6 +9,6 @@ "weight": "10 kg", "color": "yellow", "material": [ "steel" ], - "price": 800000 + "price": "8 kUSD" } ] diff --git a/data/mods/Magiclysm/items/weapons.json b/data/mods/Magiclysm/items/weapons.json index 853f964543aef..b04632b6760b2 100644 --- a/data/mods/Magiclysm/items/weapons.json +++ b/data/mods/Magiclysm/items/weapons.json @@ -9,7 +9,7 @@ "description": "A stout knotty club with a large knob at the top. While it's very heavy, it's a very effective weapon in the hands of a strong opponent.", "weight": "10 kg", "volume": "8 L", - "price": 5000, + "price": "50 USD", "flags": [ "UNBREAKABLE_MELEE", "ALWAYS_TWOHAND", "TRADER_AVOID", "SLOW_WIELD", "FIREWOOD", "NO_REPAIR" ], "to_hit": 1, "melee_damage": { "bash": 22 } @@ -25,7 +25,7 @@ "techniques": [ "WBLOCK_2", "DEF_DISARM", "IMPALE" ], "volume": "3 L", "flags": [ "SPEAR", "REACH_ATTACK", "NONCONDUCTIVE", "DURABLE_MELEE", "SHEATH_SPEAR" ], - "price": 15000, + "price": "150 USD", "melee_damage": { "bash": 6, "stab": 29 } }, { diff --git a/data/mods/Magiclysm/mod_interactions/Defense_Mode/monster_corpse.json b/data/mods/Magiclysm/mod_interactions/Defense_Mode/monster_corpse.json index 9d8864202e2a9..464e0867b1853 100644 --- a/data/mods/Magiclysm/mod_interactions/Defense_Mode/monster_corpse.json +++ b/data/mods/Magiclysm/mod_interactions/Defense_Mode/monster_corpse.json @@ -7,7 +7,7 @@ "name": "broken clay golem", "category": "other", "description": "A broken clay golem, looking like a piece of post-modern art. Could be smashed for clay.", - "price": 10000, + "price": "100 USD", "material": [ "clay" ], "weight": "122 kg", "volume": "120 L", @@ -23,7 +23,7 @@ "name": "broken plastic golem", "category": "other", "description": "A broken plastic golem, like a giant action figure chewed up by an equally giant puppy. You could smash it up into recycled plastic bits.", - "price": 100, + "price": "1 USD", "material": [ "plastic" ], "weight": "70 kg", "volume": "150 L", @@ -39,7 +39,7 @@ "name": "broken stone golem", "category": "other", "description": "A broken stone golem, not that much different from a big boulder. Could be smashed for stone.", - "price": 10000, + "price": "100 USD", "material": [ "stone" ], "weight": "162 kg", "volume": "120 L", @@ -55,7 +55,7 @@ "name": "broken iron golem", "category": "other", "description": "A broken iron golem, with all iron you would possibly ever need. Could be smashed for iron.", - "price": 100000, + "price": "1 kUSD", "material": [ "iron" ], "weight": "875 kg", "volume": "120 L", diff --git a/data/mods/Magiclysm/vehicles/summoned_vehicles.json b/data/mods/Magiclysm/vehicles/summoned_vehicles.json index 81a790517c914..2c20125d18f22 100644 --- a/data/mods/Magiclysm/vehicles/summoned_vehicles.json +++ b/data/mods/Magiclysm/vehicles/summoned_vehicles.json @@ -14,7 +14,7 @@ "description": "A column of mana energy that enables a floating disk to move.", "weight": "500 g", "volume": "500 ml", - "price": 1, + "price": "1 cent", "to_hit": -4, "material": [ "steel" ], "symbol": "]", diff --git a/data/mods/Megafauna/items/animal_products.json b/data/mods/Megafauna/items/animal_products.json index 069881beacd93..b8a7d6985332d 100644 --- a/data/mods/Megafauna/items/animal_products.json +++ b/data/mods/Megafauna/items/animal_products.json @@ -9,8 +9,8 @@ "symbol": ")", "description": "A huge curved tusk of a mammoth.", "comestible_type": "FOOD", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "bone" ], "volume": "80 L", "longest_side": "2500 cm", @@ -50,8 +50,8 @@ "color": "brown", "symbol": "O", "description": "A huge shell laboriously carved from a glyptotherium.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "bone" ], "volume": "180 L", "longest_side": "2000 cm" @@ -66,8 +66,8 @@ "symbol": "I", "description": "A huge bone of a large creature.", "comestible_type": "FOOD", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "bone" ], "volume": "36 L", "longest_side": "2000 cm", diff --git a/data/mods/Megafauna/items/tool/shelters.json b/data/mods/Megafauna/items/tool/shelters.json index c68962b078623..4e84b222acd39 100644 --- a/data/mods/Megafauna/items/tool/shelters.json +++ b/data/mods/Megafauna/items/tool/shelters.json @@ -7,8 +7,8 @@ "weight": "1360 g", "volume": "7500 ml", "longest_side": "90 cm", - "price": 6500, - "price_postapoc": 500, + "price": "65 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "bone", "leather" ], "symbol": ";", @@ -32,8 +32,8 @@ "weight": "4080 g", "volume": "22500 ml", "longest_side": "240 cm", - "price": 12500, - "price_postapoc": 1000, + "price": "125 USD", + "price_postapoc": "10 USD", "to_hit": -3, "material": [ "bone", "leather" ], "symbol": ";", diff --git a/data/mods/MindOverMatter/items/ammo.json b/data/mods/MindOverMatter/items/ammo.json index 4ce33cbb18284..2fcb43b96606b 100644 --- a/data/mods/MindOverMatter/items/ammo.json +++ b/data/mods/MindOverMatter/items/ammo.json @@ -24,8 +24,8 @@ "description": "A charge for the LV429.", "weight": "1 g", "volume": "1 ml", - "price": 160, - "price_postapoc": 800, + "price": "1 USD 60 cent", + "price_postapoc": "8 USD", "material": [ "superalloy", "steel" ], "symbol": "=", "color": "red", @@ -41,7 +41,7 @@ "type": "AMMO", "id": "psionic_charge_power", "category": "spare_parts", - "price": 1000, + "price": "10 USD", "name": { "str_sp": "matrix charge" }, "symbol": "=", "color": "white", diff --git a/data/mods/MindOverMatter/items/armor/belt.json b/data/mods/MindOverMatter/items/armor/belt.json index bc1d7aa432a1c..6aef8bcb67b11 100644 --- a/data/mods/MindOverMatter/items/armor/belt.json +++ b/data/mods/MindOverMatter/items/armor/belt.json @@ -6,8 +6,8 @@ "description": "A simple synthetic fabric belt with a box to the right of the belt loop. The box has a toggleable switch and a stylized shield with Ψ and the XEDRA logo inside it.", "weight": "350 g", "volume": "500 ml", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "material": [ "nylon", "steel", "nether_crystal" ], "symbol": "[", "looks_like": "leather_belt", @@ -111,8 +111,8 @@ "description": "A simple synthetic fabric belt with a box to the right of the belt loop. The box has a toggleable switch and a stylized flame with a large circle and line superimposed over it and a Ψ behind the XEDRA logo inside it.", "weight": "350 g", "volume": "500 ml", - "price": 10000, - "price_postapoc": 500, + "price": "100 USD", + "price_postapoc": "5 USD", "material": [ "nylon", "steel", "nether_crystal" ], "symbol": "[", "looks_like": "leather_belt", diff --git a/data/mods/MindOverMatter/items/armor/head.json b/data/mods/MindOverMatter/items/armor/head.json index abe3ecb261c46..875b24490b0f3 100644 --- a/data/mods/MindOverMatter/items/armor/head.json +++ b/data/mods/MindOverMatter/items/armor/head.json @@ -6,8 +6,8 @@ "description": "A thin steel circlet studded with chunks of matrix crystal. Your skin prickles slightly where the crown touches it.", "weight": "80 g", "volume": "100 ml", - "price": 5000, - "price_postapoc": 25, + "price": "50 USD", + "price_postapoc": "25 cent", "material": [ { "type": "steel", "portion": 9 }, { "type": "nether_crystal" } ], "looks_like": "crown_golden", "symbol": "[", @@ -24,8 +24,8 @@ "description": "A steel skullcap with a matrix crystal at its crown. It looks ridiculous, but the documents you read said it would protect you from telepathic attack.", "weight": "767 g", "volume": "2 L", - "price": 3000, - "price_postapoc": 25, + "price": "30 USD", + "price_postapoc": "25 cent", "material": [ { "type": "steel", "portion": 12 }, { "type": "nether_crystal" } ], "looks_like": "miner_hat", "symbol": "[", diff --git a/data/mods/MindOverMatter/items/books.json b/data/mods/MindOverMatter/items/books.json index e62cc28a731ea..48566b51ec856 100644 --- a/data/mods/MindOverMatter/items/books.json +++ b/data/mods/MindOverMatter/items/books.json @@ -7,8 +7,8 @@ "description": "A description of simple meditation and breathing techniques, intended for a beginner.", "weight": "1454 g", "volume": "1250 ml", - "price": 2500, - "price_postapoc": 150, + "price": "25 USD", + "price_postapoc": "1 USD 50 cent", "melee_damage": { "bash": 3 }, "material": [ "paper" ], "symbol": "?", diff --git a/data/mods/MindOverMatter/items/chemicals.json b/data/mods/MindOverMatter/items/chemicals.json index 633dd4de2b060..833095c62c715 100644 --- a/data/mods/MindOverMatter/items/chemicals.json +++ b/data/mods/MindOverMatter/items/chemicals.json @@ -10,8 +10,8 @@ "volume": "25 ml", "charges": 1, "phase": "liquid", - "price": 10, - "price_postapoc": 1, + "price": "10 cent", + "price_postapoc": "1 cent", "container": "flask_glass", "flags": [ "TRADER_AVOID" ], "symbol": "~", diff --git a/data/mods/MindOverMatter/items/comestibles.json b/data/mods/MindOverMatter/items/comestibles.json index 7b681049d3b67..0516c7024f807 100644 --- a/data/mods/MindOverMatter/items/comestibles.json +++ b/data/mods/MindOverMatter/items/comestibles.json @@ -9,8 +9,8 @@ "weight": "255 g", "volume": "250 ml", "charges": 1, - "price": 50, - "price_postapoc": 1, + "price": "50 cent", + "price_postapoc": "1 cent", "symbol": "~", "color": "pink", "phase": "liquid", @@ -35,8 +35,8 @@ "weight": "255 g", "volume": "250 ml", "charges": 1, - "price": 50, - "price_postapoc": 1, + "price": "50 cent", + "price_postapoc": "1 cent", "symbol": "~", "color": "dark_gray", "phase": "liquid", @@ -61,8 +61,8 @@ "weight": "255 g", "volume": "250 ml", "charges": 1, - "price": 50, - "price_postapoc": 1, + "price": "50 cent", + "price_postapoc": "1 cent", "symbol": "~", "color": "red", "phase": "liquid", @@ -87,8 +87,8 @@ "weight": "255 g", "volume": "250 ml", "charges": 1, - "price": 50, - "price_postapoc": 1, + "price": "50 cent", + "price_postapoc": "1 cent", "symbol": "~", "color": "yellow", "phase": "liquid", @@ -113,8 +113,8 @@ "weight": "255 g", "volume": "250 ml", "charges": 1, - "price": 50, - "price_postapoc": 1, + "price": "50 cent", + "price_postapoc": "1 cent", "symbol": "~", "color": "white", "phase": "liquid", @@ -139,8 +139,8 @@ "weight": "255 g", "volume": "250 ml", "charges": 1, - "price": 50, - "price_postapoc": 1, + "price": "50 cent", + "price_postapoc": "1 cent", "symbol": "~", "color": "blue", "phase": "liquid", @@ -165,8 +165,8 @@ "weight": "255 g", "volume": "250 ml", "charges": 1, - "price": 50, - "price_postapoc": 1, + "price": "50 cent", + "price_postapoc": "1 cent", "symbol": "~", "color": "green", "phase": "liquid", diff --git a/data/mods/MindOverMatter/items/files_and_post_it.json b/data/mods/MindOverMatter/items/files_and_post_it.json index 12a1d54f4945f..91651b551a8aa 100644 --- a/data/mods/MindOverMatter/items/files_and_post_it.json +++ b/data/mods/MindOverMatter/items/files_and_post_it.json @@ -8,8 +8,8 @@ "name": { "str": "post-it note" }, "snippet_category": "lab_postit_psi", "description": "A bright yellow post-it note.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID" ], "weight": "12 mg", @@ -184,9 +184,9 @@ "name": { "str": "visitor's pass", "str_pl": "visitor's passes" }, "copy-from": "card_plastic_abstract", "description": "A visitor's pass to some sort of facility. The reverse side describes the protocol for using it; this could grant one-time access at a card reader, if you can find one. It also lists the addresses of nearby facilities; activate it to add their locations to your map. There is a prominent symbol stamped on it with the word \"PHAVIAN\" underneath.", - "price": 60000, + "price": "600 USD", "flags": [ "CREDIT_CARD_SHAPED", "SCIENCE_CARD_VISITOR" ], - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "plastic" ], "weight": "5 g", "volume": "5 ml", diff --git a/data/mods/MindOverMatter/items/medical.json b/data/mods/MindOverMatter/items/medical.json index eac1efa3f8fb3..06e234092c6ea 100644 --- a/data/mods/MindOverMatter/items/medical.json +++ b/data/mods/MindOverMatter/items/medical.json @@ -7,8 +7,8 @@ "comestible_type": "MED", "weight": "265 g", "volume": "250 ml", - "price": 3000, - "price_postapoc": 3000, + "price": "30 USD", + "price_postapoc": "30 USD", "fun": -3, "symbol": "q", "container": "bottle_plastic_small", @@ -30,8 +30,8 @@ "weight": "20 g", "volume": "10ml", "charges": 1, - "price": 1200000, - "price_postapoc": 3000, + "price": "12 kUSD", + "price_postapoc": "30 USD", "material": [ "nether_crystal", "alien_liquid" ], "phase": "liquid", "container": "flask_glass", @@ -51,8 +51,8 @@ "weight": "20 g", "volume": "10ml", "charges": 1, - "price": 1200000, - "price_postapoc": 3000, + "price": "12 kUSD", + "price_postapoc": "30 USD", "material": [ "nether_crystal", "alien_liquid" ], "phase": "liquid", "container": "flask_glass", diff --git a/data/mods/MindOverMatter/items/misc.json b/data/mods/MindOverMatter/items/misc.json index aa592353d0158..64320f223dbb1 100644 --- a/data/mods/MindOverMatter/items/misc.json +++ b/data/mods/MindOverMatter/items/misc.json @@ -7,8 +7,8 @@ "description": "A deck of Zener cards, used pre-Cataclysm to test for psychic ability.", "weight": "23 g", "volume": "29 ml", - "price": 1314, - "price_postapoc": 2, + "price": "13 USD 14 cent", + "price_postapoc": "2 cent", "material": [ "cardboard" ], "symbol": ",", "color": "magenta", diff --git a/data/mods/MindOverMatter/items/psions_summon_items.json b/data/mods/MindOverMatter/items/psions_summon_items.json index c8a0a597fc9e9..6c3ede9b0fdfa 100644 --- a/data/mods/MindOverMatter/items/psions_summon_items.json +++ b/data/mods/MindOverMatter/items/psions_summon_items.json @@ -6,8 +6,8 @@ "description": "You are breathing through your skin.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "[", "color": "pink", "flags": [ @@ -33,8 +33,8 @@ "description": "You can perform many common handy tasks with your bare hands.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "$", "color": "pink", "flags": [ @@ -69,8 +69,8 @@ "description": "You can see ambient radiation as a faint, sinister glow.", "weight": "0 g", "volume": "0 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "symbol": "[", "color": "dark_gray", "flags": [ "RAD_DETECT", "PERSONAL", "ZERO_WEIGHT" ] @@ -82,8 +82,8 @@ "description": "A thin silver cord, stretching off into the distance, connecting you to your body. You could follow it back to return.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "[", "color": "light_gray", "flags": [ @@ -272,8 +272,8 @@ "description": "Dancing flames hovering over your hand. You can use this to provide heat and light when necessary.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "$", "color": "red", "flags": [ "PERSONAL", "PADDED", "UNBREAKABLE", "INTEGRATED", "SEMITANGIBLE", "ZERO_WEIGHT", "LIGHT_20", "FIRE", "NO_DROP" ], @@ -364,8 +364,8 @@ "description": "A thin, searing beam, almost too bright to look at. You can use this to weld or cut through things.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "$", "color": "red", "flags": [ @@ -426,8 +426,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -454,8 +454,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -482,8 +482,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -510,8 +510,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -538,8 +538,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -566,8 +566,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -594,8 +594,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -622,8 +622,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -650,8 +650,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -678,8 +678,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -706,8 +706,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -734,8 +734,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -762,8 +762,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -790,8 +790,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -818,8 +818,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -846,8 +846,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -874,8 +874,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -902,8 +902,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -930,8 +930,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -958,8 +958,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -986,8 +986,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -1014,8 +1014,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -1042,8 +1042,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -1070,8 +1070,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -1098,8 +1098,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -1126,8 +1126,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -1154,8 +1154,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -1182,8 +1182,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -1210,8 +1210,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -1238,8 +1238,8 @@ "description": "You can lift one thing with your powers, removing its effect on your encumbrance.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "material": [ "telekinetic_force" ], "symbol": "[", "looks_like": "ragpouch", @@ -1433,8 +1433,8 @@ "description": "The power to stop bleeding", "weight": "0 g", "volume": "0 ml", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "!", "color": "magenta", "flags": [ "NO_INGEST", "EDIBLE_FROZEN", "ONLY_ONE", "ZERO_WEIGHT", "TRADER_AVOID", "SINGLE_USE" ], @@ -1448,8 +1448,8 @@ "description": "The power to stop bleeding", "weight": "0 g", "volume": "0 ml", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "!", "color": "magenta", "flags": [ "NO_INGEST", "EDIBLE_FROZEN", "ONLY_ONE", "ZERO_WEIGHT", "TRADER_AVOID", "SINGLE_USE" ], @@ -1463,8 +1463,8 @@ "description": "The power to stop bleeding", "weight": "0 g", "volume": "0 ml", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "!", "color": "magenta", "flags": [ "NO_INGEST", "EDIBLE_FROZEN", "ONLY_ONE", "ZERO_WEIGHT", "TRADER_AVOID", "SINGLE_USE" ], @@ -1478,8 +1478,8 @@ "description": "The power to stop infections", "weight": "0 g", "volume": "0 ml", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "!", "color": "magenta", "flags": [ "NO_INGEST", "EDIBLE_FROZEN", "ONLY_ONE", "ZERO_WEIGHT", "TRADER_AVOID", "SINGLE_USE" ], @@ -1493,8 +1493,8 @@ "description": "The power to stop infections", "weight": "0 g", "volume": "0 ml", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "!", "color": "magenta", "flags": [ "NO_INGEST", "EDIBLE_FROZEN", "ONLY_ONE", "ZERO_WEIGHT", "TRADER_AVOID", "SINGLE_USE" ], @@ -1508,8 +1508,8 @@ "description": "The power to stop infections", "weight": "0 g", "volume": "0 ml", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "!", "color": "magenta", "flags": [ "NO_INGEST", "EDIBLE_FROZEN", "ONLY_ONE", "ZERO_WEIGHT", "TRADER_AVOID", "SINGLE_USE" ], diff --git a/data/mods/MindOverMatter/items/schematics.json b/data/mods/MindOverMatter/items/schematics.json index 235d013c881aa..bb545520c3511 100644 --- a/data/mods/MindOverMatter/items/schematics.json +++ b/data/mods/MindOverMatter/items/schematics.json @@ -175,7 +175,7 @@ "name": { "str": "USB drive (Phavian)", "str_pl": "USB drives (Phavian)" }, "description": "A USB thumb drive with the XEDRA logo over a large Ψ symbol printed on it. You'd bet there's something important on here.", "price": "12 USD", - "price_postapoc": 10, + "price_postapoc": "10 cent", "material": [ "plastic", "aluminum" ], "weight": "4536 mg", "volume": "4 ml", diff --git a/data/mods/MindOverMatter/items/teleporter_start_items.json b/data/mods/MindOverMatter/items/teleporter_start_items.json index 8ee039e176ac7..20c47e69e07ca 100644 --- a/data/mods/MindOverMatter/items/teleporter_start_items.json +++ b/data/mods/MindOverMatter/items/teleporter_start_items.json @@ -33,8 +33,8 @@ "weight": "40 g", "volume": "20 ml", "material": [ "superalloy" ], - "price": 10000, - "price_postapoc": 1, + "price": "100 USD", + "price_postapoc": "1 cent", "symbol": "#", "color": "red", "ammo_type": [ "mom_fusion_ammo" ], @@ -47,8 +47,8 @@ "description": "Power cartridges for the Ch47. You had better make every shot count, because there's no way you're finding any more of these.", "weight": "1 g", "volume": "1 ml", - "price": 160, - "price_postapoc": 800, + "price": "1 USD 60 cent", + "price_postapoc": "8 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "superalloy", "steel" ], "symbol": "=", diff --git a/data/mods/MindOverMatter/items/tools/crafting_tools.json b/data/mods/MindOverMatter/items/tools/crafting_tools.json index 7089bff09fff0..b58fe956f3e01 100644 --- a/data/mods/MindOverMatter/items/tools/crafting_tools.json +++ b/data/mods/MindOverMatter/items/tools/crafting_tools.json @@ -7,8 +7,8 @@ "weight": "2500 g", "volume": "500 ml", "longest_side": "15 cm", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "to_hit": -2, "melee_damage": { "bash": 2 }, "material": [ "nether_crystal", "steel" ], @@ -24,8 +24,8 @@ "weight": "4000 g", "volume": "750 ml", "longest_side": "25 cm", - "price": 3000, - "price_postapoc": 40, + "price": "30 USD", + "price_postapoc": "40 cent", "to_hit": -2, "melee_damage": { "bash": 5 }, "material": [ "nether_crystal", "steel" ], diff --git a/data/mods/MindOverMatter/items/tools/lighting.json b/data/mods/MindOverMatter/items/tools/lighting.json index b4088d635388c..1c0944ba0afb8 100644 --- a/data/mods/MindOverMatter/items/tools/lighting.json +++ b/data/mods/MindOverMatter/items/tools/lighting.json @@ -10,8 +10,8 @@ "weight": "280 g", "volume": "270 ml", "longest_side": "14 cm", - "price": 1500, - "price_postapoc": 500, + "price": "15 USD", + "price_postapoc": "5 USD", "charges_per_use": 1, "ammo": [ "battery" ], "flags": [ "BELT_CLIP", "WATER_BREAK_ACTIVE" ], @@ -55,8 +55,8 @@ "description": "Powered by matrix technology, this lamp will shed a reddish light for far longer than a standard battery-powered lamp. Activate to open the lid.", "weight": "1438 g", "volume": "1 L", - "price": 175000, - "price_postapoc": 4000, + "price": "1 kUSD 750 USD", + "price_postapoc": "40 USD", "to_hit": -2, "melee_damage": { "bash": 8 }, "material": [ "plastic", "aluminum", "nether_crystal" ], @@ -102,8 +102,8 @@ "volume": "2 L", "longest_side": "170 cm", "melee_damage": { "bash": 5 }, - "price": 9000, - "price_postapoc": 500, + "price": "90 USD", + "price_postapoc": "5 USD", "symbol": "L", "color": "white", "looks_like": "f_floor_lamp" diff --git a/data/mods/MindOverMatter/items/tools/travel.json b/data/mods/MindOverMatter/items/tools/travel.json index 52799a93d4d4f..8897a8da85d34 100644 --- a/data/mods/MindOverMatter/items/tools/travel.json +++ b/data/mods/MindOverMatter/items/tools/travel.json @@ -30,8 +30,8 @@ { "type": "alien_liquid", "portion": 5 }, { "type": "nether_crystal", "portion": 5 } ], - "price": 9000, - "price_postapoc": 100, + "price": "90 USD", + "price_postapoc": "1 USD", "symbol": ";", "color": "blue", "ammo": [ "battery" ], @@ -63,8 +63,8 @@ "volume": "350 ml", "longest_side": "15 cm", "material": [ { "type": "plastic", "portion": 85 }, { "type": "steel", "portion": 10 }, { "type": "nether_crystal", "portion": 5 } ], - "price": 9000, - "price_postapoc": 100, + "price": "90 USD", + "price_postapoc": "1 USD", "symbol": ";", "color": "blue", "ammo": [ "battery" ], diff --git a/data/mods/MindOverMatter/items/weapons.json b/data/mods/MindOverMatter/items/weapons.json index 0476c6fd91cfe..fdbabf3d76f66 100644 --- a/data/mods/MindOverMatter/items/weapons.json +++ b/data/mods/MindOverMatter/items/weapons.json @@ -7,8 +7,8 @@ "description": "This is an inferno grenade, designed to channel Netherum energy to increase its incendiary power. Once you throw it, you will have five seconds to get away before it explodes into a raging firestorm.", "weight": "230 g", "volume": "270 ml", - "price": 2000, - "price_postapoc": 1500, + "price": "20 USD", + "price_postapoc": "15 USD", "to_hit": -1, "melee_damage": { "bash": 6 }, "material": [ "steel", "nether_crystal" ], @@ -33,8 +33,8 @@ "description": "This is an active inferno grenade. Better throw it!", "weight": "230 g", "volume": "270 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "melee_damage": { "bash": 6 }, "material": [ "steel", "nether_crystal" ], @@ -61,8 +61,8 @@ "weight": "4350 g", "volume": "3 L", "longest_side": "965 mm", - "price": 1600000, - "price_postapoc": 6500, + "price": "16 kUSD", + "price_postapoc": "65 USD", "to_hit": -1, "melee_damage": { "bash": 12 }, "material": [ "steel", "plastic", "nether_crystal" ], diff --git a/data/mods/My_Sweet_Cataclysm/sweet_comestibles.json b/data/mods/My_Sweet_Cataclysm/sweet_comestibles.json index af323f38f8054..a8d224ab0af4b 100644 --- a/data/mods/My_Sweet_Cataclysm/sweet_comestibles.json +++ b/data/mods/My_Sweet_Cataclysm/sweet_comestibles.json @@ -179,8 +179,8 @@ "healthy": -15, "calories": 132, "description": "Liquid unsweetened cacao. Quite bitter to taste.", - "price": 38, - "price_postapoc": 5, + "price": "38 cent", + "price_postapoc": "5 cent", "material": [ "junk" ], "volume": "250 ml", "charges": 1, diff --git a/data/mods/My_Sweet_Cataclysm/sweet_flesh.json b/data/mods/My_Sweet_Cataclysm/sweet_flesh.json index 0c5a2fee67ed4..59680637cbf18 100644 --- a/data/mods/My_Sweet_Cataclysm/sweet_flesh.json +++ b/data/mods/My_Sweet_Cataclysm/sweet_flesh.json @@ -11,7 +11,7 @@ "comestible_type": "FOOD", "symbol": "%", "calories": 168, - "price_postapoc": 100, + "price_postapoc": "1 USD", "looks_like": "marshmallow", "material": [ "junk" ], "flags": [ "EDIBLE_FROZEN" ], @@ -29,7 +29,7 @@ "symbol": "%", "calories": 418, "description": "A shell of graham crackers and chocolate filled with delicious marshmallow flesh.", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "wheat", "junk" ], "volume": "250 ml", "flags": [ "EDIBLE_FROZEN" ], @@ -48,7 +48,7 @@ "symbol": "%", "calories": 235, "description": "A chunk of colorful fruit-flavored chewy candy meat.", - "price_postapoc": 554, + "price_postapoc": "5 USD 54 cent", "material": [ "junk" ], "volume": "250 ml", "flags": [ "EDIBLE_FROZEN" ], @@ -76,7 +76,7 @@ "quench": -4, "calories": 293, "description": "A dry, sugary piece of shell of a graham cracker.", - "price_postapoc": 300, + "price_postapoc": "3 USD", "material": [ "wheat", "junk" ], "volume": "250 ml", "flags": [ "EDIBLE_FROZEN" ], @@ -96,7 +96,7 @@ "quench": -1, "calories": 160, "description": "A sweet, delicious chunk of cookie flesh.", - "price_postapoc": 150, + "price_postapoc": "1 USD 50 cent", "material": [ "wheat", "junk" ], "volume": "250 ml", "flags": [ "EDIBLE_FROZEN" ], @@ -113,7 +113,7 @@ "category": "food", "weight": "300 g", "volume": "250 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "symbol": "*", "color": "pink", "stim": 1, @@ -133,7 +133,7 @@ "category": "drugs", "weight": "300 g", "volume": "250 ml", - "price_postapoc": 100, + "price_postapoc": "1 USD", "symbol": "*", "color": "white", "stim": 10, @@ -154,7 +154,7 @@ "symbol": "%", "calories": 287, "description": "A chunk chocolate meat, still dripping with liquid chocolate.", - "price_postapoc": 400, + "price_postapoc": "4 USD", "material": [ "junk" ], "volume": "250 ml", "flags": [ "EDIBLE_FROZEN" ], @@ -174,7 +174,7 @@ "comestible_type": "FOOD", "material": [ "junk" ], "description": "A sweet licorice snake fillet, you can see the strands of licorice intertwining in a swirl of sweetness.", - "price": 340, + "price": "3 USD 40 cent", "quench": -1, "calories": 270, "stim": 1, diff --git a/data/mods/My_Sweet_Cataclysm/sweet_items.json b/data/mods/My_Sweet_Cataclysm/sweet_items.json index 3405168f95f55..224a6d15a0f08 100644 --- a/data/mods/My_Sweet_Cataclysm/sweet_items.json +++ b/data/mods/My_Sweet_Cataclysm/sweet_items.json @@ -6,7 +6,7 @@ "description": "A flyer for some kind of candy. It shows a picture of a gleaming human made of smooth candy looking at you in terror. \"SugarKin the first life-size human candy! Are you a real monster? Will you be able to devour it?\"\n On the back of the flyer you can see some hastily scribbled words:\n \"Hello, my child, welcome to this world. A world where you'll be able to thrive if you follow a few rules:\n1) Never ever get into contact with water, it would melt you!\n2) Avoid humans with clear eyes they are very dangerous! (You can ignore the ones with black eyes they are harmless to you.)\n3) Learn how to make caramel ointment, it's the only way to fix your body if you get hurt.\n There are many more things I'd like to tell you but I must leave before it's too late. I've made you a friend to keep you company, be kind to it.\n I love you,\n - F. \".", "weight": "3 g", "volume": "5 ml", - "price": 0, + "price": "0 cent", "material": [ "paper" ], "symbol": "/", "color": "pink" @@ -51,8 +51,8 @@ "description": "This is a chunk of hard rock candy. It can be broken down into sugar.", "weight": "50 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "rock_candy" ], "symbol": ",", "color": "light_gray", diff --git a/data/mods/No_Hope/items.json b/data/mods/No_Hope/items.json index 98d7b39707dc2..4008a19f154b2 100644 --- a/data/mods/No_Hope/items.json +++ b/data/mods/No_Hope/items.json @@ -27,7 +27,7 @@ "description": "This is an inactive chicken walker. Using this item involves placing it on the ground, loading the unit with the factory-loaded 5.56 rounds and 40mm cartridge grenades in your inventory (if you wish to divide your ammunition, set aside whatever ammunition you do NOT want to give the robot) and turning it on. If reprogrammed and rewired successfully the chicken walker will then identify you as a friendly, roam around or follow you, and attack all enemies with a built-in firearm and grenade launcher.", "weight": "120000 g", "volume": "92500 ml", - "price": 50000000, + "price": "500 kUSD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -54,7 +54,7 @@ "weight": "200000 g", "//": "cheating a bit with the volume due to lack of proper vehicle storage options", "volume": "250 L", - "price": 100000000, + "price": "1000 kUSD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -81,7 +81,7 @@ "name": { "str": "broken chickenbot" }, "category": "other", "description": "A broken chicken walker. Still looks intimidating despite being permanently inoperative, possibly due to the sheer size and mass. Could be gutted for parts.", - "price": 1000, + "price": "10 USD", "material": [ "steel", "plastic" ], "weight": "1023850 g", "//": "Former volume: 1100 L. Adjusted to 1000L so it can actually be placed. TODO(?): Re-add old volume with some sort of flag", @@ -108,7 +108,7 @@ "description": "This is an inactive Honda Regnal. Using this item involves placing it on the ground, wondering how it fuels its flamethrower and turning it on. If reprogrammed and rewired successfully the tribot will then identify you as an ally, roam around or follow you, and impale hostiles with its spiked cable weapons.", "weight": "120000 g", "volume": "92500 ml", - "price": 100000000, + "price": "1000 kUSD", "to_hit": -3, "material": [ "steel" ], "symbol": ";", @@ -134,7 +134,7 @@ "name": { "str": "broken tribot" }, "category": "other", "description": "A broken tribot. Now that its legs lie broken and immobile, the world seems a little less threatening. Could be gutted for parts.", - "price": 1000, + "price": "10 USD", "material": [ "steel", "plastic" ], "weight": "430000 g", "volume": "187500 ml", @@ -150,7 +150,7 @@ "name": { "str": "broken tank drone" }, "category": "other", "description": "A broken tank drone. Still looks intimidating despite being permanently inoperative, possibly due to the sheer size and mass. Could be gutted for parts.", - "price": 1000, + "price": "10 USD", "material": [ "steel", "plastic" ], "weight": "1223850 g", "volume": "875 L", @@ -167,7 +167,7 @@ "color": "light_gray", "weight": "40000 g", "volume": "70000 ml", - "price": 200000, + "price": "2 kUSD", "material": [ "steel" ], "category": "spare_parts" }, @@ -180,7 +180,7 @@ "color": "light_gray", "weight": "60000 g", "volume": "80000 ml", - "price": 300000, + "price": "3 kUSD", "material": [ "steel" ], "category": "spare_parts" }, @@ -193,7 +193,7 @@ "color": "light_gray", "weight": "150000 g", "volume": "575000 ml", - "price": 1000000, + "price": "10 kUSD", "material": [ "steel" ], "category": "spare_parts" }, @@ -205,7 +205,7 @@ "color": "green", "name": { "str_sp": "Tankbot Main Gun" }, "description": "The 120mm cannon from a tankbot. If you have this, you'd best be debugging!", - "price": 99999999, + "price": "999 kUSD 999 USD 99 cent", "material": [ "steel" ], "skill": "launcher", "ammo": [ "120mm" ], @@ -229,7 +229,7 @@ "color": "light_gray", "weight": "40000 g", "volume": "20 L", - "price": 200000, + "price": "2 kUSD", "material": [ "steel" ], "category": "spare_parts" }, @@ -240,8 +240,8 @@ "description": "This is an inactive laser turret. Using this item involves turning it on and placing it on the ground, where it will attach itself. If reprogrammed and rewired successfully the turret will identify you as a friendly, and attack all enemies with its revolving laser cannons. It requires sunlight in order to fire.", "weight": "40750 g", "volume": "30 L", - "price": 600000, - "price_postapoc": 12000, + "price": "6 kUSD", + "price_postapoc": "120 USD", "to_hit": -3, "material": [ "steel", "plastic" ], "symbol": ";", @@ -274,8 +274,8 @@ "color": "light_gray", "weight": "60000 g", "volume": "20 L", - "price": 500000, - "price_postapoc": 250, + "price": "5 kUSD", + "price_postapoc": "2 USD 50 cent", "material": [ "steel" ], "category": "spare_parts" }, @@ -287,8 +287,8 @@ "description": "A hand-forged collapsible tool with two axe heads and a sharp shovel-like tip on one end. It can be used as a shovel, or you could chop some zombies with it instead.", "weight": "2722 g", "volume": "1750 ml", - "price": 25000, - "price_postapoc": 1250, + "price": "250 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": { "grip": "none", "length": "long", "surface": "line", "balance": "neutral" }, "material": [ "steel" ], "symbol": "/", diff --git a/data/mods/No_Hope/necropolis/misc.json b/data/mods/No_Hope/necropolis/misc.json index 526f0c0e41d79..d5d2e183e5651 100644 --- a/data/mods/No_Hope/necropolis/misc.json +++ b/data/mods/No_Hope/necropolis/misc.json @@ -9,8 +9,8 @@ "snippet_category": "necropolis_intro", "description": "A folded glossy handout that appears to be an introduction to living in a massive underground complex.", "looks_like": "flyer", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "weight": "1 g", "volume": "1 ml" diff --git a/data/mods/TEST_DATA/appliance.json b/data/mods/TEST_DATA/appliance.json index c567b796e3219..b17f73a385465 100644 --- a/data/mods/TEST_DATA/appliance.json +++ b/data/mods/TEST_DATA/appliance.json @@ -9,8 +9,8 @@ "material": [ "plastic", "steel" ], "volume": "2 L", "longest_side": "170 cm", - "price": 9000, - "price_postapoc": 500, + "price": "90 USD", + "price_postapoc": "5 USD", "symbol": "L", "color": "white", "looks_like": "f_floor_lamp", @@ -51,8 +51,8 @@ "volume": "500 ml", "weight": "75 g", "category": "tools", - "price": 1, - "price_postapoc": 100, + "price": "1 cent", + "price_postapoc": "1 USD", "max_charges": 3, "initial_charges": 3, "use_action": { "type": "link_up", "targets": [ "no_link", "vehicle_port", "vehicle_battery" ] }, @@ -115,8 +115,8 @@ "volume": "500 ml", "weight": "75 g", "category": "tools", - "price": 1, - "price_postapoc": 100, + "price": "1 cent", + "price_postapoc": "1 USD", "max_charges": 3, "initial_charges": 3, "use_action": { "type": "link_up", "targets": [ "no_link", "vehicle_port", "vehicle_battery" ] }, @@ -149,8 +149,8 @@ "description": "A large storage battery containing many lithium-ion cells. Could be installed into a storage battery case for easy removal from a vehicle, or just welded straight in.", "weight": "75 kg", "volume": "25 L", - "price": 200000, - "price_postapoc": 1500, + "price": "2 kUSD", + "price_postapoc": "15 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": ":", diff --git a/data/mods/TEST_DATA/bionics.json b/data/mods/TEST_DATA/bionics.json index 87cea5051cfff..2002cc018586b 100644 --- a/data/mods/TEST_DATA/bionics.json +++ b/data/mods/TEST_DATA/bionics.json @@ -37,7 +37,7 @@ "description": "Woodshed, in your chest..", "volume": "301 L", "weight": "1 g", - "price": 0, + "price": "0 cent", "material": [ "plastic" ], "symbol": "(", "color": "magenta", @@ -230,7 +230,7 @@ "name": { "str": "Bionic Limb - Left Leg CBM" }, "looks_like": "bio_int_enhancer", "description": "CBM which replaces the left leg with a bionic counterpart.", - "price": 220000, + "price": "2 kUSD 200 USD", "weight": "30000 g", "difficulty": 3, "volume": "8000 ml" @@ -242,7 +242,7 @@ "name": { "str": "Bionic Limb - Right Leg CBM" }, "looks_like": "bio_int_enhancer", "description": "CBM which replaces the left leg with a bionic counterpart.", - "price": 220000, + "price": "2 kUSD 200 USD", "weight": "30000 g", "difficulty": 3, "volume": "8000 ml" diff --git a/data/mods/TEST_DATA/items.json b/data/mods/TEST_DATA/items.json index ccf6ec44f7f11..06e96647a6e59 100644 --- a/data/mods/TEST_DATA/items.json +++ b/data/mods/TEST_DATA/items.json @@ -8,8 +8,8 @@ "material": [ "test_material" ], "weight": "397 g", "volume": "270 ml", - "price": 1000000, - "price_postapoc": 1000000, + "price": "10 kUSD", + "price_postapoc": "10 kUSD", "symbol": "*", "color": "green", "flags": [ "BOMB", "DANGEROUS" ] @@ -46,8 +46,8 @@ "description": "A large metal tank for holding liquids. Useful for crafting.", "weight": "5668 g", "volume": "60050 ml", - "price": 10000, - "price_postapoc": 250, + "price": "100 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -4, "material": [ "steel" ], "symbol": "}", @@ -101,7 +101,7 @@ "id": "test_ring_strength_1", "weight": "4 g", "volume": "1 ml", - "price": 5000, + "price": "50 USD", "material": [ "copper" ], "symbol": "[", "color": "light_red", @@ -120,8 +120,8 @@ "description": "An old-fashioned pair of leather rollerskates with steel frames. While quite fast on flat floors, they make it difficult to take hits or to move on rough terrain.", "weight": "2720 g", "volume": "3 L", - "price": 8500, - "price_postapoc": 1500, + "price": "85 USD", + "price_postapoc": "15 USD", "to_hit": -2, "material": [ "leather", "steel" ], "symbol": "[", @@ -141,8 +141,8 @@ "description": "A pair of inline skates. Very fast on flat floors, but they make it hard to move on rough terrain, take hits, or dodge effectively.", "weight": "1640 g", "volume": "3750 ml", - "price": 8500, - "price_postapoc": 2500, + "price": "85 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "plastic", "cotton" ], "symbol": "[", @@ -162,7 +162,7 @@ "description": "This is a largish piece of cloth, useful in crafting and possibly for staunching bleeding.", "weight": "80 g", "volume": "250 ml", - "price": 0, + "price": "0 cent", "material": [ "cotton" ], "symbol": ",", "color": "white", @@ -180,7 +180,7 @@ "description": "This is a bundle of 100 cotton patchwork pieces tied together with a piece of string.", "weight": "800 g", "volume": "2000 ml", - "price": 0, + "price": "0 cent", "material": [ "cotton" ], "symbol": "#", "color": "white" @@ -193,7 +193,7 @@ "description": "This is a ball of 100 short pieces of string, all tangled and knotted together.", "weight": "600 g", "volume": "1000 ml", - "price": 0, + "price": "0 cent", "material": [ "cotton" ], "symbol": "#", "color": "white" @@ -212,8 +212,8 @@ "symbol": "/", "material": [ "wood" ], "techniques": [ "WBLOCK_1" ], - "price": 1000, - "price_postapoc": 0, + "price": "10 USD", + "price_postapoc": "0 cent", "flags": [ "FIREWOOD" ], "melee_damage": { "bash": 10 } }, @@ -232,8 +232,8 @@ "material": [ "steel" ], "qualities": [ [ "HAMMER", 1 ] ], "techniques": [ "WBLOCK_1" ], - "price": 7500, - "price_postapoc": 300, + "price": "75 USD", + "price_postapoc": "3 USD", "melee_damage": { "bash": 12 } }, { @@ -251,8 +251,8 @@ "material": [ { "type": "steel", "portion": 9 }, { "type": "glass", "portion": 1 } ], "qualities": [ [ "HAMMER", 1 ] ], "techniques": [ "WBLOCK_1" ], - "price": 7500, - "price_postapoc": 300, + "price": "75 USD", + "price_postapoc": "3 USD", "melee_damage": { "bash": 12 } }, { @@ -270,8 +270,8 @@ "material": [ { "type": "steel", "portion": 1 }, { "type": "glass", "portion": 9 } ], "qualities": [ [ "HAMMER", 1 ] ], "techniques": [ "WBLOCK_1" ], - "price": 7500, - "price_postapoc": 300, + "price": "75 USD", + "price_postapoc": "3 USD", "melee_damage": { "bash": 12 } }, { @@ -281,8 +281,8 @@ "description": "This is a set of shears designed to obtain wool from sheep.", "weight": "820 g", "volume": "750 ml", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -298,8 +298,8 @@ "description": "This is a set of shears designed to obtain wool from sheep.", "weight": "820 g", "volume": "750 ml", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ { "type": "steel", "portion": 9 }, { "type": "plastic", "portion": 1 } ], "symbol": ";", @@ -315,8 +315,8 @@ "description": "This is a set of shears designed to obtain wool from sheep.", "weight": "820 g", "volume": "750 ml", - "price": 500, - "price_postapoc": 250, + "price": "5 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ { "type": "steel", "portion": 1 }, { "type": "plastic", "portion": 9 } ], "symbol": ";", @@ -395,8 +395,8 @@ "description": "A common belt with pockets, loops and sheaths to store up to six tools or blades. Widely used by handymen and electricians.", "weight": "2000 g", "volume": "2250 ml", - "price": 4500, - "price_postapoc": 1500, + "price": "45 USD", + "price_postapoc": "15 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "holster", @@ -456,8 +456,8 @@ "description": "A common belt with pockets, loops and sheaths to store up to six tools or blades. Widely used by handymen and electricians.", "weight": "2000 g", "volume": "2250 ml", - "price": 4500, - "price_postapoc": 1500, + "price": "45 USD", + "price_postapoc": "15 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "holster", @@ -540,8 +540,8 @@ "weight": "1200 g", "volume": "170 ml", "longest_side": "50 cm", - "price": 1300, - "price_postapoc": 500, + "price": "13 USD", + "price_postapoc": "5 USD", "to_hit": { "grip": "solid", "length": "short", "surface": "any", "balance": "neutral" }, "material": [ "steel" ], "symbol": ";", @@ -561,8 +561,8 @@ "longest_side": "25 cm", "weight": "566 g", "volume": "320 ml", - "price": 700, - "price_postapoc": 100, + "price": "7 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "steel", "wood" ], "symbol": ";", @@ -581,8 +581,8 @@ "weight": "907 g", "volume": "120 ml", "longest_side": "20 cm", - "price": 1200, - "price_postapoc": 100, + "price": "12 USD", + "price_postapoc": "1 USD", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -598,8 +598,8 @@ "description": "This is a test tongs from early pocket implementation tests. Some or all of these values will possibly not match the current in-game stats, so beware.", "weight": "540 g", "volume": "500 ml", - "price": 1600, - "price_postapoc": 10, + "price": "16 USD", + "price_postapoc": "10 cent", "material": [ "steel" ], "symbol": ";", "color": "light_gray", @@ -615,8 +615,8 @@ "description": "Holy pockets, Batman! This belt has all kinds of pockets for testing.", "weight": "3 kg", "volume": "4 L", - "price": 25000, - "price_postapoc": 9900, + "price": "250 USD", + "price_postapoc": "99 USD", "material": [ "kevlar" ], "symbol": "[", "looks_like": "holster", @@ -706,8 +706,8 @@ "weight": "280 g", "volume": "270 ml", "longest_side": "14 cm", - "price": 500, - "price_postapoc": 100, + "price": "5 USD", + "price_postapoc": "1 USD", "charges_per_use": 1, "ammo": [ "battery" ], "flags": [ "BELT_CLIP", "WATER_BREAK_ACTIVE" ], @@ -741,7 +741,7 @@ "material": [ "steel" ], "volume": "1 L", "category": "spare_parts", - "price": 6000, + "price": "60 USD", "qualities": [ [ "COOK", 1 ] ], "melee_damage": { "bash": 5 } }, @@ -754,7 +754,7 @@ "looks_like": "test_sheet_metal", "weight": "250 g", "volume": "250 ml", - "price": 2000, + "price": "20 USD", "to_hit": -3, "stack_size": 8, "//": "Roughly in the 15cm×15cm to 20cm×20cm range. Compact and stacks well, so equally dense as a solid block.", @@ -772,7 +772,7 @@ "weight": "3600 g", "volume": "1250 ml", "longest_side": "76 cm", - "price": 7500, + "price": "75 USD", "to_hit": 2, "material": [ "steel" ], "symbol": ";", @@ -797,7 +797,7 @@ "description": "This is a large, two-handed pickhead axe normally used by firefighters. It makes a powerful melee weapon, but is a bit slow to recover between swings.", "weight": "2520 g", "volume": "2 L", - "price": 20000, + "price": "200 USD", "to_hit": 1, "material": [ "steel", "wood" ], "symbol": "/", @@ -815,7 +815,7 @@ "description": "This is a large, two-handed pickhead axe normally used by firefighters. It makes a powerful melee weapon, but is a bit slow to recover between swings.", "weight": "2520 g", "volume": "2 L", - "price": 20000, + "price": "200 USD", "to_hit": 1, "material": [ { "type": "steel", "portion": 9 }, { "type": "wood", "portion": 1 } ], "symbol": "/", @@ -833,7 +833,7 @@ "description": "This is a large, two-handed pickhead axe normally used by firefighters. It makes a powerful melee weapon, but is a bit slow to recover between swings.", "weight": "2520 g", "volume": "2 L", - "price": 20000, + "price": "200 USD", "to_hit": 1, "material": [ { "type": "steel", "portion": 1 }, { "type": "wood", "portion": 9 } ], "symbol": "/", @@ -852,7 +852,7 @@ "weight": "170 g", "volume": "40 ml", "longest_side": "15 cm", - "price": 450, + "price": "4 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -869,7 +869,7 @@ "weight": "170 g", "volume": "250 ml", "longest_side": "25 cm", - "price": 450, + "price": "4 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ";", @@ -919,7 +919,7 @@ "description": "This is a device with a metal tip that can get very hot. It is necessary for advanced electronics crafting.", "weight": "181 g", "volume": "500 ml", - "price": 1000, + "price": "10 USD", "material": [ "iron" ], "symbol": ",", "color": "light_gray", @@ -955,8 +955,8 @@ "weight": "250 g", "volume": "250 ml", "longest_side": "25 cm", - "price": 20000, - "price_postapoc": 100, + "price": "200 USD", + "price_postapoc": "1 USD", "to_hit": -1, "material": [ "plastic" ], "symbol": ";", @@ -992,8 +992,8 @@ "flags": [ "NO_SALVAGE", "NO_UNLOAD" ], "weight": "45 g", "volume": "35 ml", - "price": 10000, - "price_postapoc": 200, + "price": "100 USD", + "price_postapoc": "2 USD", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -1012,8 +1012,8 @@ "flags": [ "NO_SALVAGE", "NO_UNLOAD", "RECHARGE" ], "weight": "45 g", "volume": "35ml", - "price": 5000, - "price_postapoc": 150, + "price": "50 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "iron", "plastic" ], "symbol": "=", "color": "yellow", @@ -1031,7 +1031,7 @@ "color": "light_gray", "weight": "3000 g", "volume": "750 ml", - "price": 5000, + "price": "50 USD", "to_hit": -2, "qualities": [ [ "JACK", 4 ] ], "melee_damage": { "bash": 4 } @@ -1043,8 +1043,8 @@ "description": "A popular, fancy smartphone. Capable of making photos due to integrated camera and illuminating an area as per flashlight app, assuming it has enough charge. The smartphone also has a clock app that includes an alarm. Runs on a small, rechargeable power cell compatible with Unified Power Supply.", "weight": "200 g", "volume": "100 ml", - "price": 20000, - "price_postapoc": 200, + "price": "200 USD", + "price_postapoc": "2 USD", "material": [ { "type": "aluminum", "portion": 75 }, { "type": "plastic", "portion": 25 } ], "looks_like": "cell_phone", "symbol": ";", @@ -1098,7 +1098,7 @@ "description": "Socks. Put 'em on your feet.", "weight": "32 g", "volume": "250 ml", - "price": 200, + "price": "2 USD", "material": [ "cotton", "wool" ], "symbol": "[", "looks_like": "socks_wool", @@ -1115,7 +1115,7 @@ "description": "Goofy-looking socks with zero ankle coverage and lots of holes on top. For testing only, nobody would actually wear these, right?", "weight": "20 g", "volume": "150 ml", - "price": 200, + "price": "2 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "socks_wool", @@ -1132,7 +1132,7 @@ "description": "Industrial grade ear plugs. They fit inside the ear.", "weight": "10 g", "volume": "10 ml", - "price": 10, + "price": "10 cent", "material": [ "plastic" ], "symbol": ";", "color": "light_gray", @@ -1146,7 +1146,7 @@ "description": "Tests the effects of encumbrance on the test body part.", "weight": "500 g", "volume": "3 L", - "price": 117500, + "price": "1 kUSD 175 USD", "material": [ "plastic" ], "symbol": "[", "color": "yellow", @@ -1163,7 +1163,7 @@ "description": "An impermeable whole-body garment worn as protection against hazardous materials. Though very restrictive and fragile, wearing it will provide complete protection against ambient radiation. It requires a separate gas mask for full protection.", "weight": "5000 g", "volume": "17 L", - "price": 117500, + "price": "1 kUSD 175 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "beekeeping_suit", @@ -1187,7 +1187,7 @@ "description": ".", "weight": "5000 g", "volume": "17 L", - "price": 117500, + "price": "1 kUSD 175 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "beekeeping_suit", @@ -1205,7 +1205,7 @@ "description": ".", "weight": "5000 g", "volume": "17 L", - "price": 117500, + "price": "1 kUSD 175 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "beekeeping_suit", @@ -1223,7 +1223,7 @@ "description": "An impermeable whole-body garment worn as protection against hazardous materials. Though very restrictive and fragile, wearing it will provide complete protection against ambient radiation. It requires a separate gas mask for full protection.", "weight": "5000 g", "volume": "17 L", - "price": 117500, + "price": "1 kUSD 175 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "beekeeping_suit", @@ -1247,7 +1247,7 @@ "description": "An impermeable whole-body garment worn as protection against hazardous materials. Though very restrictive and fragile, wearing it will provide complete protection against ambient radiation. It requires a separate gas mask for full protection.", "weight": "5000 g", "volume": "17 L", - "price": 117500, + "price": "1 kUSD 175 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "beekeeping_suit", @@ -1274,7 +1274,7 @@ "description": "An impermeable whole-body garment worn as protection against hazardous materials. Though very restrictive and fragile, wearing it will provide complete protection against ambient radiation. It requires a separate gas mask for full protection.", "weight": "5000 g", "volume": "17 L", - "price": 117500, + "price": "1 kUSD 175 USD", "material": [ "plastic" ], "symbol": "[", "looks_like": "beekeeping_suit", @@ -1301,8 +1301,8 @@ "description": "Full-body suit completely covering all body parts, including the head, mouth, and eyes.", "weight": "300 g", "volume": "500 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "lycra" ], "symbol": "[", "color": "dark_gray", @@ -1323,8 +1323,8 @@ "description": "Full-body suit completely covering all body parts, including the head, mouth, and eyes.", "weight": "300 g", "volume": "500 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "lycra" ], "symbol": "[", "color": "dark_gray", @@ -1348,8 +1348,8 @@ "description": "Full-body suit completely covering all body parts, including the head, mouth, and eyes.", "weight": "300 g", "volume": "500 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "lycra" ], "symbol": "[", "color": "dark_gray", @@ -1373,8 +1373,8 @@ "description": "Full-body suit completely covering all body parts, including the head, mouth, and eyes.", "weight": "300 g", "volume": "500 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "lycra_resist_override_stab" ], "symbol": "[", "color": "dark_gray", @@ -1396,8 +1396,8 @@ "description": "Full-body suit completely covering all body parts, including the head, mouth, and eyes.", "weight": "300 g", "volume": "500 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "lycra_resist_test_fire" ], "symbol": "[", "color": "dark_gray", @@ -1418,8 +1418,8 @@ "description": "Full-body suit completely covering all body parts, including the head, mouth, and eyes.", "weight": "300 g", "volume": "500 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "material": [ "lycra" ], "symbol": "[", "color": "dark_gray", @@ -1440,8 +1440,8 @@ "description": "When your tests are so bright, you have to wear shades.", "weight": "35 g", "volume": "250 ml", - "price": 5000, - "price_postapoc": 10, + "price": "50 USD", + "price_postapoc": "10 cent", "to_hit": -2, "material": [ "glass", "plastic" ], "symbol": "[", @@ -1459,8 +1459,8 @@ "description": "The tanktop of the future. Super armor with almost infinite defensive power.", "weight": "300 g", "volume": "500 ml", - "price": 2500, - "price_postapoc": 50, + "price": "25 USD", + "price_postapoc": "50 cent", "symbol": "[", "color": "dark_gray", "warmth": 20, @@ -1484,13 +1484,13 @@ "type": "ARMOR", "name": { "str": "long waist apron" }, "description": "A long waist apron made of cotton.", - "price_postapoc": 50, + "price_postapoc": "50 cent", "to_hit": 1, "symbol": "[", "looks_like": "vest_leather", "volume": "1750 ml", "weight": "226 g", - "price": 1000, + "price": "10 USD", "material": [ "cotton" ], "color": "white", "warmth": 2, @@ -1597,8 +1597,8 @@ "description": "A portable plastic dome to keep the rain and sun off.", "weight": "141 g", "volume": "1500 ml", - "price": 2400, - "price_postapoc": 50, + "price": "24 USD", + "price_postapoc": "50 cent", "to_hit": 1, "material": [ "plastic", "aluminum" ], "ascii_picture": "umbrella", @@ -1616,7 +1616,7 @@ "color": "yellow", "name": "TEST compound bow", "description": "A high-power bow with shaped cams and extra cables for high velocity shots that can be used effectively by fairly strong archers. Currently set to a medium weight.", - "price": 55000, + "price": "550 USD", "material": [ "steel", "plastic" ], "flags": [ "FIRE_TWOHAND", "RELOAD_AND_SHOOT", "PRIMITIVE_RANGED_WEAPON", "WATERPROOF_GUN", "NEVER_JAMS" ], "ammo_effects": [ "NEVER_MISFIRES" ], @@ -1658,8 +1658,8 @@ "quench": -2, "calories": 202, "description": "A handful of tasty crunchy nuts from a pinecone.", - "price": 136, - "price_postapoc": 136, + "price": "1 USD 36 cent", + "price_postapoc": "1 USD 36 cent", "material": [ "nut" ], "volume": "250 ml", "flags": [ "EDIBLE_FROZEN", "NUTRIENT_OVERRIDE" ], @@ -1717,8 +1717,8 @@ "quench": 3, "healthy": -1, "calories": 95, - "price": 900, - "price_postapoc": 100, + "price": "9 USD", + "price_postapoc": "1 USD", "material": [ "fruit" ], "fun": 10, "flags": [ "FREEZERBURN", "SMOKABLE" ], @@ -1739,8 +1739,8 @@ "symbol": "o", "quench": 4, "calories": 80, - "price": 44, - "price_postapoc": 50, + "price": "44 cent", + "price_postapoc": "50 cent", "material": [ "egg" ], "fun": -8, "//": "Omitting the RAW flag so calories will be taken at face value.", @@ -1767,8 +1767,8 @@ "addiction_type": [ "alcohol", { "addiction": "caffeine", "potential": 102 } ], "description": "A distilled grain alcohol, made from, by, and for real Southern colonels!", "calories": 79, - "price": 2100, - "price_postapoc": 250, + "price": "21 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "alcohol" ], "volume": "250 ml", "flags": [ "EATEN_COLD", "NO_AUTO_CONSUME" ], @@ -1785,7 +1785,7 @@ "description": "A standard plastic jug used for milk and household cleaning chemicals.", "weight": "190 g", "volume": "3938 ml", - "price": 0, + "price": "0 cent", "to_hit": 1, "material": [ "plastic" ], "symbol": ")", @@ -1827,7 +1827,7 @@ "description": "A small watertight leather bag with a carrying strap, can hold 1.5 liters of water.", "weight": "453 g", "volume": "500 ml", - "price": 2000, + "price": "20 USD", "to_hit": -1, "material": [ "leather" ], "symbol": ")", @@ -1864,8 +1864,8 @@ "description": "Stretchy, watertight, and airtight - the perfect trial balloon.", "weight": "5 g", "volume": "15 ml", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "to_hit": -5, "material": [ "rubber" ], "symbol": ")", @@ -1892,8 +1892,8 @@ "description": "This condom is only for testing, and should not be used as a birth control device.", "weight": "5 g", "volume": "15 ml", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "to_hit": -5, "material": [ "plastic" ], "symbol": ")", @@ -1941,8 +1941,8 @@ "description": "A steel can that thinks its made of tin, maybe useful for testing, but you wouldn't want to eat out of it.", "weight": "40 g", "volume": "262 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "steel" ], "symbol": ")", "color": "blue", @@ -1970,8 +1970,8 @@ "volume": "1 L", "material": [ "test_material" ], "longest_side": "40 cm", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "to_hit": -5, "symbol": ")", "pocket_data": [ @@ -1994,8 +1994,8 @@ "description": "A huge test duffel bag. Provides plenty of storage, but is severely encumbering.", "weight": "933 g", "volume": "6 L", - "price": 12000, - "price_postapoc": 500, + "price": "120 USD", + "price_postapoc": "5 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "rucksack", @@ -2022,8 +2022,8 @@ "description": "A small backpack. Good storage for a little encumbrance.", "weight": "633 g", "volume": "2 L", - "price": 3900, - "price_postapoc": 16000, + "price": "39 USD", + "price_postapoc": "160 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "ragpouch", @@ -2041,8 +2041,8 @@ "description": "A small backpack designed for testing nesting issues. Good storage for a little encumbrance.", "weight": "633 g", "volume": "2 L", - "price": 3900, - "price_postapoc": 16000, + "price": "39 USD", + "price_postapoc": "160 USD", "material": [ "cotton" ], "symbol": "[", "looks_like": "ragpouch", @@ -2060,7 +2060,7 @@ "description": "Useful for carrying money, documents, or smuggled goods.", "weight": "1700 g", "volume": "15750 ml", - "price": 24000, + "price": "240 USD", "to_hit": -2, "material": [ "plastic" ], "symbol": "[", @@ -2088,8 +2088,8 @@ "description": "Quiver of Testing, with room for 20 arrows or bolts.", "weight": "260 g", "volume": "500 ml", - "price": 6500, - "price_postapoc": 1000, + "price": "65 USD", + "price_postapoc": "10 USD", "material": [ "leather" ], "symbol": "[", "looks_like": "bscabbard", @@ -2104,7 +2104,7 @@ { "id": "test_arrow_wood", "type": "AMMO", - "price": 1000, + "price": "10 USD", "name": { "str": "test wooden broadhead arrow" }, "symbol": "=", "color": "green", @@ -2112,7 +2112,7 @@ "description": "Test arrow", "material": [ "wood", "steel" ], "volume": "250 ml", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "weight": "30 g", "ammo_type": "arrow", "damage": { "damage_type": "stab", "armor_penetration": 1, "constant_damage_multiplier": 1.5 }, @@ -2134,7 +2134,7 @@ "symbol": "/", "color": "brown", "to_hit": -1, - "price_postapoc": 10, + "price_postapoc": "10 cent", "flags": [ "SPEAR" ], "techniques": [ "WBLOCK_1" ], "qualities": [ [ "COOK", 1 ] ], @@ -2153,8 +2153,8 @@ "color": "dark_gray", "symbol": "/", "material": [ "steel" ], - "price": 7500, - "price_postapoc": 300, + "price": "75 USD", + "price_postapoc": "3 USD", "melee_damage": { "bash": 32, "cut": 32 } }, { @@ -2170,8 +2170,8 @@ "color": "dark_gray", "symbol": "/", "material": [ "steel" ], - "price": 7500, - "price_postapoc": 300, + "price": "75 USD", + "price_postapoc": "3 USD", "melee_damage": { "bash": 32, "cut": 32 } }, { @@ -2187,8 +2187,8 @@ "color": "dark_gray", "symbol": "/", "material": [ "steel" ], - "price": 7500, - "price_postapoc": 300, + "price": "75 USD", + "price_postapoc": "3 USD", "melee_damage": { "bash": 32, "cut": 32 } }, { @@ -2204,8 +2204,8 @@ "color": "dark_gray", "symbol": "/", "material": [ "steel" ], - "price": 7500, - "price_postapoc": 300, + "price": "75 USD", + "price_postapoc": "3 USD", "melee_damage": { "test_fire": 8 } }, { @@ -2217,8 +2217,8 @@ "description": "A long strip of braided leather with a handle on one end. Originally developed to settle disagreements with cattle, it's better used now for flaying the rotten flesh off of walking corpses. Great for when a problem comes along.", "weight": "3460 g", "volume": "2 L", - "price": 3500, - "price_postapoc": 500, + "price": "35 USD", + "price_postapoc": "5 USD", "material": [ "test_material" ], "flags": [ "REACH_ATTACK", "REACH3", "WHIP" ], "category": "weapons", @@ -2231,7 +2231,7 @@ "color": "light_gray", "name": { "str": "TEST glaive" }, "description": "A sturdy polearm with a sizable, single-edged blade on the end.", - "price": 50000, + "price": "500 USD", "material": [ "steel", "wood" ], "qualities": [ [ "CUT", 1 ], [ "BUTCHER", -28 ] ], "flags": [ "DURABLE_MELEE", "REACH_ATTACK", "NONCONDUCTIVE", "POLEARM", "SHEATH_SPEAR", "ALWAYS_TWOHAND" ], @@ -2239,7 +2239,7 @@ "weight": "2100 g", "volume": "2500 ml", "longest_side": "180 cm", - "price_postapoc": 8000, + "price_postapoc": "80 USD", "melee_damage": { "bash": 17, "cut": 40 } }, { @@ -2249,8 +2249,8 @@ "description": "A handgun for testing, based on the Glock 9mm.", "weight": "600 g", "volume": "500 ml", - "price": 69000, - "price_postapoc": 2500, + "price": "690 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "(", @@ -2282,8 +2282,8 @@ "weight": "600 g", "volume": "500 ml", "barrel_length": "150 mm", - "price": 69000, - "price_postapoc": 2500, + "price": "690 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "(", @@ -2303,8 +2303,8 @@ "name": { "str": "shortened barrel" }, "description": "A shortened barrel results in markedly reduced accuracy and a minor increase in noise, but also greatly improves the ease with which the weapon can be carried and wielded.", "volume": "0 ml", - "price": 12000, - "price_postapoc": 250, + "price": "120 USD", + "price_postapoc": "2 USD 50 cent", "integral_longest_side": "100 mm", "barrel_length": "100 mm", "install_time": "0 s", @@ -2325,8 +2325,8 @@ "description": "Magazine exclusively designed for Test Glocks.", "weight": "105 g", "volume": "250 ml", - "price": 2900, - "price_postapoc": 100, + "price": "29 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -2343,8 +2343,8 @@ "description": "30-round magazine exclusively for use with the Test Glock.", "weight": "210 g", "volume": "500 ml", - "price": 4700, - "price_postapoc": 500, + "price": "47 USD", + "price_postapoc": "5 USD", "material": [ "plastic" ], "symbol": "#", "color": "light_gray", @@ -2361,8 +2361,8 @@ "description": "Generic 9mm ammo based on JHP.", "weight": "7 g", "volume": "250 ml", - "price": 150, - "price_postapoc": 1000, + "price": "1 USD 50 cent", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "powder" ], "symbol": "=", @@ -2384,8 +2384,8 @@ "description": "Generic 100mm ammo.", "weight": "7 g", "volume": "250 ml", - "price": 150, - "price_postapoc": 1000, + "price": "1 USD 50 cent", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "powder" ], "symbol": "=", @@ -2418,8 +2418,8 @@ "description": "Test ammo based on the .45 JHP.", "weight": "10 g", "volume": "250 ml", - "price": 180, - "price_postapoc": 600, + "price": "1 USD 80 cent", + "price_postapoc": "6 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "powder" ], "symbol": "=", @@ -2440,8 +2440,8 @@ "type": "AMMO", "name": { "str_sp": "00 shot" }, "description": "A shell filled with metal pellets. Extremely damaging, plus the spread makes it very accurate at short range. Favored by SWAT forces.", - "price": 500, - "price_postapoc": 800, + "price": "5 USD", + "price_postapoc": "8 USD", "range": 18, "weight": "10 g", "volume": "250 ml", @@ -2465,7 +2465,7 @@ "weight": "250 g", "volume": "250 ml", "charges": 1, - "price": 50, + "price": "50 cent", "symbol": "~", "color": "light_blue" }, @@ -2486,7 +2486,7 @@ "phase": "gas", "weight": "250 g", "volume": "250 ml", - "price": 50, + "price": "50 cent", "symbol": "~", "color": "light_gray" }, @@ -2498,8 +2498,8 @@ "description": "A simple 1-liter cardboard box of deliberately undefined proportions.", "weight": "100 g", "volume": "1050 ml", - "price": 0, - "price_postapoc": 25, + "price": "0 cent", + "price_postapoc": "25 cent", "material": [ "cardboard" ], "symbol": "[", "color": "brown", @@ -2615,8 +2615,8 @@ "description": "Gun suppressor mod for testing.", "weight": "880 g", "volume": "750 ml", - "price": 480, - "price_postapoc": 250, + "price": "4 USD 80 cent", + "price_postapoc": "2 USD 50 cent", "install_time": "30 s", "to_hit": 1, "material": [ "steel" ], @@ -2679,8 +2679,8 @@ "quench": 25, "calories": 132, "description": "You can only push a drink so far before it spoils.", - "price": 38, - "price_postapoc": 50, + "price": "38 cent", + "price_postapoc": "50 cent", "material": [ "milk" ], "volume": "250 ml", "charges": 1, @@ -2702,10 +2702,10 @@ "calories": 17, "quench": 6, "fun": -5, - "price": 0, + "price": "0 cent", "material": [ "rubber", "water" ], "volume": "250 ml", - "price_postapoc": 10, + "price_postapoc": "10 cent", "charges": 7, "phase": "liquid", "comestible_type": "DRINK", @@ -2727,8 +2727,8 @@ "addiction_potential": 3, "calories": 49, "description": "Cheap booze made from fermented tennis ball juice. Tastes just like it sounds.", - "price": 550, - "price_postapoc": 100, + "price": "5 USD 50 cent", + "price_postapoc": "1 USD", "material": [ "alcohol", "water" ], "primary_material": "alcohol", "volume": "250 ml", @@ -2746,8 +2746,8 @@ "description": "This is a test coffee carafe designed to keep atomic beverages extra radioactive. It leaks radiation all the time.", "weight": "5 kg", "volume": "4 L", - "price": 100000, - "price_postapoc": 3000, + "price": "1 kUSD", + "price_postapoc": "30 USD", "material": [ "plastic", "aluminum" ], "qualities": [ [ "BOIL", 1 ] ], "symbol": "&", @@ -2764,8 +2764,8 @@ "category": "food", "weight": "3 g", "volume": "250 ml", - "price": 100, - "price_postapoc": 100, + "price": "1 USD", + "price_postapoc": "1 USD", "stackable": true, "charges": 10, "stack_size": 100, @@ -2792,8 +2792,8 @@ "healthy": -1, "calories": 496, "description": "A smooth white block of cleaned and rendered animal fat. It will remain edible for a very long time, and can be used as an ingredient in many foods and projects.", - "price": 500, - "price_postapoc": 800, + "price": "5 USD", + "price_postapoc": "8 USD", "//": "*May* have been commercially traded.", "material": [ "flesh" ], "volume": "250 ml", @@ -2823,9 +2823,9 @@ "healthy": -1, "calories": 270, "description": "Also known as pork rinds or chicharrones, these are bits of edible fat and skin that have been fried until they are crispy and delicious.", - "price": 170, + "price": "1 USD 70 cent", "volume": "200 ml", - "price_postapoc": 500, + "price_postapoc": "5 USD", "material": [ "flesh" ], "stackable": true, "charges": 4, @@ -2840,8 +2840,8 @@ "description": "Humorous 1999 essay by Neal Stephenson comparing computer operating system vendors to car dealerships.", "weight": "300 g", "volume": "300 ml", - "price": 500, - "price_postapoc": 500, + "price": "5 USD", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "color": "blue", @@ -2855,8 +2855,8 @@ "description": "Alfred Aho and Jeffrey Ullman's classic 1977 computer science textbook. Features a cover drawing of a knight wielding an LALR parser generation and syntax directed translation against the metaphorical green dragon, The Complexity of Compiler Design.", "weight": "1587 g", "volume": "1500 ml", - "price": 7800, - "price_postapoc": 500, + "price": "78 USD", + "price_postapoc": "5 USD", "material": [ "paper" ], "symbol": "?", "color": "green", @@ -2876,8 +2876,8 @@ "description": "This is a prototype power armor just for testing.", "weight": "55 kg", "volume": "100 L", - "price": 7000000, - "price_postapoc": 30000, + "price": "70 kUSD", + "price_postapoc": "300 USD", "to_hit": 1, "material": [ "qt_steel", "ceramic", "kevlar_rigid" ], "symbol": "[", @@ -2935,8 +2935,8 @@ "description": "Sleek and lightweight Kevlar cat harness with a protective hood and chestplate. Includes a very small, inconvenient velcro pocket on the back.", "weight": "300 g", "volume": "1 L", - "price": 30000, - "price_postapoc": 1000, + "price": "300 USD", + "price_postapoc": "10 USD", "material": [ "kevlar_layered" ], "material_thickness": 2, "environmental_protection": 10, @@ -2964,8 +2964,8 @@ "description": "Test matches - when you must burn things, for science!", "weight": "10 g", "volume": "10 ml", - "price": 10, - "price_postapoc": 50, + "price": "10 cent", + "price_postapoc": "50 cent", "material": [ "cardboard" ], "symbol": ",", "color": "blue", @@ -2991,8 +2991,8 @@ "symbol": "%", "healthy": -8, "calories": 50, - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "fun": -20 }, { @@ -3004,8 +3004,8 @@ "description": "A suit of black bulletproof armor with lots of pockets. The word SWAT is emblazoned across the back.", "weight": "7800 g", "volume": "13 L", - "price": 285000, - "price_postapoc": 2000, + "price": "2 kUSD 850 USD", + "price_postapoc": "20 USD", "to_hit": -3, "material": [ "kevlar_layered", "cotton" ], "symbol": "[", @@ -3199,8 +3199,8 @@ "description": "A hefty pair of fur-lined pants.", "weight": "920 g", "volume": "4 L", - "price": 20000, - "price_postapoc": 100, + "price": "200 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "cotton", "fur" ], "symbol": "[", @@ -3315,8 +3315,8 @@ "quench": 8, "calories": 69, "description": "Sweet citrus fruit. Also comes in juice form.", - "price": 180, - "price_postapoc": 100, + "price": "1 USD 80 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "375 ml", "fun": 3, @@ -3332,8 +3332,8 @@ "description": "Essential dietary nutrients conveniently packaged in pill form. An option of last resort when a balanced diet is not possible. Excess use can cause hypervitaminosis.", "weight": "1 g", "volume": "100 ml", - "price": 500, - "price_postapoc": 2000, + "price": "5 USD", + "price_postapoc": "20 USD", "stackable": true, "charges": 20, "stack_size": 20, @@ -3508,8 +3508,8 @@ "symbol": "O", "calories": 250, "description": "Delicious vitamin food.", - "price": 1600, - "price_postapoc": 200, + "price": "16 USD", + "price_postapoc": "2 USD", "material": [ "flesh" ], "volume": "250 ml", "vitamins": [ [ "test_vitx", 200 ] ], @@ -3523,8 +3523,8 @@ "name": { "str": "baseball" }, "category": "veh_parts", "description": "A baseball, good for throwing at enemies. Getting hit with one of these hurts a lot more than you might think.", - "price": 1000, - "price_postapoc": 0, + "price": "10 USD", + "price_postapoc": "0 cent", "material": [ "leather" ], "flags": [ "NPC_THROWN" ], "weight": "150 g", @@ -3538,8 +3538,8 @@ "name": { "str": "baseball" }, "category": "veh_parts", "description": "A baseball, good for throwing at enemies. Getting hit with one of these hurts a lot more than you might think.", - "price": 1000, - "price_postapoc": 0, + "price": "10 USD", + "price_postapoc": "0 cent", "material": [ "leather", "lc_steel" ], "repairs_with": [ "lc_steel" ], "flags": [ "NPC_THROWN" ], @@ -3554,8 +3554,8 @@ "name": { "str": "baseball" }, "category": "veh_parts", "description": "A baseball, good for throwing at enemies. Getting hit with one of these hurts a lot more than you might think.", - "price": 1000, - "price_postapoc": 0, + "price": "10 USD", + "price_postapoc": "0 cent", "material": [ "leather" ], "flags": [ "NPC_THROWN" ], "weight": "150 g", @@ -3570,8 +3570,8 @@ "name": { "str": "baseball" }, "category": "veh_parts", "description": "A baseball, good for throwing at enemies. Getting hit with one of these hurts a lot more than you might think.", - "price": 1000, - "price_postapoc": 0, + "price": "10 USD", + "price_postapoc": "0 cent", "material": [ "leather" ], "flags": [ "NPC_THROWN" ], "weight": "150 g", @@ -3585,8 +3585,8 @@ "description": "A handgun for testing, based on the Glock 9mm.", "weight": "600 g", "volume": "500 ml", - "price": 69000, - "price_postapoc": 2500, + "price": "690 USD", + "price_postapoc": "25 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "symbol": "(", @@ -3783,8 +3783,8 @@ "weight": "558 g", "volume": "500 ml", "longest_side": "30 cm", - "price": 10000, - "price_postapoc": 1250, + "price": "100 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "material": [ "steel", "plastic" ], "symbol": ";", @@ -3812,8 +3812,8 @@ "description": "Leg and body armor made from the exoskeletons of insects.", "weight": "2632 g", "volume": "17500 ml", - "price": 120000, - "price_postapoc": 3000, + "price": "1 kUSD 200 USD", + "price_postapoc": "30 USD", "to_hit": -5, "material": [ "chitin" ], "symbol": "[", @@ -3884,7 +3884,7 @@ "relative": { "weight": 200, "volume": 1000, - "price": 100, + "price": "1 USD", "material_thickness": 2, "environmental_protection": 2, "environmental_protection_with_filter": 2 @@ -3899,7 +3899,7 @@ "relative": { "weight": 200, "volume": 1000, - "price": 100, + "price": "1 USD", "material_thickness": 2, "environmental_protection": 2, "environmental_protection_with_filter": 2 @@ -3914,8 +3914,8 @@ "description": "A dark pair of goggles. They make seeing very difficult, but protect you from bright flashes.", "weight": "153 g", "volume": "250 ml", - "price": 1400, - "price_postapoc": 500, + "price": "14 USD", + "price_postapoc": "5 USD", "to_hit": -3, "material": [ "plastic" ], "symbol": "[", @@ -3935,8 +3935,8 @@ "description": "A long-sleeved cotton shirt.", "weight": "146 g", "volume": "750 ml", - "price": 2000, - "price_postapoc": 50, + "price": "20 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "dress_shirt", @@ -3953,8 +3953,8 @@ "description": "A jacket made from denim.", "weight": "800 g", "volume": "3250 ml", - "price": 4000, - "price_postapoc": 250, + "price": "40 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "jacket_windbreaker", @@ -3990,8 +3990,8 @@ "description": "A light blue button down shirt with a couple of pockets in front and the US postal service logo embroidered on it.", "weight": "110 g", "volume": "500 ml", - "price": 1500, - "price_postapoc": 50, + "price": "15 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "polo_shirt", @@ -4024,8 +4024,8 @@ "description": "A pair of big, red, 8 oz. boxing gloves. These are made from thick leather.", "weight": "453 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -4044,8 +4044,8 @@ "description": "Lycra test jumpsuit", "weight": "610 g", "volume": "3500 ml", - "price": 8900, - "price_postapoc": 50, + "price": "89 USD", + "price_postapoc": "50 cent", "to_hit": -3, "material": [ "lycra" ], "symbol": "[", @@ -4067,8 +4067,8 @@ "description": "Fur test jumpsuit", "weight": "610 g", "volume": "3500 ml", - "price": 8900, - "price_postapoc": 50, + "price": "89 USD", + "price_postapoc": "50 cent", "to_hit": -3, "material": [ "fur" ], "symbol": "[", @@ -4090,8 +4090,8 @@ "description": "Cotton test jumpsuit", "weight": "610 g", "volume": "3500 ml", - "price": 8900, - "price_postapoc": 50, + "price": "89 USD", + "price_postapoc": "50 cent", "to_hit": -3, "material": [ "cotton" ], "symbol": "[", @@ -4114,8 +4114,8 @@ "description": "A pair of big, red, 8 oz. gauntlets. These are made from thick leather.", "weight": "453 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "to_hit": 1, "symbol": "[", "looks_like": "gloves_leather", @@ -4140,8 +4140,8 @@ "description": "What is this, a boot for birds?!", "weight": "453 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "to_hit": 1, "symbol": "[", "looks_like": "gloves_leather", @@ -4168,8 +4168,8 @@ "description": "A pair of big, red, 8 oz. gauntlets. These are made from thick leather.", "weight": "453 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -4196,8 +4196,8 @@ "description": "A pair of big, red, 8 oz. gauntlets. These are made from thick leather.", "weight": "453 g", "volume": "1 L", - "price": 4000, - "price_postapoc": 10, + "price": "40 USD", + "price_postapoc": "10 cent", "to_hit": 1, "material": [ "leather" ], "symbol": "[", @@ -4219,8 +4219,8 @@ "//": "at least 3x thicker than a normal poncho", "weight": "960 g", "volume": "2500 ml", - "price": 4000, - "price_postapoc": 750, + "price": "40 USD", + "price_postapoc": "7 USD 50 cent", "symbol": "[", "material": [ "nylon", "kevlar" ], "color": "light_gray", @@ -4319,8 +4319,8 @@ "weight": "1250 g", "volume": "1500 ml", "looks_like": "vest", - "price": 7400, - "price_postapoc": 3000, + "price": "74 USD", + "price_postapoc": "30 USD", "material": [ "nylon" ], "symbol": "[", "color": "dark_gray", @@ -4346,8 +4346,8 @@ "description": "Ballistic armor with specialized pockets on the front, back and sides for armored plates. The soft armor plate carrier is still protective but it won't stop high energy projectiles.", "weight": "2911 g", "volume": "6 L", - "price": 160000, - "price_postapoc": 1000, + "price": "1 kUSD 600 USD", + "price_postapoc": "10 USD", "symbol": "[", "material": [ "nylon", "kevlar" ], "color": "light_gray", @@ -4419,8 +4419,8 @@ "name": { "str": "phase immersion suit" }, "looks_like": "rm13_armor", "description": "Covered in interlocking plates of reflective metal, this advanced suit resembles both plate armor and an astronaut's spacesuit. Designed to protect its wearer during extradimensional excursions, it offers unparalleled environmental protection, both in this Earth and beyond. Use it to turn it on.", - "price": 150000, - "price_postapoc": 15000, + "price": "1 kUSD 500 USD", + "price_postapoc": "150 USD", "material": [ "carbide", "qt_steel", "lvl4ballisticglass", "superalloy" ], "weight": "9500 g", "volume": "4500 ml", @@ -4539,8 +4539,8 @@ "description": "Ballistic armor with specialized pockets on the front, back and sides for armored plates. The soft armor plate carrier is still protective but it won't stop high energy projectiles.", "weight": "2911 g", "volume": "6 L", - "price": 160000, - "price_postapoc": 1000, + "price": "1 kUSD 600 USD", + "price_postapoc": "10 USD", "symbol": "[", "material": [ "nylon", "kevlar" ], "color": "light_gray", @@ -4609,8 +4609,8 @@ "description": "A polygonal ceramic ballistic plate with a slightly concave profile. Its inner surface is coated with Ultra High Molecular Weight Polyethylene, and is labeled \"TOP\", while its outer surface is labeled \"STRIKE FACE\". This is intended to be worn in a ballistic vest and can withstand several high energy rifle rounds before breaking.", "weight": "2500 g", "volume": "1533 ml", - "price": 60000, - "price_postapoc": 100, + "price": "600 USD", + "price_postapoc": "1 USD", "material": [ "ceramic" ], "symbol": ",", "color": "dark_gray", @@ -4628,8 +4628,8 @@ "description": "A polygonal ceramic ballistic plate with a slightly concave profile. Its inner surface is coated with Ultra High Molecular Weight Polyethylene, and is labeled \"TOP\", while its outer surface is labeled \"STRIKE FACE\". This is intended to be worn in a ballistic vest and can withstand several high energy rifle rounds before breaking.", "weight": "2500 g", "volume": "1533 ml", - "price": 60000, - "price_postapoc": 100, + "price": "600 USD", + "price_postapoc": "1 USD", "material": [ "ceramic" ], "symbol": ",", "color": "dark_gray", @@ -4646,8 +4646,8 @@ "description": "A polygonal ceramic ballistic plate with a slightly concave profile. Its inner surface is coated with Ultra High Molecular Weight Polyethylene, and is labeled \"TOP\", while its outer surface is labeled \"STRIKE FACE\". This is intended to be worn in a ballistic vest and can withstand several high energy rifle rounds before breaking.", "weight": "2500 g", "volume": "1533 ml", - "price": 60000, - "price_postapoc": 100, + "price": "600 USD", + "price_postapoc": "1 USD", "material": [ "ceramic" ], "symbol": ",", "color": "dark_gray", @@ -4664,8 +4664,8 @@ "description": "An armguard, 1.75mm at the thickest. This one has been made with mild steel.", "weight": "3333 g", "volume": "2916 ml", - "price": 60000, - "price_postapoc": 12000, + "price": "600 USD", + "price_postapoc": "120 USD", "to_hit": -5, "symbol": "[", "looks_like": "armor_larmor", @@ -4698,8 +4698,8 @@ "description": "This item should have only 1 armor entry in game since these three are identical.", "weight": "1000 g", "volume": "1500 ml", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "robe", @@ -4829,8 +4829,8 @@ "description": "This UPS is better", "weight": "680 g", "volume": "2500 ml", - "price": 280000, - "price_postapoc": 1500, + "price": "2 kUSD 800 USD", + "price_postapoc": "15 USD", "to_hit": -1, "material": [ "aluminum", "plastic" ], "symbol": ";", @@ -4978,8 +4978,8 @@ "color": "light_gray", "name": { "str": "TEST rock cheese" }, "description": "A rock that runs into cheese via timer.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "stone" ], "weight": "100 g", "volume": "250 ml", @@ -4996,7 +4996,7 @@ "color": "light_gray", "name": { "str": "TEST rock cheese" }, "description": "A perfectly divided 100kcal portion of pure food.", - "price": 0, + "price": "0 cent", "spoils_in": "360 days", "calories": 100, "material": [ "stone" ], @@ -5014,7 +5014,7 @@ "color": "light_gray", "name": { "str": "TEST 200kcal recipe inherited" }, "description": "Two 100kcal portions of pure food smashed together by a rude survivor. Not a sandwich.", - "price": 0, + "price": "0 cent", "spoils_in": "360 days", "//": "The purpose of this item is to make sure it gives 200kcal when crafted from 100+100, and not the set calories", "calories": 185, @@ -5033,7 +5033,7 @@ "color": "light_gray", "name": { "str": "TEST 500kcal" }, "description": "This one's 500kcal, and some vitamins.", - "price": 0, + "price": "0 cent", "spoils_in": 0, "calories": 500, "material": [ "stone" ], diff --git a/data/mods/TEST_DATA/metal.json b/data/mods/TEST_DATA/metal.json index c5b43e29f3f46..8ebe194fc6847 100644 --- a/data/mods/TEST_DATA/metal.json +++ b/data/mods/TEST_DATA/metal.json @@ -8,8 +8,8 @@ "weight": "1 g", "//": "Density 21.45g/cm³ ~ 5.4kg/250ml @ stack 1000 = 5g/unit", "volume": "10ml", - "price": 100000, - "price_postapoc": 100, + "price": "1 kUSD", + "price_postapoc": "1 USD", "count": 100, "stack_size": 40, "material": [ "platinum" ], diff --git a/data/mods/TEST_DATA/pocket_mods_test.json b/data/mods/TEST_DATA/pocket_mods_test.json index 3c7f46996b7f7..6c4257a15d9f8 100644 --- a/data/mods/TEST_DATA/pocket_mods_test.json +++ b/data/mods/TEST_DATA/pocket_mods_test.json @@ -34,8 +34,8 @@ "weight": "902 g", "volume": "1550 ml", "longest_side": "520 mm", - "price": 125000, - "price_postapoc": 4000, + "price": "1 kUSD 250 USD", + "price_postapoc": "40 USD", "to_hit": -1, "material": [ "aluminum", "steel", "plastic" ], "symbol": "(", @@ -93,8 +93,8 @@ "integral_weight": "2268 g", "integral_longest_side": "41 cm", "barrel_length": "406 mm", - "price": 25999, - "price_postapoc": 1000, + "price": "259 USD 99 cent", + "price_postapoc": "10 USD", "material": [ "steel", "aluminum", "plastic" ], "symbol": ":", "color": "green", diff --git a/data/mods/TEST_DATA/weapons.json b/data/mods/TEST_DATA/weapons.json index 0510d3b271db3..8437a1a0b15cd 100644 --- a/data/mods/TEST_DATA/weapons.json +++ b/data/mods/TEST_DATA/weapons.json @@ -32,7 +32,7 @@ "color": "yellow", "name": { "str": "reach bow" }, "description": "A test item that is both a ranged weapon and a reach weapon", - "price": 16000, + "price": "160 USD", "material": [ "steel" ], "flags": [ "REACH_ATTACK", "WATERPROOF_GUN", "NEVER_JAMS", "NO_TURRET" ], "ammo_effects": [ "NEVER_MISFIRES" ], diff --git a/data/mods/Tamable_Wildlife/items/comestibles/other.json b/data/mods/Tamable_Wildlife/items/comestibles/other.json index 7ebc25987403c..1dd7aa81d6dae 100644 --- a/data/mods/Tamable_Wildlife/items/comestibles/other.json +++ b/data/mods/Tamable_Wildlife/items/comestibles/other.json @@ -8,8 +8,8 @@ "description": "A bunch of sweet stuff with a wet, goopy consistency. Normal bugs would die for this, just hope the mutants will like it as well.", "weight": "60 g", "volume": "250 ml", - "price": 20, - "price_postapoc": 25, + "price": "20 cent", + "price_postapoc": "25 cent", "to_hit": -5, "material": [ "junk" ], "symbol": ";", diff --git a/data/mods/TropiCataclysm/items/comestibles/carnivore.json b/data/mods/TropiCataclysm/items/comestibles/carnivore.json index 3a9748d6d9adb..96cc02f7d58da 100644 --- a/data/mods/TropiCataclysm/items/comestibles/carnivore.json +++ b/data/mods/TropiCataclysm/items/comestibles/carnivore.json @@ -8,8 +8,8 @@ "//": "Nutrition information roughly based on edible sea cucumbers, if you know more pls expand", "weight": "148 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "spoils_in": "12 hours", "flags": [ "RAW" ], "vitamins": [ [ "vitC", 0 ], [ "calcium", 4 ], [ "iron", 1 ] ], @@ -23,7 +23,7 @@ "description": "Freshly cooked echinoderm. Not so glamorous without the rest of ingredients.", "proportional": { "price": 1.5 }, "spoils_in": "1 day", - "price_postapoc": 150, + "price_postapoc": "1 USD 50 cent", "parasites": 0, "flags": [ "EATEN_HOT" ] }, @@ -36,8 +36,8 @@ "//": "Nutrition information taken from google for cultivated edible jellyfish. if you know more pls expand", "weight": "148 g", "volume": "250 ml", - "price": 500, - "price_postapoc": 50, + "price": "5 USD", + "price_postapoc": "50 cent", "spoils_in": "12 hours", "flags": [ "RAW" ], "vitamins": [ [ "vitC", 0 ], [ "calcium", 3 ], [ "iron", 3 ] ], @@ -51,7 +51,7 @@ "description": "Freshly cooked cnidarian. Looks translucent and tasteless, you may want to add something to flavor it.", "proportional": { "price": 1.5 }, "spoils_in": "1 day", - "price_postapoc": 150, + "price_postapoc": "1 USD 50 cent", "parasites": 0, "flags": [ "EATEN_HOT" ] } diff --git a/data/mods/TropiCataclysm/items/comestibles/egg.json b/data/mods/TropiCataclysm/items/comestibles/egg.json index d682e306aafb4..6aa809e983898 100644 --- a/data/mods/TropiCataclysm/items/comestibles/egg.json +++ b/data/mods/TropiCataclysm/items/comestibles/egg.json @@ -190,8 +190,8 @@ "healthy": -1, "calories": 35, "description": "A strange green pod produced by a triffid. Based on observation it may be the closest thing to triffid seeds (or eggs?).", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "SMOKABLE", "RAW" ], @@ -212,8 +212,8 @@ "healthy": -1, "calories": 35, "description": "A strange gray pod that was dropped by one of the giant fungus. It may be the closest thing to a fungal egg.", - "price": 0, - "price_postapoc": 10, + "price": "0 cent", + "price_postapoc": "10 cent", "material": [ "veggy" ], "volume": "250 ml", "flags": [ "SMOKABLE", "RAW" ], diff --git a/data/mods/TropiCataclysm/items/comestibles/raw_veggy.json b/data/mods/TropiCataclysm/items/comestibles/raw_veggy.json index 1dfcdfade5280..606451eff0c4c 100644 --- a/data/mods/TropiCataclysm/items/comestibles/raw_veggy.json +++ b/data/mods/TropiCataclysm/items/comestibles/raw_veggy.json @@ -11,8 +11,8 @@ "healthy": 1, "calories": 34, "description": "A chunk of underground fungus. It's slightly toxic but seems nutritious enough.", - "price": 600, - "price_postapoc": 50, + "price": "6 USD", + "price_postapoc": "50 cent", "material": [ "veggy" ], "flags": [ "TRADER_AVOID", "RAW" ], "volume": "250 ml", diff --git a/data/mods/Xedra_Evolved/items/alchemy.json b/data/mods/Xedra_Evolved/items/alchemy.json index 7a53ed7a8a518..2180a51700682 100644 --- a/data/mods/Xedra_Evolved/items/alchemy.json +++ b/data/mods/Xedra_Evolved/items/alchemy.json @@ -17,8 +17,8 @@ "addiction_potential": 6, "calories": 157, "description": "An incredibly alcoholic and caffeinated drink. This probably isn't healthy.", - "price": 170, - "price_postapoc": 50, + "price": "1 USD 70 cent", + "price_postapoc": "50 cent", "material": [ "alcohol" ], "primary_material": "water", "volume": "250 ml", @@ -35,8 +35,8 @@ "description": "Sixdust, for when you must scorch the earth. A sprayable anti-fungal/anti-insecticidal ammo for the chemical thrower. Best used with some kind of mask or mouth protection.", "weight": "3 g", "volume": "250 ml", - "price": 600, - "price_postapoc": 500, + "price": "6 USD", + "price_postapoc": "5 USD", "material": [ "water" ], "symbol": "=", "color": "yellow_red", @@ -130,7 +130,7 @@ "comestible_type": "MED", "flags": [ "EATEN_COLD", "NO_AUTO_CONSUME", "NUTRIENT_OVERRIDE" ], "material": [ "powder" ], - "price": 2500 + "price": "25 USD" }, { "id": "charm_of_marzanna", @@ -228,8 +228,8 @@ "weight": "550 g", "volume": "3000 ml", "longest_side": "46 cm", - "price": 5500, - "price_postapoc": 250, + "price": "55 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "wood" ], "symbol": "(", @@ -291,7 +291,7 @@ "calories": 25, "use_action": { "type": "cast_spell", "spell_id": "wicked_quick_hands", "no_fail": true, "level": 0 }, "color": "green", - "price": 3000 + "price": "30 USD" }, { "id": "potion_strength", diff --git a/data/mods/Xedra_Evolved/items/ammo.json b/data/mods/Xedra_Evolved/items/ammo.json index 91b25a74f32d5..7765c24eb96d5 100644 --- a/data/mods/Xedra_Evolved/items/ammo.json +++ b/data/mods/Xedra_Evolved/items/ammo.json @@ -30,8 +30,8 @@ "description": "A pin-shaped piece of moon tears and dreamdross. It can be used to repair items made of moon tears.", "weight": "4 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 250, + "price": "10 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "moon_tears" ], "symbol": "=", "color": "cyan", @@ -48,8 +48,8 @@ "type": "AMMO", "id": "moon_tear_chain_link", "category": "spare_parts", - "price": 150, - "price_postapoc": 50, + "price": "1 USD 50 cent", + "price_postapoc": "50 cent", "name": { "str": "moon tear chain link" }, "symbol": "=", "color": "light_gray", @@ -67,8 +67,8 @@ "description": "The 9×21mm Gyurza (Гюрза, Russian for 'blunt-nosed viper') round is a Russian handgun round designed to defeat body armor that was developed by TsNIITochMash for its SR-1 Vektor semi-automatic pistol and SR-2 Veresk submachine gun. The 7N29 AP loading fires a 6.7 g (103 gr) bullet at 410 m/s (1,300 ft/s) with 560 J (410 ft⋅lb) of muzzle energy, and will reportedly penetrate two 1.2 mm titanium plates, plus 30 layers of Kevlar, at 50 m (160 ft). The disadvantage of the rounds is that high impact velocities are needed for them to work effectively, so the bullets are relatively light to maximize their muzzle velocity. This means they will lose velocity relatively quickly, limiting their effective range.", "weight": "6700 mg", "volume": "115 ml", - "price": 250, - "price_postapoc": 1000, + "price": "2 USD 50 cent", + "price_postapoc": "10 USD", "flags": [ "IRREPLACEABLE_CONSUMABLE" ], "material": [ "brass", "powder" ], "symbol": "=", diff --git a/data/mods/Xedra_Evolved/items/armor/armor.json b/data/mods/Xedra_Evolved/items/armor/armor.json index adfe9dd873410..78ad3e8bfc642 100644 --- a/data/mods/Xedra_Evolved/items/armor/armor.json +++ b/data/mods/Xedra_Evolved/items/armor/armor.json @@ -5,8 +5,8 @@ "name": { "str": "pair of glimmer fur boots", "str_pl": "pairs of glimmer fur boots" }, "description": "Boots lined with glimmer fur for warmth.", "copy-from": "boots_fur", - "price": 19000, - "price_postapoc": 1750, + "price": "190 USD", + "price_postapoc": "17 USD 50 cent", "material": [ "leather", "fae_fur" ], "color": "brown_red", "armor": [ @@ -64,8 +64,8 @@ "description": "A hefty pair of fae fur-lined pants.", "weight": "920 g", "volume": "4 L", - "price": 20000, - "price_postapoc": 100, + "price": "200 USD", + "price_postapoc": "1 USD", "to_hit": 1, "material": [ "cotton", "fae_fur" ], "symbol": "[", @@ -130,8 +130,8 @@ "name": { "str": "glimmer fur cloak" }, "description": "A heavy glimmer fur cloak meant to be thrown over your body. The shimmering nature of the fur made these garments coveted before the Cataclysm.", "copy-from": "cloak_fur", - "price": 34500, - "price_postapoc": 2750, + "price": "345 USD", + "price_postapoc": "27 USD 50 cent", "material": [ "fae_fur" ], "color": "brown_red", "flags": [ "OVERSIZE", "HOOD", "BELTED", "RAINPROOF", "FANCY" ], @@ -143,8 +143,8 @@ "name": { "str": "glimmer fur coat" }, "description": "A glimmer fur coat with a couple small pockets. Extremely warm and very rare before the Cataclysm.", "copy-from": "coat_fur", - "price": 65000, - "price_postapoc": 900, + "price": "650 USD", + "price_postapoc": "9 USD", "material": [ "fae_fur", "cotton" ], "color": "brown_red", "armor": [ @@ -197,8 +197,8 @@ "description": "A thick glimmer fur trenchcoat, lined with pockets. Great for storage.", "weight": "1750 g", "volume": "7250 ml", - "price": 97900, - "price_postapoc": 750, + "price": "979 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -1, "material": [ "fae_fur" ], "symbol": "[", @@ -242,8 +242,8 @@ "description": "A thick glimmer fur trenchcoat without sleeves, leaving your arms unencumbered. Has plenty of storage space due to its many pockets.", "weight": "1487 g", "volume": "6750 ml", - "price": 83215, - "price_postapoc": 500, + "price": "832 USD 15 cent", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "fae_fur" ], "symbol": "[", @@ -290,8 +290,8 @@ "name": { "str": "glimmer fur duster" }, "description": "A thick glimmer fur full-length duster. Has many pockets for storage. Shimmers in direct sunlight and would have been fancy clothing prior to the Cataclysm.", "copy-from": "duster_fur", - "price": 197900, - "price_postapoc": 2500, + "price": "1 kUSD 979 USD", + "price_postapoc": "25 USD", "material": [ "fae_fur" ], "color": "brown_red", "armor": [ @@ -362,8 +362,8 @@ "description": "A thick glimmer fur full-length duster without sleeves, leaving your arms unencumbered. Has plenty of storage space due to its many pockets.", "weight": "2007 g", "volume": "8250 ml", - "price": 83215, - "price_postapoc": 500, + "price": "832 USD 15 cent", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "fae_fur" ], "symbol": "[", @@ -856,8 +856,8 @@ "name": { "str": "dreamforged full helmet" }, "description": "Manually forged helmet, that resemble the shape of modern army helmets. This one protect both face and eyes, using a special forged mask, but has no visor, and not so comfortable. The dreamdross grant it some small magical properties, but you can't control their effects.", "weight": "750 g", - "price": 25000, - "price_postapoc": 0, + "price": "250 USD", + "price_postapoc": "0 cent", "material": [ "forged_dreamstuff" ], "looks_like": "tac_fullhelmet", "color": "dark_gray", @@ -898,7 +898,7 @@ "description": "Lightweight armor, forged using dreamdross. The only reason it feels soft enough is the magic. It also has few MOLLE-compatible strips that you can utilize. The dreamdross grant it some minor magical properties, but you can't control their effects.", "weight": "3896 g", "volume": "17500 ml", - "price_postapoc": 0, + "price_postapoc": "0 cent", "material": [ "forged_dreamstuff" ], "symbol": "[", "looks_like": "armor_lc_lightplate", @@ -937,7 +937,7 @@ "description": "Pair of arm protectors, forged entirely from dreamdross. Instead of straps this one uses a pretty smart locking mechanism, which allows you to adjust it to your hands. The dreamdross grants it some minor magical properties, but you can't control their effects.", "weight": "706 g", "volume": "5500 ml", - "price_postapoc": 0, + "price_postapoc": "0 cent", "material": [ "forged_dreamstuff" ], "symbol": "[", "looks_like": "armguard_lightplate", @@ -965,7 +965,7 @@ "description": "Light set of boots, forged from dreamdross. Surprisingly comfortable for clothing that has no physical padding. The dreamdross grants it some minor magical properties, but you can't control their effects.", "weight": "490 g", "volume": "3250 ml", - "price_postapoc": 0, + "price_postapoc": "0 cent", "symbol": "[", "looks_like": "boots_steel", "color": "light_gray", @@ -1093,8 +1093,8 @@ "description": "A helmet made from the of living plant matter, with bark covering the outer surface. This is definitely not anything that could have existed before the Cataclysm.", "weight": "1447 g", "volume": "2500 ml", - "price": 38000, - "price_postapoc": 1250, + "price": "380 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -2, "material": [ "mut_wood", "veggy" ], "symbol": "[", @@ -1154,8 +1154,8 @@ "description": "A cuirass made of living plant matter, with bark covering the outer surface. This is definitely not anything that could have existed before the Cataclysm.", "weight": "2632 g", "volume": "17500 ml", - "price": 120000, - "price_postapoc": 3000, + "price": "1 kUSD 200 USD", + "price_postapoc": "30 USD", "to_hit": -5, "material": [ "mut_wood", "veggy" ], "symbol": "[", @@ -1211,8 +1211,8 @@ "description": "A pair of fingerless gauntlets made from living plant matter, with bark covering the outer surface. This is definitely not anything that could have existed before the Cataclysm.", "weight": "760 g", "volume": "1750 ml", - "price": 38000, - "price_postapoc": 1250, + "price": "380 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -2, "material": [ "mut_wood", "veggy" ], "symbol": "[", @@ -1278,8 +1278,8 @@ "description": "Boots made from living plant matter, with bark covering the outer surface. This is definitely not anything that could have existed before the Cataclysm.", "weight": "950 g", "volume": "4250 ml", - "price": 13500, - "price_postapoc": 1250, + "price": "135 USD", + "price_postapoc": "12 USD 50 cent", "to_hit": -1, "material": [ "mut_wood", "veggy" ], "symbol": "[", diff --git a/data/mods/Xedra_Evolved/items/armor/changeling.json b/data/mods/Xedra_Evolved/items/armor/changeling.json index edc02828f11fe..eb9ae05bf9583 100644 --- a/data/mods/Xedra_Evolved/items/armor/changeling.json +++ b/data/mods/Xedra_Evolved/items/armor/changeling.json @@ -6,8 +6,8 @@ "description": "A back mounted flag identifying the loyalties of troops. The heraldry on this banner is of a dark and gloomy forest with red eyes staring out from between the trees.", "weight": "633 g", "volume": "2 L", - "price": 3900, - "price_postapoc": 500, + "price": "39 USD", + "price_postapoc": "5 USD", "material": [ "fae_cotton" ], "symbol": "[", "looks_like": "state_flag", @@ -25,8 +25,8 @@ "description": "A back mounted flag identifying the loyalties of troops. The heraldry on this banner is of a brilliantly colored butterfly in flight, ridden by a knight in armor. The knight is striking down a foe with a scythe while the butterfly appears to have bitten the head off a different opponent.", "weight": "633 g", "volume": "2 L", - "price": 3900, - "price_postapoc": 500, + "price": "39 USD", + "price_postapoc": "5 USD", "material": [ "fae_cotton" ], "symbol": "[", "looks_like": "state_flag", @@ -44,8 +44,8 @@ "description": "A back mounted flag identifying the loyalties of troops. The heraldry on this banner is of, well you aren't quite sure. It's a dark cloud, or blackness. You feel hate radiating from this banner.", "weight": "633 g", "volume": "2 L", - "price": 3900, - "price_postapoc": 500, + "price": "39 USD", + "price_postapoc": "5 USD", "material": [ "fae_cotton" ], "symbol": "[", "looks_like": "state_flag", @@ -63,8 +63,8 @@ "description": "A back mounted flag identifying the loyalties of troops. The heraldry on this banner is of the night sky shining with ancient wisdom, full of stars.", "weight": "633 g", "volume": "2 L", - "price": 3900, - "price_postapoc": 500, + "price": "39 USD", + "price_postapoc": "5 USD", "material": [ "fae_cotton" ], "symbol": "[", "looks_like": "state_flag", @@ -88,8 +88,8 @@ "description": "A back mounted flag identifying the loyalties of troops. The heraldry on this banner is of lightning striking a tower that is falling.", "weight": "633 g", "volume": "2 L", - "price": 3900, - "price_postapoc": 500, + "price": "39 USD", + "price_postapoc": "5 USD", "material": [ "fae_cotton" ], "symbol": "[", "looks_like": "state_flag", diff --git a/data/mods/Xedra_Evolved/items/armor/headgear.json b/data/mods/Xedra_Evolved/items/armor/headgear.json index f36876b021bf0..abd74b4c20b4f 100644 --- a/data/mods/Xedra_Evolved/items/armor/headgear.json +++ b/data/mods/Xedra_Evolved/items/armor/headgear.json @@ -6,8 +6,8 @@ "description": "A soft conical hat with the apex bent over. Commonly worn in antiquity by various cultures in Eastern Europe and Anatolia. It later signified freedom in both the American and French Revolutions.", "weight": "120 g", "volume": "250 ml", - "price": 1200, - "price_postapoc": 50, + "price": "12 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "hat_cotton", @@ -24,8 +24,8 @@ "description": "A soft conical hat with the apex bent over. Commonly worn in antiquity by various cultures in Eastern Europe and Anatolia. It later signified freedom in both the American and French Revolutions. Along the brim the cap appears to be the rusty red of old blood.", "weight": "120 g", "volume": "250 ml", - "price": 1200, - "price_postapoc": 50, + "price": "12 USD", + "price_postapoc": "50 cent", "material": [ "fae_fur" ], "symbol": "[", "looks_like": "hat_cotton", diff --git a/data/mods/Xedra_Evolved/items/armor/integrated.json b/data/mods/Xedra_Evolved/items/armor/integrated.json index 599bc8d6e5d44..5a047c11f494e 100644 --- a/data/mods/Xedra_Evolved/items/armor/integrated.json +++ b/data/mods/Xedra_Evolved/items/armor/integrated.json @@ -5,8 +5,8 @@ "category": "armor", "weight": "500 g", "volume": "1200 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "symbol": ",", "color": "brown", "warmth": 0, @@ -34,8 +34,8 @@ "description": "Your skin has begun to harden and pebbles have begun to surface.", "weight": "400 g", "volume": "400 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "hflesh", "stone" ], "symbol": "x", "color": "light_red", @@ -83,8 +83,8 @@ "description": "Your skin has hardened into a granite like covering.", "weight": "400 g", "volume": "400 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "hflesh", "stone" ], "symbol": "x", "color": "light_red", @@ -133,8 +133,8 @@ "description": "Your eyes now reflect your mood in the colors of stone. You are also immune to the glare of the sun.", "weight": "180 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "fae_flesh" ], "symbol": "[", @@ -162,8 +162,8 @@ "description": "Your stone-like skin means your hands hit like hammers, and can be used like hammers as well.", "weight": "300 g", "volume": "500 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_wood" ], "symbol": ",", "color": "brown", @@ -192,8 +192,8 @@ "description": "A pliable but hefty layer of living plant matter impregnated with various waxy polymers.", "weight": "2 kg", "volume": "300 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_wood", "veggy" ], "symbol": "x", "color": "light_green", @@ -221,8 +221,8 @@ "description": "A thin layer of bark covers your body.", "weight": "4 kg", "volume": "400 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_wood" ], "symbol": "x", "color": "brown", @@ -248,8 +248,8 @@ "description": "Your eyes now reflect the seasons: green, yellow, red, orange, or brown. You are also immune to the glare of the sun.", "weight": "180 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "fae_flesh" ], "symbol": "[", @@ -277,8 +277,8 @@ "description": "Your skin is covered in thick, woody thorns.", "weight": "0 g", "volume": "0 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_wood" ], "symbol": ",", "color": "green", @@ -302,8 +302,8 @@ "description": "Your hands and fingers have transformed into jagged wooden claws.", "weight": "300 g", "volume": "500 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "mut_wood" ], "symbol": ",", "color": "brown", @@ -327,8 +327,8 @@ "description": "Your skin has magical flames flaring out of it on occasion. You can operate in warmer climates than normal humans but begin to take damage from getting wet.", "weight": "1 kg", "volume": "900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "fae_flesh" ], "symbol": "x", "color": "light_red", @@ -355,8 +355,8 @@ "description": "Your skin exudes magickal flames constantly, you can operate in almost any heat now without danger but rain may be a lethal threat.", "weight": "1 kg", "volume": "900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "fae_flesh" ], "symbol": "x", "color": "light_red", @@ -384,8 +384,8 @@ "description": "Your eyes now reflect your mood, the warm red of a campfire or the searing heat of an incendiary weapon. Glare no longer affects you.", "weight": "180 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "fae_flesh" ], "symbol": "[", @@ -413,8 +413,8 @@ "description": "Heat from your hands. You may cook with it at will.", "weight": "0 g", "volume": "0 L", - "price": 1, - "price_postapoc": 1, + "price": "1 cent", + "price_postapoc": "1 cent", "symbol": "$", "color": "red", "flags": [ "PERSONAL", "PADDED", "UNBREAKABLE", "INTEGRATED", "SEMITANGIBLE", "ZERO_WEIGHT", "NO_DROP" ], @@ -430,8 +430,8 @@ "description": "Your skin has become vaguely gelatinous. Provides some extra bash defense and immunity to wet effects.", "weight": "1 kg", "volume": "900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "elemental_water" ], "symbol": "x", "color": "light_red", @@ -454,8 +454,8 @@ "description": "Your skin is completely replaced by magickal water. You have become immune to acid effects.", "weight": "1 kg", "volume": "900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "elemental_water" ], "symbol": "x", "color": "light_red", @@ -479,8 +479,8 @@ "description": "Your eyes now reflect your mood in the colors of the deep waters. From an aquamarine blue when you are pleased to the pitch black of the depths when you are angry or sad. You are also immune to the glare of the sun and can see under water.", "weight": "180 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "fae_flesh" ], "symbol": "[", @@ -543,8 +543,8 @@ "description": "Your skin is clearly separate from the air around you but has become its own weather system. If someone reaches out and touches you, they will clearly feel you but you look like someone might reach right through you.", "weight": "1 kg", "volume": "900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "fae_flesh" ], "symbol": "x", "color": "light_red", @@ -568,8 +568,8 @@ "description": "Your skin is a roiling storm. Your flexibility is greatly increased, your ability to ignore temperatures hot and cold have greatly increased but your ability to carry objects has been reduced.", "weight": "1 kg", "volume": "900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "fae_flesh" ], "symbol": "x", "color": "light_red", @@ -594,8 +594,8 @@ "description": "Your eyes now reflect your mood in different weather patterns. Clear blue skies when you are pleased and storms when you are mad. You are also immune to the glare of the sun.", "weight": "180 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "fae_flesh" ], "symbol": "[", @@ -633,8 +633,8 @@ "description": "You can now exist as your own source of oxygen. Anywhere that you would be impacted by a lack of oxygen should no longer trouble you.", "weight": "180 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "fae_flesh" ], "symbol": "[", @@ -662,8 +662,8 @@ "description": "Your skin has smoothed and all your prior blemishes have faded away. This somewhat reduces wet effects and leads to a more durable yet harder to heal body.", "weight": "1 kg", "volume": "900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "glass" ], "symbol": "x", "color": "light_red", @@ -686,8 +686,8 @@ "description": "Your skin has become latex like. While it provides additional protection and attractiveness it also heals at a much slower rate.", "weight": "1 kg", "volume": "900 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "thermo_resin" ], "symbol": "x", "color": "light_gray", @@ -711,8 +711,8 @@ "description": "Your eyes now stare out at the world, impassive and blank like the eyes of a doll. You are also immune to the glare of the sun.", "weight": "180 g", "volume": "250 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "fae_flesh" ], "symbol": "[", @@ -779,8 +779,8 @@ "name": { "str_sp": "organic bloodbank" }, "description": "You can vaguely sense this organ… somewhere in your body.", "volume": "1 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "flesh" ], "symbol": "x", "color": "magenta", diff --git a/data/mods/Xedra_Evolved/items/artifact_grade_items.json b/data/mods/Xedra_Evolved/items/artifact_grade_items.json index 079ca0634141c..5c33bdd803807 100644 --- a/data/mods/Xedra_Evolved/items/artifact_grade_items.json +++ b/data/mods/Xedra_Evolved/items/artifact_grade_items.json @@ -9,8 +9,8 @@ "weight": "550 g", "volume": "3000 ml", "longest_side": "46 cm", - "price": 5500, - "price_postapoc": 250, + "price": "55 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": 1, "material": [ "monolith" ], "symbol": "(", diff --git a/data/mods/Xedra_Evolved/items/book_lore.json b/data/mods/Xedra_Evolved/items/book_lore.json index c94baeb425811..1023bee61953a 100644 --- a/data/mods/Xedra_Evolved/items/book_lore.json +++ b/data/mods/Xedra_Evolved/items/book_lore.json @@ -23,8 +23,8 @@ "name": { "str": "left behind note" }, "snippet_category": "spy_note", "description": "A scrap of paper. Something's written on it, scrawled in bad handwriting.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID" ], "weight": "3 g", @@ -38,8 +38,8 @@ "color": "white", "name": { "str": "grimy handwritten recipe" }, "description": "A scrap of paper. Something's written on it, scrawled in bad handwriting. You can barely make out the words 'Blood treatment' followed by a list of ingredients.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID" ], "weight": "3 g", @@ -57,7 +57,7 @@ "description": "I'm sorry that I won't be there to greet you when you awaken into sentience my offspring, but this world is dying and I must take the roads back home before they darken and grow cold. Even if I were here you would likely find my company to be short lived as the tradition of our people is to witness the waking and greet our offspring then leave them to explore the world on their own. However, I have summoned some lesser creatures of the underhill realms to guard this place and you for as long as they can. Most everything else in this world will attempt to kill you. I have included instructions for how to make a healing item as well as a developmental potion that you can take to bring yourself further into your destiny and will grant new abilities, somewhat randomly I'm afraid. I hope that you survive long enough to become what I hoped for you to be and that you are able to find one of the trodden paths from this place into the borderlands and from there deeper into Fae where you will hopefully find me. All of my hopes and dreams ride with you.", "weight": "3 g", "volume": "5 ml", - "price": 0, + "price": "0 cent", "material": [ "paper" ], "symbol": "/", "color": "light_gray" @@ -69,7 +69,7 @@ "description": "My dearest child, you are awaking into a cold dying world alone and without parents. Honestly, this is for the best, for I was brought to life amongst the mortals of this realm and the parenting I would be able to pass on to you is entirely tragic. I will spare you from that fate. However, I have summoned some lesser creatures of the underhill realms to guard this place and you for as long as they can. Most everything else in this world will attempt to kill you. I have included instructions for how to make a healing item as well as a developmental potion that you can take to bring yourself further into your destiny and will grant new abilities, somewhat randomly I'm afraid. I hope that you survive long enough to become what I hoped for you to be and that you are able to find one of the trodden paths from this place into the borderlands and from there deeper into Fae where you will hopefully find me. All of my hopes and dreams ride with you.", "weight": "3 g", "volume": "5 ml", - "price": 0, + "price": "0 cent", "material": [ "stone" ], "symbol": "/", "color": "light_gray" @@ -81,7 +81,7 @@ "description": "If you are reading this you have woken up to sentience as I planned. My timing however was not great in that I've been forced to leave before showing you the hunting ground that I've brought you into existence in. How I envy the experience you will have rampaging through the ashes of the old world. There is significant danger in this world and in time you will be one of the most dangerous beings in it. However, since that time is not yet I have summoned some lesser creatures of the underhill realms to guard this place and you for as long as they can. Most everything else in this world will attempt to kill you. I have included instructions for how to make a healing item as well as a developmental potion that you can take to bring yourself further into your destiny and will grant new abilities, somewhat randomly I'm afraid. I hope that you rise to the top of this crush of predators I've been forced to abandon you among. Good luck and good hunting.", "weight": "3 g", "volume": "5 ml", - "price": 0, + "price": "0 cent", "material": [ "stone" ], "symbol": "/", "color": "light_gray" @@ -93,7 +93,7 @@ "description": "Spawn of my intentions, I address you from across space and time on today the day of your hatching. As is the custom of our people you have been left in an uncivilized and barbaric place. You must make your way back to us to become one of us. For now you will take a name like those of the dead civilization we've deposited you in. While you must develop on your own and find your way back to us, I have summoned some lesser creatures of the underhill realms to guard this place and you for as long as they can. Most everything else in this world will attempt to kill you, be sure to kill it first. I have included instructions for how to make a healing item as well as a developmental potion that you can take to bring yourself further into your destiny and will grant new abilities, somewhat randomly I'm afraid. The depths will tremble one day in your wake and upon that day you will know how to find us. If you fail we shall never know your name, like all the other lost children.", "weight": "3 g", "volume": "5 ml", - "price": 0, + "price": "0 cent", "material": [ "stone" ], "symbol": "/", "color": "light_gray" @@ -105,7 +105,7 @@ "description": "My beloved child, the cataclysm struck at this world at a crucial time in your development and we were forced to leave you behind to be born alone or to mercy kill the life you were becoming. When that was the choice upon us it felt like no choice at all. If that was the kinder fate, I am sorry but my hopes to meet you one day were too strong. I am shamed that our clan will be unable to provide you shade and company but, I have summoned some lesser creatures of the underhill realms to guard this place and you for as long as they can. Most everything else in this world will attempt to kill you. I have included instructions for how to make a healing item as well as a developmental potion that you can take to bring yourself further into your destiny and will grant new abilities, somewhat randomly I'm afraid. I hope that you survive long enough to become what I hoped for you to be and that you are able to find one of the trodden paths from this place into the borderlands and from there deeper into Fae where you will hopefully find me. All of my hopes and dreams ride with you.", "weight": "3 g", "volume": "5 ml", - "price": 0, + "price": "0 cent", "material": [ "stone" ], "symbol": "/", "color": "light_gray" @@ -117,7 +117,7 @@ "description": "Brethren of soil and stone. How our tribe longed to see you stretch forth from the forming pit like so many others before you. It is shame that will take many generations of our people to wash away that we were unable to stay to bring you with us. However, I have summoned some lesser creatures of the underhill realms to guard this place and you for as long as they can. Most everything else in this world will attempt to kill you. I have included instructions for how to make a healing item as well as a developmental potion that you can take to bring yourself further into your destiny and will grant new abilities, somewhat randomly I'm afraid. I hope that you survive long enough to become what I hoped for you to be and that you are able to find one of the trodden paths from this place into the borderlands and from there deeper into Fae where you will hopefully find me. We await you joining our chorus in the deep caves of Fae, once you find your way here.", "weight": "3 g", "volume": "5 ml", - "price": 0, + "price": "0 cent", "material": [ "stone" ], "symbol": "/", "color": "light_gray" diff --git a/data/mods/Xedra_Evolved/items/books_deduction.json b/data/mods/Xedra_Evolved/items/books_deduction.json index 1d1f53f75d4f8..811f2ae7fc545 100644 --- a/data/mods/Xedra_Evolved/items/books_deduction.json +++ b/data/mods/Xedra_Evolved/items/books_deduction.json @@ -7,8 +7,8 @@ "description": "A magazine for occult investigators. These types of magazines proliferated in the decade prior to the Cataclysm.", "weight": "60 g", "volume": "250 ml", - "price": 480, - "price_postapoc": 250, + "price": "4 USD 80 cent", + "price_postapoc": "2 USD 50 cent", "material": [ "paper" ], "symbol": "?", "looks_like": "mag_glam", @@ -27,8 +27,8 @@ "description": "It's big and heavy, but full of great information about esoteric investigations.", "weight": "454 g", "volume": "1250 ml", - "price": 2500, - "price_postapoc": 1250, + "price": "25 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "looks_like": "manual_first_aid", "symbol": "?", @@ -47,8 +47,8 @@ "description": "A guide for teens interested in pursuing occult knowledge. Readers often speak of encountering a guide in their dreams of a Russian Sheepdog, who introduces himself as Scraggy-Boo.", "weight": "192 g", "volume": "250 ml", - "price": 4000, - "price_postapoc": 750, + "price": "40 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "paper", "leather" ], "symbol": "?", "color": "green", @@ -66,8 +66,8 @@ "description": "A hardbound book detailing numerous rituals and thought modifications in order to teach its readers how to break the shackles of mundanity.", "weight": "1360 g", "volume": "2 L", - "price": 8500, - "price_postapoc": 1250, + "price": "85 USD", + "price_postapoc": "12 USD 50 cent", "material": [ "paper", "cardboard" ], "symbol": "?", "color": "black_white", diff --git a/data/mods/Xedra_Evolved/items/carnivore.json b/data/mods/Xedra_Evolved/items/carnivore.json index 5f9dec3758c03..1ef91bc8884f6 100644 --- a/data/mods/Xedra_Evolved/items/carnivore.json +++ b/data/mods/Xedra_Evolved/items/carnivore.json @@ -28,8 +28,8 @@ "healthy": -5, "calories": 350, "description": "A carefully folded raw skin harvested from a fur-bearing animal from a specific region of the Nether. It still has the fur attached. You can cure it for storage and tanning, or eat it if you're desperate enough.", - "price": 330, - "price_postapoc": 100, + "price": "3 USD 30 cent", + "price_postapoc": "1 USD", "vitamins": [ [ "underhill_essence", 15 ] ], "material": [ "fae_fur", "fae_flesh" ], "fun": -24 @@ -42,9 +42,9 @@ "description": "Freshly butchered meat from a fae beast. You could eat it raw, but cooking it is better.", "weight": "296 g", "volume": "250 ml", - "price": 500, + "price": "5 USD", "symbol": "O", - "price_postapoc": 50, + "price_postapoc": "50 cent", "spoils_in": "1 day", "calories": 402, "healthy": -1, @@ -74,7 +74,7 @@ "container": "flask_glass", "symbol": "~", "description": "Blood, from a specific part of the Nether. Disgusting!", - "price": 75, + "price": "75 cent", "material": [ "fae_blood" ], "volume": "1 ml", "phase": "liquid", @@ -93,8 +93,8 @@ "type": "COMESTIBLE", "name": { "str_sp": "cooked meat" }, "description": "This is a chunk of freshly cooked fae meat. It's filling and nutritious, but unseasoned and a bit bland.", - "price": 750, - "price_postapoc": 100, + "price": "7 USD 50 cent", + "price_postapoc": "1 USD", "parasites": 0, "calories": 402, "flags": [ "EATEN_HOT", "NUTRIENT_OVERRIDE" ] @@ -124,7 +124,7 @@ "description": "Tasty meat that has been heavily smoked for preservation. It could be further smoked to dehydrate it completely.", "color": "brown", "spoils_in": "24 days", - "price_postapoc": 200, + "price_postapoc": "2 USD", "quench": -1, "fun": 5, "flags": [ "EATEN_HOT", "SMOKED", "SMOKABLE" ], diff --git a/data/mods/Xedra_Evolved/items/cbms.json b/data/mods/Xedra_Evolved/items/cbms.json index 2581798647390..efb6f16844df9 100644 --- a/data/mods/Xedra_Evolved/items/cbms.json +++ b/data/mods/Xedra_Evolved/items/cbms.json @@ -5,7 +5,7 @@ "type": "BIONIC_ITEM", "name": { "str": "Flesh roots seed" }, "description": "This seed might be more accurately compared to a bulb, because like a bulb you dug it out of the home it had made and chopped off its extremities and are now preparing to plant it in a new location; only, in this instance the hole was dug into the chest of a dead vampire minion and the new location is nestled against the still-beating heart of a patient.", - "price": 350000, + "price": "3 kUSD 500 USD", "difficulty": 8 }, { @@ -14,7 +14,7 @@ "type": "BIONIC_ITEM", "name": { "str": "Vampire Blood Fuel Cell Generator" }, "description": "What reason could anyone have making a bionic power generator that runs off the blood of vampires? After some thought, one option that occurs to you would be the possibility that by limiting the fuel options, a vampire is also limiting the opportunities for a rogue minion to use its bionics against its master.", - "price": 350000, + "price": "3 kUSD 500 USD", "difficulty": 2 }, { @@ -23,7 +23,7 @@ "type": "BIONIC_ITEM", "name": { "str": "Chiropteran Signal CBM" }, "description": "A jar-like container that includes a set of vocal cords with a large hood at the top of them and rootlike tendrils at the base connecting to a microchip.", - "price": 350000, + "price": "3 kUSD 500 USD", "difficulty": 8 }, { @@ -32,7 +32,7 @@ "type": "BIONIC_ITEM", "name": { "str": "Desmodontinae Gargantua Vocalizer" }, "description": "A jar-like container that includes a set of oversized and reinforced vocal cords with a large hood at the top of them and rootlike tendrils at the base connecting to a microchip.", - "price": 350000, + "price": "3 kUSD 500 USD", "difficulty": 2 }, { @@ -41,7 +41,7 @@ "type": "BIONIC_ITEM", "name": { "str": "Crypt Spore Vaporizer" }, "description": "A syringe that extends out into two tubes that snake up through the nostrils and down to the lungs in order to get the spores deep into their new home, where they can best spread through the body.", - "price": 350000, + "price": "3 kUSD 500 USD", "difficulty": 0 } ] diff --git a/data/mods/Xedra_Evolved/items/clothes.json b/data/mods/Xedra_Evolved/items/clothes.json index c71e354714f93..e29bff333c675 100644 --- a/data/mods/Xedra_Evolved/items/clothes.json +++ b/data/mods/Xedra_Evolved/items/clothes.json @@ -417,8 +417,8 @@ "description": "A heavy cloak made of living leaves with long twigs and branches connecting them, meant to be thrown over your body.", "weight": "1175 g", "volume": "3 L", - "price": 10700, - "price_postapoc": 500, + "price": "107 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "veggy" ], "symbol": "[", diff --git a/data/mods/Xedra_Evolved/items/cold_iron.json b/data/mods/Xedra_Evolved/items/cold_iron.json index 1dcaf0d9efecb..88574bb354283 100644 --- a/data/mods/Xedra_Evolved/items/cold_iron.json +++ b/data/mods/Xedra_Evolved/items/cold_iron.json @@ -7,8 +7,8 @@ "description": "A five-liter ingot of solid cold iron.", "weight": "39365 g", "volume": "5 L", - "price": 10000, - "price_postapoc": 200, + "price": "100 USD", + "price_postapoc": "2 USD", "material": [ "iron" ], "symbol": "=", "color": "dark_gray", @@ -26,8 +26,8 @@ "weight": "1360 g", "volume": "2 L", "longest_side": "90 cm", - "price": 100000, - "price_postapoc": 4500, + "price": "1 kUSD", + "price_postapoc": "45 USD", "material": [ "iron" ], "repairs_with": [ "iron" ], "flags": [ "SHEATH_SWORD", "CONDUCTIVE" ], @@ -43,7 +43,7 @@ "name": { "str": "war hammer" }, "description": "A medieval hammer with a spike on one end, made for battle. Its odd shape and balance make it an excellent weapon, but an ineffective tool.", "weight": "1337 g", - "price_postapoc": 6000, + "price_postapoc": "60 USD", "color": "dark_gray", "symbol": "/", "material": [ "iron", "wood" ], @@ -54,7 +54,7 @@ "volume": "1250 ml", "longest_side": "120 cm", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, - "price": 16000, + "price": "160 USD", "qualities": [ [ "HAMMER", 1 ] ], "melee_damage": { "xe_cold_iron_bash_damage": 22, "xe_cold_iron_stab_damage": 23 } }, @@ -66,8 +66,8 @@ "weight": "2002 g", "volume": "2500 ml", "longest_side": "100 cm", - "price": 40000, - "price_postapoc": 12000, + "price": "400 USD", + "price_postapoc": "120 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "uneven" }, "material": [ "iron", "wood" ], "symbol": "/", @@ -87,7 +87,7 @@ "weight": "420 g", "volume": "250 ml", "longest_side": "60 cm", - "price": 19590, + "price": "195 USD 90 cent", "to_hit": { "grip": "weapon", "length": "short", "surface": "point", "balance": "good" }, "material": [ "iron" ], "symbol": ";", diff --git a/data/mods/Xedra_Evolved/items/comestibles/goblin_fruits.json b/data/mods/Xedra_Evolved/items/comestibles/goblin_fruits.json index 87faab7a0ea61..fe6d1d4ebad59 100644 --- a/data/mods/Xedra_Evolved/items/comestibles/goblin_fruits.json +++ b/data/mods/Xedra_Evolved/items/comestibles/goblin_fruits.json @@ -12,8 +12,8 @@ "symbol": "%", "quench": 3, "calories": 75, - "price": 40, - "price_postapoc": 100, + "price": "40 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "fun": 1, "flags": [ "FREEZERBURN", "NO_AUTO_CONSUME" ], @@ -30,8 +30,8 @@ "spoils_in": "60 days", "comestible_type": "FOOD", "symbol": "%", - "price": 40, - "price_postapoc": 100, + "price": "40 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "flags": [ "INEDIBLE", "NO_AUTO_CONSUME", "SINGLE_USE" ], "use_action": { diff --git a/data/mods/Xedra_Evolved/items/comestibles/raw_fruit.json b/data/mods/Xedra_Evolved/items/comestibles/raw_fruit.json index df6065722002d..7acb8eef188b0 100644 --- a/data/mods/Xedra_Evolved/items/comestibles/raw_fruit.json +++ b/data/mods/Xedra_Evolved/items/comestibles/raw_fruit.json @@ -31,8 +31,8 @@ "quench": 2, "calories": 140, "description": "Dense clusters of edible red berries grow enormously during autumn, but try not to eat the seeds as they contain cyanide. Too tart to be very enjoyable they are often used in jams and jellies.", - "price": 110, - "price_postapoc": 100, + "price": "1 USD 10 cent", + "price_postapoc": "1 USD", "material": [ "fruit" ], "volume": "250 ml", "fun": 0, @@ -51,8 +51,8 @@ "symbol": ",", "calories": 30, "description": "Figs are a unique fruit resembling a teardrop. They're about the size of your thumb, filled with hundreds of tiny seeds, and have an edible purple or green peel. The flesh of the fruit is pink and has a mild, sweet taste. The scientific name for the fig is Ficus carica.", - "price": 120, - "price_postapoc": 300, + "price": "1 USD 20 cent", + "price_postapoc": "3 USD", "material": [ "fruit" ], "volume": "500 ml", "fun": 5, @@ -67,7 +67,7 @@ "color": "white", "symbol": "*", "description": "A clump of off white roots in the shape of a humanoid body. It feels strange to the touch, almost alive.", - "price_postapoc": 700, + "price_postapoc": "7 USD", "volume": "5 ml", "weight": "5 g", "material": "veggy" diff --git a/data/mods/Xedra_Evolved/items/containers.json b/data/mods/Xedra_Evolved/items/containers.json index abfccae5701fa..1f08d5f95149c 100644 --- a/data/mods/Xedra_Evolved/items/containers.json +++ b/data/mods/Xedra_Evolved/items/containers.json @@ -16,8 +16,8 @@ "description": "A large moon tear canteen. It radiates the cold of the grave and smells strongly of blood. Any blood stored inside is protected from spoilage by some kind of fae enchantment.", "weight": "155 g", "volume": "2625 ml", - "price": 1000, - "price_postapoc": 50, + "price": "10 USD", + "price_postapoc": "50 cent", "to_hit": -1, "melee_damage": { "bash": 1 }, "material": [ "moon_tears" ], @@ -57,8 +57,8 @@ "description": "A slim and lightweight insulated moon tear bladder worn on the back or within a hydration pouch in a backpack. Perfect for the renfield on the go. It has a large pocket and a capped mouth for filling with blood, with a hose that allows the wearer to drink hands-free. Any blood stored inside is protected from spoilage by some kind of fae enchantment.", "weight": "286 g", "volume": "3001 ml", - "price": 10000, - "price_postapoc": 250, + "price": "100 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "melee_damage": { "bash": 1 }, "material": [ "moon_tears" ], diff --git a/data/mods/Xedra_Evolved/items/corpses.json b/data/mods/Xedra_Evolved/items/corpses.json index e1929e4492f58..055a33571f302 100644 --- a/data/mods/Xedra_Evolved/items/corpses.json +++ b/data/mods/Xedra_Evolved/items/corpses.json @@ -46,7 +46,7 @@ "name": { "str": "broken Exodii quadruped" }, "category": "other", "description": "A broken Exodii Jotunn walker. Still looks incredibly intimidating despite being permanently inoperative, due to the sheer size, mass, and protruding weapons. Could be gutted for parts.", - "price": 1000, + "price": "10 USD", "material": [ "steel" ], "volume": "410 L", "weight": "498 kg", diff --git a/data/mods/Xedra_Evolved/items/dreamsmith.json b/data/mods/Xedra_Evolved/items/dreamsmith.json index 75b976f6fe2f2..80adf4f38f4d1 100644 --- a/data/mods/Xedra_Evolved/items/dreamsmith.json +++ b/data/mods/Xedra_Evolved/items/dreamsmith.json @@ -10,8 +10,8 @@ "symbol": "H", "color": "cyan", "flags": [ "NO_SALVAGE" ], - "price": 25000, - "price_postapoc": 1500, + "price": "250 USD", + "price_postapoc": "15 USD", "longest_side": "213 cm", "volume": "570 L", "weight": "57 kg", diff --git a/data/mods/Xedra_Evolved/items/drugs.json b/data/mods/Xedra_Evolved/items/drugs.json index a69fd5fed5d76..4229dbc34568d 100644 --- a/data/mods/Xedra_Evolved/items/drugs.json +++ b/data/mods/Xedra_Evolved/items/drugs.json @@ -72,9 +72,9 @@ "description": "This homemade blood treatment purports to reduce the cravings brought on by vampirism and if applied often and early to even reverse some stages of the disease. But vampires surely can't be real, can they?", "weight": "12 g", "volume": "10ml", - "price": 5000, + "price": "50 USD", "phase": "liquid", - "price_postapoc": 2000, + "price_postapoc": "20 USD", "material": [ "hflesh" ], "charges": 4, "stack_size": 4, @@ -95,7 +95,7 @@ "description": "A poultice made from the elements of the earth. You could use it to heal your wounds, if you were made of stone.", "weight": "375 g", "volume": "250 ml", - "price": 600, + "price": "6 USD", "material": [ "dreamstuff" ], "symbol": "~", "color": "brown", @@ -110,7 +110,7 @@ "description": "A poultice made from plant life. You could use it to heal your wounds, if you were grown from plants.", "weight": "375 g", "volume": "250 ml", - "price": 600, + "price": "6 USD", "material": [ "dreamstuff" ], "symbol": "~", "color": "brown", @@ -125,7 +125,7 @@ "description": "A poultice made from the elements of the sea. You could use it to heal your wounds, if you were liquid as well.", "weight": "375 g", "volume": "250 ml", - "price": 600, + "price": "6 USD", "material": [ "dreamstuff" ], "symbol": "~", "color": "brown", @@ -140,7 +140,7 @@ "description": "A devotion to the powers of fire. You could use it to heal your wounds, if you were born of the flames.", "weight": "375 g", "volume": "250 ml", - "price": 600, + "price": "6 USD", "material": [ "dreamstuff" ], "symbol": "~", "color": "brown", @@ -155,7 +155,7 @@ "description": "A paste made from paint and glue. You could use it to heal your wounds, if you were made in man's image.", "weight": "375 g", "volume": "250 ml", - "price": 600, + "price": "6 USD", "material": [ "dreamstuff" ], "symbol": "~", "color": "brown", @@ -170,7 +170,7 @@ "description": "A concoction made from honey and bread. You could use it to heal your wounds, if you were born of air and darkness.", "weight": "375 g", "volume": "250 ml", - "price": 600, + "price": "6 USD", "material": [ "dreamstuff" ], "symbol": "~", "color": "brown", @@ -195,7 +195,7 @@ "comestible_type": "DRINK", "flags": [ "EATEN_COLD", "NO_AUTO_CONSUME", "NUTRIENT_OVERRIDE" ], "phase": "liquid", - "price": 2500, + "price": "25 USD", "freezing_point": 4 } ] diff --git a/data/mods/Xedra_Evolved/items/ethereal_items.json b/data/mods/Xedra_Evolved/items/ethereal_items.json index f82e6981019b1..a6c49a07faeb2 100644 --- a/data/mods/Xedra_Evolved/items/ethereal_items.json +++ b/data/mods/Xedra_Evolved/items/ethereal_items.json @@ -6,7 +6,7 @@ "description": "Your edges blur and expand and contract in ways that don't reflect reality. Allows you to dodge two extra attacks in a given turn.", "weight": "1g", "volume": "1ml", - "price": 3646, + "price": "36 USD 46 cent", "symbol": "o", "color": "white", "material": [ "dreamstuff" ], @@ -79,8 +79,8 @@ "weight": "500 g", "volume": "1500 ml", "longest_side": "100 cm", - "price": 98000, - "price_postapoc": 2500, + "price": "980 USD", + "price_postapoc": "25 USD", "to_hit": { "grip": "weapon", "length": "long", "surface": "line", "balance": "good" }, "material": [ "dreamstuff" ], "symbol": "/", @@ -103,8 +103,8 @@ "weight": "145 g", "volume": "250 ml", "longest_side": "38 cm", - "price": 4000, - "price_postapoc": 750, + "price": "40 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "material": [ "dreamstuff" ], "symbol": "/", @@ -143,7 +143,7 @@ "description": "Hey I thought this was America…", "weight": "1 g", "volume": "1 ml", - "price": 3646, + "price": "36 USD 46 cent", "symbol": "o", "color": "white", "material": [ "dreamstuff" ], @@ -176,7 +176,7 @@ "material": [ "dreamstuff" ], "flags": [ "NONCONDUCTIVE", "BELT_CLIP", "TRADER_AVOID", "UNBREAKABLE_MELEE", "NO_REPAIR", "NO_SALVAGE", "MAGIC_FOCUS" ], "volume": "1250 ml", - "price": 0, + "price": "0 cent", "qualities": [ [ "DREAM_HAMMER", 1 ] ], "relic_data": { "passive_effects": [ { "has": "WIELD", "condition": "ALWAYS", "values": [ { "value": "MAX_MANA", "multiply": -1 } ] } ] @@ -207,8 +207,8 @@ "symbol": "/", "material": [ "forged_dreamstuff" ], "volume": "1050 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "flags": [ "DURABLE_MELEE", "NONCONDUCTIVE", "BELT_CLIP", "TRADER_AVOID", "SINGLE_USE" ], "use_action": { "type": "cast_spell", "spell_id": "constructed_hammer_attack", "no_fail": true, "level": 0, "need_wielding": true }, "qualities": [ [ "PRY", 4 ], [ "HAMMER", 2 ], [ "PRYING_NAIL", 1 ] ] @@ -247,7 +247,7 @@ "weight": "1 g", "material": [ "dreamstuff" ], "volume": "250 ml", - "price": 1, + "price": "1 cent", "to_hit": -2, "symbol": ",", "color": "light_green", @@ -262,7 +262,7 @@ "description": "A large pouch of churning water on your back, containing a sealed air bubble. It shifts and adjusts itself to minimize encumbrance.", "weight": "0 kg", "volume": "0 L", - "price": 0, + "price": "0 cent", "material": [ "water" ], "symbol": "[", "color": "green", @@ -330,8 +330,8 @@ "weight": "30 g", "volume": "250 ml", "flags": [ "PAPER_SHAPED" ], - "price": 1000, - "price_postapoc": 1000, + "price": "10 USD", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "elemental_water" ], "symbol": ";", @@ -358,8 +358,8 @@ "weight": "3 kg", "volume": "92 L", "longest_side": "550 mm", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -1, "material": [ "veggy", "wood" ], "symbol": "o", diff --git a/data/mods/Xedra_Evolved/items/gun_magazine.json b/data/mods/Xedra_Evolved/items/gun_magazine.json index 5995bb204248d..e922503dcbf74 100644 --- a/data/mods/Xedra_Evolved/items/gun_magazine.json +++ b/data/mods/Xedra_Evolved/items/gun_magazine.json @@ -7,8 +7,8 @@ "description": "An 18-round box magazine for use with the SR-1 Vektor 9x21mm pistol.", "weight": "90 g", "volume": "270 ml", - "price": 4000, - "price_postapoc": 120, + "price": "40 USD", + "price_postapoc": "1 USD 20 cent", "material": [ "steel" ], "symbol": "#", "color": "light_gray", @@ -24,8 +24,8 @@ "description": "A removable plastic 8-round box magazine, for use with the AA-12 shotgun.", "weight": "210 g", "volume": "500 ml", - "price": 4500, - "price_postapoc": 100, + "price": "45 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "dark_gray", @@ -41,8 +41,8 @@ "description": "A removable plastic 32-round drum magazine, for use with the HAMMER dual AA-12 turret system.", "weight": "1210 g", "volume": "900 ml", - "price": 4500, - "price_postapoc": 100, + "price": "45 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "dark_gray", @@ -58,8 +58,8 @@ "description": "A removable plastic 64-round drum magazine, for use with the AA-12 shotgun.", "weight": "2210 g", "volume": "1800 ml", - "price": 4500, - "price_postapoc": 100, + "price": "45 USD", + "price_postapoc": "1 USD", "material": [ "plastic" ], "symbol": "#", "color": "dark_gray", diff --git a/data/mods/Xedra_Evolved/items/guns.json b/data/mods/Xedra_Evolved/items/guns.json index fe091d58adaba..99085a7ad3586 100644 --- a/data/mods/Xedra_Evolved/items/guns.json +++ b/data/mods/Xedra_Evolved/items/guns.json @@ -21,8 +21,8 @@ "weight": "950 g", "volume": "505 ml", "longest_side": "195 mm", - "price": 95000, - "price_postapoc": 3000, + "price": "950 USD", + "price_postapoc": "30 USD", "to_hit": -2, "material": [ "plastic", "steel" ], "color": "dark_gray", @@ -43,8 +43,8 @@ "weight": "5200 g", "volume": "3064 ml", "longest_side": "966 mm", - "price": 189000, - "price_postapoc": 8500, + "price": "1 kUSD 890 USD", + "price_postapoc": "85 USD", "to_hit": -1, "material": [ "steel" ], "dispersion": 358, @@ -77,8 +77,8 @@ "weight": "15 kg", "volume": "9 L", "longest_side": "100 cm", - "price": 180000, - "price_postapoc": 17550, + "price": "1 kUSD 800 USD", + "price_postapoc": "175 USD 50 cent", "to_hit": -2, "material": [ "steel" ], "dispersion": 358, diff --git a/data/mods/Xedra_Evolved/items/hedge_magic_items.json b/data/mods/Xedra_Evolved/items/hedge_magic_items.json index ec833aa6e0333..c11967c3f4b9b 100644 --- a/data/mods/Xedra_Evolved/items/hedge_magic_items.json +++ b/data/mods/Xedra_Evolved/items/hedge_magic_items.json @@ -6,7 +6,7 @@ "description": "Thanks to the words of the charm you spoke, you won't get wet.", "weight": "0 g", "volume": "0 ml", - "price": 0, + "price": "0 cent", "symbol": "x", "color": "white", "flags": [ @@ -39,7 +39,7 @@ "description": "A bobbing ball of blueish-green light, just bright enough to read by.", "weight": "0 g", "volume": "0 ml", - "price": 0, + "price": "0 cent", "symbol": "x", "color": "yellow", "flags": [ @@ -108,8 +108,8 @@ "pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "glamour_charge": 360 } } ], "weight": "100 g", "volume": "50 ml", - "price": 5000, - "price_postapoc": 50, + "price": "50 USD", + "price_postapoc": "50 cent", "material": [ "leather", "veggy" ], "color": "green", "symbol": ",", @@ -167,8 +167,8 @@ "comestible_type": "MED", "weight": "265 g", "volume": "250 ml", - "price": 200, - "price_postapoc": 100, + "price": "2 USD", + "price_postapoc": "1 USD", "spoils_in": "10 days", "fun": -5, "symbol": "q", diff --git a/data/mods/Xedra_Evolved/items/inventor/gun.json b/data/mods/Xedra_Evolved/items/inventor/gun.json index 52d43527a2a24..7c8753ab86fdd 100644 --- a/data/mods/Xedra_Evolved/items/inventor/gun.json +++ b/data/mods/Xedra_Evolved/items/inventor/gun.json @@ -269,8 +269,8 @@ "description": "So you decided to become an inventor and instead of inventing something good for mankind, you invented this? You should be ashamed.", "weight": "1340 g", "volume": "2 L", - "price": 180000, - "price_postapoc": 10000, + "price": "1 kUSD 800 USD", + "price_postapoc": "100 USD", "to_hit": -2, "melee_damage": { "bash": 8 }, "ammo_type": "bio_warhead", @@ -401,8 +401,8 @@ "weight": "2670 g", "volume": "3560 ml", "longest_side": "50 cm", - "price": 125000, - "price_postapoc": 2000, + "price": "1 kUSD 250 USD", + "price_postapoc": "20 USD", "to_hit": -1, "melee_damage": { "bash": 12 }, "material": [ "steel", "plastic" ], @@ -447,8 +447,8 @@ "integral_weight": "750 g", "integral_longest_side": "20 cm", "longest_side": "45 cm", - "price": 50000, - "price_postapoc": 3000, + "price": "500 USD", + "price_postapoc": "30 USD", "type": "GUNMOD", "material": [ "steel" ], "symbol": ":", @@ -476,8 +476,8 @@ "integral_weight": "750 g", "integral_longest_side": "20 cm", "longest_side": "45 cm", - "price": 50000, - "price_postapoc": 3000, + "price": "500 USD", + "price_postapoc": "30 USD", "type": "GUNMOD", "material": [ "steel" ], "symbol": ":", @@ -505,8 +505,8 @@ "integral_weight": "750 g", "integral_longest_side": "20 cm", "longest_side": "45 cm", - "price": 50000, - "price_postapoc": 3000, + "price": "500 USD", + "price_postapoc": "30 USD", "type": "GUNMOD", "material": [ "steel" ], "symbol": ":", @@ -536,8 +536,8 @@ "integral_weight": "750 g", "integral_longest_side": "20 cm", "longest_side": "45 cm", - "price": 50000, - "price_postapoc": 3000, + "price": "500 USD", + "price_postapoc": "30 USD", "type": "GUNMOD", "material": [ "steel" ], "symbol": ":", diff --git a/data/mods/Xedra_Evolved/items/melee.json b/data/mods/Xedra_Evolved/items/melee.json index 8b240c94d11d7..dd19d1b6a9a23 100644 --- a/data/mods/Xedra_Evolved/items/melee.json +++ b/data/mods/Xedra_Evolved/items/melee.json @@ -8,7 +8,7 @@ "copy-from": "knife_combat", "volume": "500 ml", "longest_side": "30 cm", - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", "to_hit": { "grip": "weapon", "length": "hand", "surface": "point", "balance": "good" }, "proportional": { "price": 5, "weight": 0.8, "melee_damage": { "stab": 1.1 } }, "material": [ "moon_tears", "leather" ], @@ -28,8 +28,8 @@ "color": "light_gray", "name": { "str": "mirrored estoc" }, "description": "A thin piercing sword no wider than two fingers side by side, it's mirrored surface reflects the world back at it's wielders opponents and is difficult to see to parry. You've never felt a sword like this before.", - "price": 135000, - "price_postapoc": 50000, + "price": "1 kUSD 350 USD", + "price_postapoc": "500 USD", "material": [ "moon_tears" ], "techniques": [ "WBLOCK_2", "PRECISE" ], "flags": [ "DURABLE_MELEE", "SHEATH_SWORD" ], @@ -159,7 +159,7 @@ "proportional": { "weight": 0.6, "melee_damage": { "bash": 1.3 } }, "category": "weapons", "to_hit": { "grip": "weapon", "length": "long", "surface": "any", "balance": "good" }, - "price_postapoc": 1000 + "price_postapoc": "10 USD" }, { "type": "GENERIC", diff --git a/data/mods/Xedra_Evolved/items/mutagen.json b/data/mods/Xedra_Evolved/items/mutagen.json index e97680ba82ca6..ecf4867866cf4 100644 --- a/data/mods/Xedra_Evolved/items/mutagen.json +++ b/data/mods/Xedra_Evolved/items/mutagen.json @@ -5,7 +5,7 @@ "type": "COMESTIBLE", "name": "Ierde destiny draught", "description": "This magical potion will further your transformation from newly sentient creature to elemental powerhouse.", - "price": 500000, + "price": "5 kUSD", "use_action": { "type": "consume_drug", "activation_message": "You drink the Ierde draught.", @@ -18,7 +18,7 @@ "type": "COMESTIBLE", "name": "Arvore destiny draught", "description": "This magical potion will further your transformation from newly sentient creature to elemental powerhouse.", - "price": 500000, + "price": "5 kUSD", "use_action": { "type": "consume_drug", "activation_message": "You drink the Arvore draught.", @@ -31,7 +31,7 @@ "type": "COMESTIBLE", "name": "Undine destiny draught", "description": "This magical potion will further your transformation from newly sentient creature to elemental powerhouse.", - "price": 500000, + "price": "5 kUSD", "use_action": { "type": "consume_drug", "activation_message": "You drink the Undine draught.", @@ -44,7 +44,7 @@ "type": "COMESTIBLE", "name": "Salamander destiny draught", "description": "This magical potion will further your transformation from newly sentient creature to elemental powerhouse.", - "price": 500000, + "price": "5 kUSD", "use_action": { "type": "consume_drug", "activation_message": "You drink the Salamander draught.", @@ -57,7 +57,7 @@ "type": "COMESTIBLE", "name": "Homullus destiny draught", "description": "This magical potion will further your transformation from newly sentient creature to elemental powerhouse.", - "price": 500000, + "price": "5 kUSD", "use_action": { "type": "consume_drug", "activation_message": "You drink the Homullus draught.", @@ -70,7 +70,7 @@ "type": "COMESTIBLE", "name": "Sylph destiny draught", "description": "This magical potion will further your transformation from newly sentient creature to elemental powerhouse.", - "price": 500000, + "price": "5 kUSD", "use_action": { "type": "consume_drug", "activation_message": "You drink the Sylph draught.", diff --git a/data/mods/Xedra_Evolved/items/notes_and_news.json b/data/mods/Xedra_Evolved/items/notes_and_news.json index e19995182982a..3f2f2ff419275 100644 --- a/data/mods/Xedra_Evolved/items/notes_and_news.json +++ b/data/mods/Xedra_Evolved/items/notes_and_news.json @@ -48,8 +48,8 @@ "name": { "str": "museum plaque" }, "snippet_category": "museum_plaques_visitors", "description": "A paper plaque. It has words printed on it.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID" ], "weight": "12 mg", @@ -64,8 +64,8 @@ "name": { "str": "museum plaque" }, "snippet_category": "museum_plaques_items", "description": "A paper plaque. It has words printed on it.", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "paper" ], "flags": [ "TRADER_AVOID" ], "weight": "12 mg", diff --git a/data/mods/Xedra_Evolved/items/pets.json b/data/mods/Xedra_Evolved/items/pets.json index 88221fde2c0f2..5cce4f9928d4b 100644 --- a/data/mods/Xedra_Evolved/items/pets.json +++ b/data/mods/Xedra_Evolved/items/pets.json @@ -7,8 +7,8 @@ "description": "An incredibly hard cracker. Squeezing it in your hand it feels as though your teeth might break before the cracker does. The packaging on the side shows a tall being feeding these crackers to a horned and four legged creature.", "weight": "300 g", "volume": "250 ml", - "price": 100, - "price_postapoc": 25, + "price": "1 USD", + "price_postapoc": "25 cent", "to_hit": -5, "material": [ "fae_blood", "veggy" ], "symbol": ";", @@ -24,8 +24,8 @@ "description": "A golden bridle made of spun moon tears, gold, and incredibly strong hair including associated tack that can be placed on a tamed mythical animal that is capable of being ridden.", "weight": "2 kg", "volume": "7 L", - "price": 0, - "price_postapoc": 1000, + "price": "0 cent", + "price_postapoc": "10 USD", "to_hit": -1, "material": [ "moon_tears", "fae_fur", "gold" ], "symbol": "M", diff --git a/data/mods/Xedra_Evolved/items/range.json b/data/mods/Xedra_Evolved/items/range.json index d040233bff633..5b9eb23982383 100644 --- a/data/mods/Xedra_Evolved/items/range.json +++ b/data/mods/Xedra_Evolved/items/range.json @@ -7,7 +7,7 @@ "color": "light_gray", "name": { "str": "dreamforged bow" }, "description": "A six-foot bow, forged entirely from dreamdross, including its strings. Primitive look, devastating power.", - "price": 50000, + "price": "500 USD", "material": [ "forged_dreamstuff" ], "flags": [ "FIRE_TWOHAND", @@ -60,7 +60,7 @@ "description": "A dreamforged arrow with a razor-sharp tip.", "material": [ "forged_dreamstuff" ], "volume": "40 ml", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "weight": "80 g", "longest_side": "80 cm", "ammo_type": "arrow", @@ -113,7 +113,7 @@ { "type": "AMMO", "id": "bolt_dreamforged", - "price": 2000, + "price": "20 USD", "name": { "str": "dreamforged bolt" }, "symbol": "=", "color": "green", diff --git a/data/mods/Xedra_Evolved/items/resources.json b/data/mods/Xedra_Evolved/items/resources.json index dfd27424a5898..061f39801deba 100644 --- a/data/mods/Xedra_Evolved/items/resources.json +++ b/data/mods/Xedra_Evolved/items/resources.json @@ -8,7 +8,7 @@ "//": "not really sure how to convert density to weight in our system look at it later.", "weight": "683 g", "volume": "250 ml", - "price": 6399, + "price": "63 USD 99 cent", "to_hit": -3, "material": [ "moon_tears" ], "symbol": "=", @@ -23,8 +23,8 @@ "name": { "str": "moon tear wire" }, "description": "A length of thin, relatively stiff moon tear wire.", "category": "spare_parts", - "price": 20000, - "price_postapoc": 100, + "price": "200 USD", + "price_postapoc": "1 USD", "material": [ "moon_tears" ], "weight": "151 g", "volume": "100 ml", @@ -38,8 +38,8 @@ "description": "A bulky assortment of small bits of scrap moon tears, useful for forging into ingots and wire.", "weight": "5 g", "volume": "25 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "count": 2, "stack_size": 10, "//": "Density 2g/ml.", @@ -65,8 +65,8 @@ "description": "A bulky assortment of small bits of scrap dreamdross, useful in all kinds of ephemeral crafting.", "weight": "5 g", "volume": "25 ml", - "price": 500, - "price_postapoc": 10, + "price": "5 USD", + "price_postapoc": "10 cent", "count": 2, "stack_size": 10, "//": "Density 2g/ml.", @@ -83,8 +83,8 @@ "description": "A heavy formed piece of dreamdross. Useful for some crafting recipes.", "weight": "50 g", "volume": "25 ml", - "price": 2000, - "price_postapoc": 500, + "price": "20 USD", + "price_postapoc": "5 USD", "to_hit": -4, "material": [ "dreamstuff" ], "symbol": ",", @@ -100,8 +100,8 @@ "description": "A forged ingot of dreamdross. About 3cm by 7cm by 12cm in size, ready to be used for various reality forging tasks.", "weight": "500 g", "volume": "250 ml", - "price": 6399, - "price_postapoc": 5000, + "price": "63 USD 99 cent", + "price_postapoc": "50 USD", "to_hit": -3, "material": [ "forged_dreamstuff" ], "symbol": "=", @@ -115,8 +115,8 @@ "color": "brown", "name": { "str": "tanned glimmer fur pelt" }, "description": "A folded sheet of glimmer fur made from carefully tanned fae animal pelt. Can be cut up or used as is.", - "price": 5000, - "price_postapoc": 500, + "price": "50 USD", + "price_postapoc": "5 USD", "material": [ "fae_fur" ], "weight": "372 g", "volume": "465 ml", @@ -130,8 +130,8 @@ "description": "A treated fae animal pelt that is undergoing the chemical processes required to become fur. You will be able to activate it to unroll and make use of it when it is done.", "weight": "684 g", "volume": "1 L", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": -2, "material": [ "fur", "flesh" ], "symbol": ",", @@ -154,8 +154,8 @@ "color": "brown", "name": { "str": "cured glimmer pelt" }, "description": "A rolled-up fae animal hide which has been scraped of extraneous hair and flesh and treated to prevent decay. It still requires tanning to become usable fur.", - "price": 200, - "price_postapoc": 150, + "price": "2 USD", + "price_postapoc": "1 USD 50 cent", "material": [ "fae_fur", "fae_flesh" ], "flags": [ "NO_SALVAGE" ], "weight": "372 g", @@ -171,8 +171,8 @@ "description": "A 12-inch by 24-inch sheet of gossamer fabric, like a swatch plucked from a rainbow.", "weight": "25 g", "volume": "47 ml", - "price": 2000, - "price_postapoc": 20, + "price": "20 USD", + "price_postapoc": "20 cent", "material": [ "fae_cotton" ], "symbol": "=", "color": "white" @@ -183,8 +183,8 @@ "type": "GENERIC", "name": { "str": "patchwork gossamer sheet" }, "description": "A 12-inch by 24-inch sheet of gossamer sewn together from patches of various clothing parts. Suitable for making clothing if you lack proper material sheets.", - "price": 200, - "price_postapoc": 20 + "price": "2 USD", + "price_postapoc": "20 cent" }, { "id": "gossamer_patchwork", @@ -194,8 +194,8 @@ "description": "A 6-inch square gossamer patch, suitable for repairing and tailoring clothing.", "weight": "3 g", "volume": "6 ml", - "price": 200, - "price_postapoc": 2, + "price": "2 USD", + "price_postapoc": "2 cent", "material": [ "fae_cotton" ], "symbol": ",", "color": "white", @@ -221,8 +221,8 @@ "weight": "33 g", "volume": "50 ml", "material": [ "fae_cotton" ], - "price": 0, - "price_postapoc": 8, + "price": "0 cent", + "price_postapoc": "8 cent", "symbol": ",", "color": "white", "flags": [ "NO_SALVAGE" ] diff --git a/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_classless.json b/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_classless.json index 74a0560f6a265..e987ac29f4b45 100644 --- a/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_classless.json +++ b/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_classless.json @@ -8,8 +8,8 @@ "description": "An old-school cylinder hat, used by illusionists around the world. Maybe it still remembers some cool tricks?", "weight": "150 g", "volume": "600 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "0", "color": "green", @@ -24,8 +24,8 @@ "description": "A small and light ball of glass with flickering flames inside. The surface feels scalding hot, yet the temperature does not change.", "weight": "40 g", "volume": "150 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "o", "color": "red", diff --git a/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_dreamer.json b/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_dreamer.json index eda5fd7917a04..e6b1999dd04a6 100644 --- a/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_dreamer.json +++ b/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_dreamer.json @@ -8,8 +8,8 @@ "description": "A fortune-telling device from the 1950s. If you shake it and look at the bottom it will give you detailed step by step instructions on how to do… something.", "weight": "40 g", "volume": "150 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "o", "color": "white", @@ -25,8 +25,8 @@ "weight": "40 g", "volume": "150 ml", "longest_side": "12 cm", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "t", "color": "white", @@ -42,8 +42,8 @@ "weight": "40 g", "volume": "150 ml", "longest_side": "12 cm", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "C", "color": "red_white", @@ -58,8 +58,8 @@ "description": "·ɓuoɹʍ ɓuᴉɥʇǝɯoS ·ɹoɹɹᴉɯ puɐɥ ʅʅɐɯs Ɐ", "//": "'A small hand mirror. Something wrong'. I use https://www.messletters.com/en/mirrored/ (the third option) but I guess it doesn't work with non-Latin languages. Sorry translators.", "looks_like": "mirror", - "price": 15000, - "price_postapoc": 10, + "price": "150 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "weight": "300 g", "volume": "750 ml", @@ -76,8 +76,8 @@ "description": "A pair of a common glasses. They have no lens or glass inside, only casing. There is a strange engraving of vines, snakes, and foxes covering every surface of the frames. You think that maybe the engravings are moving when you aren't looking at them.", "weight": "15 g", "volume": "250 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "[", "color": "cyan", @@ -95,8 +95,8 @@ "description": "A photo of a smiling family on a camping trip. The background is always the same, but people are not. Do you recall them?", "weight": "1 g", "volume": "5 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "*", "color": "light_gray", @@ -111,8 +111,8 @@ "looks_like": "golf_ball", "weight": "117 g", "volume": "117 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "0", "color": "black", @@ -128,8 +128,8 @@ "weight": "280 g", "volume": "270 ml", "longest_side": "14 cm", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "0", "color": "black", @@ -144,8 +144,8 @@ "description": "A pin-shaped piece of iron. You feel the need to hammer it.", "weight": "4 g", "volume": "2 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "0", "color": "black", @@ -160,8 +160,8 @@ "description": "A small, transparent bubble. It divides itself into two, then four, eight, sixteen, endlessly, before turning back to single bubble and repeating the process.", "weight": "1 g", "volume": "150 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "0", "color": "white", @@ -177,8 +177,8 @@ "description": "A small, flat case used to carry currency. Each time you open it, it reveals new pockets, but all of them hold the same one coin, which you can't remove.", "volume": "200 ml", "weight": "60 g", - "price": 1, - "price_postapoc": 10, + "price": "1 cent", + "price_postapoc": "10 cent", "material": [ "plastic" ], "symbol": ")", "color": "dark_gray" @@ -192,8 +192,8 @@ "description": "A delicate figurine of a renaissance angel. It looks oddly human.", "weight": "45 g", "volume": "90 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "0", "color": "black", @@ -208,8 +208,8 @@ "description": "A small action figurine of a man with an old computer. It appears he is attempting to hack it.", "weight": "90 g", "volume": "190 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "0", "color": "black", @@ -224,8 +224,8 @@ "description": "A circular unit of energy, surrounded by a few other circles that almost connect around the center.", "weight": "90 g", "volume": "190 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "o", "color": "cyan", diff --git a/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_dreamsmith.json b/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_dreamsmith.json index 56e593c453622..ab29cfa6caea4 100644 --- a/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_dreamsmith.json +++ b/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_dreamsmith.json @@ -8,8 +8,8 @@ "description": "These brass cylinders are engraved with cuneiform and could be rolled across wet clay to create a page of writing per cylinder. When you touch one of the cylinders you hear a faint voice whisper 'Enki'.", "weight": "50 g", "volume": "10 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "U", "color": "magenta_yellow", diff --git a/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_eater.json b/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_eater.json index 9e56d029a60de..419c3f535f385 100644 --- a/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_eater.json +++ b/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_eater.json @@ -8,8 +8,8 @@ "description": "A deck of intricately designed tarot cards. When you lay out your future they seem to be trying to tell you to take a leap of faith.", "weight": "50 g", "volume": "10 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": ",", "color": "brown", @@ -23,8 +23,8 @@ "description": "An intricate occult seal. When you glance at the bottom left corner you hear the sound of the ocean and smell the salty air of the sea, and sense a river flowing through each point of the seal.", "weight": "50 g", "volume": "10 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "%", "color": "dark_gray", @@ -39,8 +39,8 @@ "description": "An old style hurricane lamp. The handle appears to made of vines covered in sharp thorns.", "weight": "50 g", "volume": "10 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "a", "color": "green", @@ -55,8 +55,8 @@ "description": "A box full of glass berries, when you get distracted you find yourself crunching them in your mouth. Each one tastes like a mouthful of blood that slowly changes to espresso.", "weight": "50 g", "volume": "10 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "o", "color": "light_cyan", @@ -71,8 +71,8 @@ "description": "A polaroid of someone you remember going missing before the Cataclysm. It caught a ton of media attention due to them being seen near what was shortly after identified as a thin place between dimensions. The more you stare at the picture, the more you begin to see wounds appear and disappear on the person. Sometimes they match your old scars.", "weight": "50 g", "volume": "10 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "O", "color": "white_magenta", @@ -87,8 +87,8 @@ "description": "A small jar with coffee, moving in weird patterns with no apparent cause. After watching the swirls for some time, you are sure that it loops back on its movements, like some sort of message.", "weight": "90 g", "volume": "100 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "C", "color": "white_magenta", @@ -112,8 +112,8 @@ "weight": "310 g", "volume": "345 ml", "longest_side": "15 cm", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "o", "color": "red", @@ -128,8 +128,8 @@ "description": "A tiny human eye. You can clearly see the green iris and red capillaries. While holding it in the dark you feel it watching you.", "weight": "9 g", "volume": "12 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "o", "color": "green", @@ -144,8 +144,8 @@ "description": "A small, smooth part of the human brain. Looks slippery. Feels like rubber.", "weight": "131 g", "volume": "126 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "o", "color": "red", @@ -160,8 +160,8 @@ "description": "A tiny human skull. His empty orbits are watching you.", "weight": "1133 g", "volume": "1386 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "@", "color": "red", @@ -174,8 +174,8 @@ "description": "A small ring. There is nothing special about it, except the word \"Republic\" embossed on it.", "weight": "9 g", "volume": "1 ml", - "price": 2000, - "price_postapoc": 10, + "price": "20 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "[", "looks_like": "ring_purity", @@ -201,8 +201,8 @@ "description": "A tiny human eye. You can clearly see it has a blue iris and red capillaries. You feel it can see you no matter how you hide.", "weight": "9 g", "volume": "12 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "o", "color": "white", @@ -232,8 +232,8 @@ "weight": "239 g", "volume": "315 ml", "longest_side": "33 cm", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "to_hit": { "grip": "bad", "length": "hand", "surface": "point", "balance": "neutral" }, "techniques": [ "RAPID" ], "flags": [ ], @@ -253,8 +253,8 @@ "description": "A long fleshy tendon with joints on both sides. They contract from time to time.", "weight": "9 g", "volume": "12 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "0", "color": "red", @@ -268,8 +268,8 @@ "description": "There is nothing here. It's uncomfortable to hold it.", "weight": "1 g", "volume": "66 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "0", "color": "red", @@ -285,8 +285,8 @@ "//": "unstoppable and immovable", "weight": "240 g", "volume": "1150 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "0", "color": "dark_gray", @@ -301,8 +301,8 @@ "description": "A solid, full size cast of a human fist, made out of some gray metal. Looks menacing.", "weight": "560 g", "volume": "280 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "0", "color": "dark_gray", diff --git a/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_inventor.json b/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_inventor.json index e609533fc6793..3894180ef0a53 100644 --- a/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_inventor.json +++ b/data/mods/Xedra_Evolved/items/spell_learning_items/spell_learning_items_inventor.json @@ -7,8 +7,8 @@ "description": "A small hardcover book describing a quite preposterous version of string theory.", "weight": "77 g", "volume": "334 ml", - "price": 1000, - "price_postapoc": 10, + "price": "10 USD", + "price_postapoc": "10 cent", "material": [ "forged_dreamstuff" ], "symbol": "*", "color": "black", diff --git a/data/mods/Xedra_Evolved/items/spell_learning_items/spellbooks_hedge.json b/data/mods/Xedra_Evolved/items/spell_learning_items/spellbooks_hedge.json index ff7f0bb2ad09f..d6fa1ed098986 100644 --- a/data/mods/Xedra_Evolved/items/spell_learning_items/spellbooks_hedge.json +++ b/data/mods/Xedra_Evolved/items/spell_learning_items/spellbooks_hedge.json @@ -7,7 +7,7 @@ "description": "This purports to be the 'Reale and True Acounting of the Works and Devices of Sarah Osbourne, a Most Puissant Wiche', but you're pretty sure it's all a front and it was actually written within the last couple decades. There are some pretty detailed descriptions of rituals in here, mixed among diary entries and accounts of fanciful meetings in the woods.", "weight": "1200 g", "volume": "2500 ml", - "price": 3000, + "price": "30 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -22,7 +22,7 @@ "description": "A hardcover translation of the infamous 15th century book used as a reference work for witchcraft trials for centuries. This translation seems to have some handwritten notes in some of the margins.", "weight": "721 g", "volume": "791 ml", - "price": 1500, + "price": "15 USD", "material": [ "paper", "cardboard" ], "looks_like": "cookbook", "symbol": "?", @@ -37,7 +37,7 @@ "description": "This mass-market paperback purports to pass down the ancient traditional secrets of English cunning folk, though if that were true, they probably could have gotten more than $12.95 for it. There are a lot of descriptions of rituals and procedures in here, though--maybe some of them deserve further investigation.", "weight": "537 g", "volume": "930 ml", - "price": 1295, + "price": "12 USD 95 cent", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -55,7 +55,7 @@ "description": "This is an anthropological collection of American folk beliefs in the Upper Peninsula of Michigan, consisting of stories, legends, descriptions of rituals, tall tales, and anything else the author heard during his period of study. The \"Bloodstoppers\" of the title are individuals believed to be able to stop the flow of blood from a wound, with an incantation or ritual or sheer force of will, and the bearwalkers were allegedly sorcerers who could assume the shape of a bear and cause misfortune.", "weight": "211 g", "volume": "500 ml", - "price": 5000, + "price": "50 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", @@ -73,7 +73,7 @@ "description": "This is a very thin booklet, more of a pamphlet, about various ways to protect from nightmares. There are quite a few techniques in here, though you're a bit skeptical about whether the author took the end of the world into their calculations.", "weight": "83 g", "volume": "132 ml", - "price": 1000, + "price": "10 USD", "material": [ "paper" ], "looks_like": "cookbook", "symbol": "?", diff --git a/data/mods/Xedra_Evolved/items/tools.json b/data/mods/Xedra_Evolved/items/tools.json index 3654b6324b54b..31fd01bec0140 100644 --- a/data/mods/Xedra_Evolved/items/tools.json +++ b/data/mods/Xedra_Evolved/items/tools.json @@ -6,8 +6,8 @@ "description": "This is a high quality kit consisting of a variety of needles, some wooden spools for thread, some small scissors, and an awl. Use a tailor's kit to customize your clothing and armor. This uses your tailoring skill.", "weight": "100 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 1000, + "price": "10 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "wood", "steel" ], "symbol": ";", @@ -53,8 +53,8 @@ "name": { "str": "dreamforged hacksaw" }, "description": "A sturdy saw, useful for cutting through metal objects. Forged from dreamdross, which makes it much lighter.", "proportional": { "weight": 0.25, "melee_damage": { "bash": 0.25 } }, - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "forged_dreamstuff" ], "symbol": ";", "color": "light_gray" @@ -67,8 +67,8 @@ "description": "A classic carpenter hammer with claw. Forged from dreamdross, which makes it much lighter.", "proportional": { "weight": 0.75, "melee_damage": { "bash": 0.25 } }, "//": "0.75 for both metal and wooden parts", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "forged_dreamstuff" ], "symbol": ";", "color": "light_gray" @@ -80,8 +80,8 @@ "name": { "str": "dreamforged Halligan bar" }, "description": "A small tool for breaking into closed locations. Forged from dreamdross, which makes it really light.", "proportional": { "weight": 0.25, "melee_damage": { "bash": 0.25 } }, - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "forged_dreamstuff" ], "symbol": ";", "color": "light_gray" @@ -93,8 +93,8 @@ "name": { "str_sp": "dreamforged locking pliers" }, "description": "A pair of strong pliers with an adjustable mechanism. Forged entirely from dreamdross, which makes it much lighter.", "proportional": { "weight": 0.25, "melee_damage": { "bash": 0.25 } }, - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "forged_dreamstuff" ], "symbol": ";", "color": "light_gray" @@ -106,8 +106,8 @@ "name": { "str": "dreamforged pickaxe" }, "description": "A classic pickaxe, used for digging. Forged from dreamdross, which makes it really light, albeit a bit weaker.", "proportional": { "weight": 0.3, "melee_damage": { "bash": 0.25 } }, - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "forged_dreamstuff" ], "use_action": [ "PICKAXE" ], "symbol": ";", @@ -133,8 +133,8 @@ "name": { "str": "dreamforged scalpel" }, "description": "A very sharp medical knife for surgical operations. Almost weightless.", "proportional": { "weight": 0.25 }, - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "forged_dreamstuff" ], "symbol": ";", "color": "light_gray" @@ -146,8 +146,8 @@ "name": { "str": "dreamforged entrenching tool" }, "description": "A collapsible spade for digging small pits. Forged from dreamdross to make it even lighter than before.", "proportional": { "weight": 0.25 }, - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "forged_dreamstuff" ], "symbol": ";", "color": "light_gray" @@ -159,8 +159,8 @@ "name": { "str": "dreamforged axe" }, "description": "A large, two-handed axe for chopping wood. Light, but still useful.", "proportional": { "weight": 0.4, "melee_damage": { "bash": 0.25, "cut": 0.5 } }, - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "material": [ "forged_dreamstuff" ], "symbol": ";", "color": "light_gray" @@ -173,8 +173,8 @@ "description": "A magickal space where offerings are sacrificed and transformed.", "weight": "1000 g", "volume": "5000ml", - "price": 2000, - "price_postapoc": 750, + "price": "20 USD", + "price_postapoc": "7 USD 50 cent", "to_hit": -5, "material": [ "stone" ], "looks_like": "glass_tube_small", diff --git a/data/mods/Xedra_Evolved/items/vehicle_parts.json b/data/mods/Xedra_Evolved/items/vehicle_parts.json index d3986cb21dffa..5f67dc8f4ca8d 100644 --- a/data/mods/Xedra_Evolved/items/vehicle_parts.json +++ b/data/mods/Xedra_Evolved/items/vehicle_parts.json @@ -9,6 +9,6 @@ "weight": "10 kg", "color": "yellow", "material": [ "steel" ], - "price": 800000 + "price": "8 kUSD" } ] diff --git a/data/mods/Xedra_Evolved/monsters/monsterattacks.json b/data/mods/Xedra_Evolved/monsters/monsterattacks.json index e8e094eb5c45a..365876581f54b 100644 --- a/data/mods/Xedra_Evolved/monsters/monsterattacks.json +++ b/data/mods/Xedra_Evolved/monsters/monsterattacks.json @@ -71,8 +71,8 @@ "weight": "600 g", "volume": "386 ml", "longest_side": "211 mm", - "price": 65000, - "price_postapoc": 2500, + "price": "650 USD", + "price_postapoc": "25 USD", "to_hit": -2, "ranged_damage": { "damage_type": "bullet", "amount": -4 }, "material": [ "steel", "aluminum" ], @@ -125,8 +125,8 @@ "weight": "600 g", "volume": "551 ml", "longest_side": "164 mm", - "price": 65000, - "price_postapoc": 2500, + "price": "650 USD", + "price_postapoc": "25 USD", "to_hit": -2, "ranged_damage": { "damage_type": "bullet", "amount": -5 }, "material": [ "steel", "aluminum" ], diff --git a/data/mods/Xedra_Evolved/player/renfield_cbms.json b/data/mods/Xedra_Evolved/player/renfield_cbms.json index d21ba9466c3f7..79551446f206c 100644 --- a/data/mods/Xedra_Evolved/player/renfield_cbms.json +++ b/data/mods/Xedra_Evolved/player/renfield_cbms.json @@ -29,7 +29,7 @@ "description": "Internal tank for vampire blood power generator bionic.", "volume": "251 ml", "weight": "1 g", - "price": 0, + "price": "0 cent", "material": [ "plastic" ], "symbol": "(", "color": "magenta", diff --git a/data/mods/innawood/items/electronics.json b/data/mods/innawood/items/electronics.json index 4727c7db066b6..e4cadb67668cb 100644 --- a/data/mods/innawood/items/electronics.json +++ b/data/mods/innawood/items/electronics.json @@ -8,8 +8,8 @@ "category": "spare_parts", "looks_like": "power_supply", "description": "A bundle of cables around an iron core. Useful for controlling voltage.", - "price": 170, - "price_postapoc": 15, + "price": "1 USD 70 cent", + "price_postapoc": "15 cent", "material": [ "iron", "copper" ], "weight": "113 g", "volume": "1 L", @@ -40,8 +40,8 @@ "description": "A set of wiring and electrodes for applying a direct current, usually to a liquid. Useful for crafting. Load with a storage battery or 12V vehicle battery to use.", "weight": "250 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 750, + "price": "10 USD", + "price_postapoc": "7 USD 50 cent", "material": [ "steel", "copper", "plastic" ], "symbol": ";", "ammo": [ "battery" ], diff --git a/data/mods/innawood/items/lighting.json b/data/mods/innawood/items/lighting.json index 325193ce72003..6974ed7e80ee1 100644 --- a/data/mods/innawood/items/lighting.json +++ b/data/mods/innawood/items/lighting.json @@ -48,8 +48,8 @@ "description": "This is a large stick, wrapped in rags that are soaked with a flammable material. It is burning, producing plenty of light.", "weight": "831 g", "volume": "750 ml", - "price": 0, - "price_postapoc": 0, + "price": "0 cent", + "price_postapoc": "0 cent", "to_hit": 1, "material": [ "wood" ], "symbol": "/", diff --git a/data/mods/innawood/items/medical_primitive.json b/data/mods/innawood/items/medical_primitive.json index b5497b98273c2..ae5d11e35e8b3 100644 --- a/data/mods/innawood/items/medical_primitive.json +++ b/data/mods/innawood/items/medical_primitive.json @@ -23,8 +23,8 @@ "description": "Birchbark bandages with added garlic salve. They're better for wounds but not as good as real bandages.", "weight": "70 g", "volume": "250 ml", - "price": 25, - "price_postapoc": 100, + "price": "25 cent", + "price_postapoc": "1 USD", "material": "wood", "symbol": "!", "color": "white", diff --git a/data/mods/innawood/items/misc.json b/data/mods/innawood/items/misc.json index c47af0674399f..f68c031b2645d 100644 --- a/data/mods/innawood/items/misc.json +++ b/data/mods/innawood/items/misc.json @@ -16,7 +16,7 @@ "ascii_picture": "light_battery_cell", "weight": "10 g", "volume": "35 ml", - "price_postapoc": 100, + "price_postapoc": "1 USD", "material": [ "iron" ], "symbol": "=", "color": "light_gray", @@ -31,7 +31,7 @@ "ascii_picture": "medium_battery_cell", "weight": "175 g", "volume": "525 ml", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", "material": [ "iron" ], "symbol": "=", "color": "light_gray", @@ -46,7 +46,7 @@ "ascii_picture": "heavy_battery_cell", "weight": "450 g", "volume": "1500 ml", - "price_postapoc": 375, + "price_postapoc": "3 USD 75 cent", "material": [ "iron" ], "symbol": "=", "color": "light_gray", diff --git a/data/mods/innawood/items/tool_tailoring.json b/data/mods/innawood/items/tool_tailoring.json index c06a360903da5..052e629118bb7 100644 --- a/data/mods/innawood/items/tool_tailoring.json +++ b/data/mods/innawood/items/tool_tailoring.json @@ -7,8 +7,8 @@ "ascii_picture": "scissors", "weight": "113 g", "volume": "145 ml", - "price": 3500, - "price_postapoc": 350, + "price": "35 USD", + "price_postapoc": "3 USD 50 cent", "to_hit": -1, "material": [ "steel", "plastic" ], "symbol": ",", @@ -25,8 +25,8 @@ "description": "This is a wrapped leather kit with a variety of needles, some wooden spools for thread, small scissors, and a few other useful textile tools. Use a sewing kit on an article of clothing to attempt to repair or reinforce that clothing. This uses your tailoring skill.", "weight": "85 g", "volume": "250 ml", - "price": 1000, - "price_postapoc": 500, + "price": "10 USD", + "price_postapoc": "5 USD", "to_hit": -1, "material": [ "wood", "steel" ], "symbol": ",", @@ -52,8 +52,8 @@ "description": "This is a high quality kit consisting of a variety of needles, some wooden spools for thread, some small scissors, and an awl. Use a tailor's kit to customize your clothing and armor. This uses your tailoring skill.", "weight": "100 g", "volume": "500 ml", - "price": 1000, - "price_postapoc": 1000, + "price": "10 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "wood", "steel" ], "symbol": ";", @@ -117,8 +117,8 @@ "description": "A 12 inch by 24 inch sheet of fabric woven from plant fiber, suitable for making clothing.", "weight": "38 g", "volume": "47 ml", - "price": 1000, - "price_postapoc": 100, + "price": "10 USD", + "price_postapoc": "1 USD", "material": [ "fibercloth" ], "symbol": "=", "color": "green" @@ -131,8 +131,8 @@ "description": "A 6 inch square fibercloth patch, suitable for use in repairing and tailoring of clothing.", "weight": "5 g", "volume": "6 ml", - "price": 200, - "price_postapoc": 2, + "price": "2 USD", + "price_postapoc": "2 cent", "material": [ "fibercloth" ], "symbol": ",", "color": "green", diff --git a/data/mods/innawood/items/tool_workshop.json b/data/mods/innawood/items/tool_workshop.json index 5c08f9631bf04..7e1f132ddbc68 100644 --- a/data/mods/innawood/items/tool_workshop.json +++ b/data/mods/innawood/items/tool_workshop.json @@ -7,8 +7,8 @@ "weight": "1600 g", "volume": "1400 ml", "longest_side": "25 cm", - "price": 5000, - "price_postapoc": 1000, + "price": "50 USD", + "price_postapoc": "10 USD", "to_hit": -2, "material": [ "steel", "clay" ], "symbol": ";", diff --git a/data/mods/innawood/items/vehicle_battery.json b/data/mods/innawood/items/vehicle_battery.json index 3ed7109fced1a..0097a7224e308 100644 --- a/data/mods/innawood/items/vehicle_battery.json +++ b/data/mods/innawood/items/vehicle_battery.json @@ -8,8 +8,8 @@ "looks_like": "clay_hydria", "weight": "18000 g", "volume": "6250 ml", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "material": [ "clay" ], "symbol": ":", "color": "light_cyan", @@ -28,8 +28,8 @@ "looks_like": "clay_hydria", "weight": "82400 g", "volume": "26 L", - "price": 4000, - "price_postapoc": 500, + "price": "40 USD", + "price_postapoc": "5 USD", "material": [ "clay", "wood" ], "symbol": ":", "color": "light_cyan", diff --git a/data/mods/innawood/mining/items/ore.json b/data/mods/innawood/mining/items/ore.json index 4e7e81d735ffe..d6d60fea1b52e 100644 --- a/data/mods/innawood/mining/items/ore.json +++ b/data/mods/innawood/mining/items/ore.json @@ -7,8 +7,8 @@ "name": { "str": "iron ore" }, "category": "spare_parts", "description": "A chunk of iron-rich earth. Could be refined with a bloomery.", - "price": 531, - "price_postapoc": 10, + "price": "5 USD 31 cent", + "price_postapoc": "10 cent", "material": [ "iron" ], "weight": "1000 g", "volume": "235 ml", @@ -19,7 +19,7 @@ "type": "GENERIC", "id": "chunk_copper", "category": "spare_parts", - "price": 100, + "price": "1 USD", "name": { "str": "chunk of native copper", "str_pl": "chunks of native copper" }, "symbol": "*", "color": "light_red", @@ -34,7 +34,7 @@ "type": "GENERIC", "id": "chunk_silver", "category": "spare_parts", - "price": 500, + "price": "5 USD", "name": { "str": "chunk of native silver", "str_pl": "chunks of native silver" }, "symbol": "*", "color": "light_gray", @@ -49,7 +49,7 @@ "type": "GENERIC", "id": "chunk_gold", "category": "spare_parts", - "price": 1500, + "price": "15 USD", "name": { "str": "chunk of native gold", "str_pl": "chunks of native gold" }, "symbol": "*", "color": "yellow", @@ -64,7 +64,7 @@ "type": "GENERIC", "id": "chunk_aluminum", "category": "spare_parts", - "price": 100, + "price": "1 USD", "name": { "str": "chunk of native aluminum", "str_pl": "chunks of native aluminum" }, "symbol": "*", "color": "white", @@ -79,7 +79,7 @@ "type": "GENERIC", "id": "chunk_cassiterite", "category": "spare_parts", - "price": 300, + "price": "3 USD", "name": { "str": "chunk of cassiterite", "str_pl": "chunks of cassiterite" }, "symbol": "*", "color": "brown", @@ -94,7 +94,7 @@ "type": "GENERIC", "id": "chunk_galena", "category": "spare_parts", - "price": 250, + "price": "2 USD 50 cent", "name": { "str": "chunk of galena", "str_pl": "chunks of galena" }, "symbol": "*", "color": "white", @@ -109,7 +109,7 @@ "type": "GENERIC", "id": "chunk_hematite", "category": "spare_parts", - "price": 250, + "price": "2 USD 50 cent", "name": { "str": "chunk of hematite", "str_pl": "chunks of hematite" }, "symbol": "*", "color": "brown", @@ -124,7 +124,7 @@ "type": "GENERIC", "id": "chunk_cinnabar", "category": "spare_parts", - "price": 250, + "price": "2 USD 50 cent", "name": { "str": "chunk of cinnabar ", "str_pl": "chunks of cinnabar" }, "symbol": "*", "color": "brown", diff --git a/doc/ARMOR_BALANCE_AND_DESIGN.md b/doc/ARMOR_BALANCE_AND_DESIGN.md index 288ca227a1581..4f1bf99dc253b 100644 --- a/doc/ARMOR_BALANCE_AND_DESIGN.md +++ b/doc/ARMOR_BALANCE_AND_DESIGN.md @@ -56,8 +56,8 @@ here is an example armor to look at: "description": "A white button-down shirt with long sleeves. Looks professional!", "weight": "250 g", "volume": "750 ml", - "price": 1500, - "price_postapoc": 50, + "price": "15 USD", + "price_postapoc": "50 cent", "material": [ "cotton" ], "symbol": "[", "looks_like": "longshirt", @@ -182,8 +182,8 @@ Sided armor is armor that even though it describes covering, both legs, both arm "description": "A small concealed knife sheath worn on the ankle. It is awkward to use without practice. Activate to sheathe/draw a weapon.", "weight": "160 g", "volume": "500 ml", - "price": 5200, - "price_postapoc": 250, + "price": "52 USD", + "price_postapoc": "2 USD 50 cent", "to_hit": -1, "material": [ "leather" ], "symbol": "[", @@ -401,8 +401,8 @@ plate definition: "description": "A polygonal ceramic ballistic plate with a slightly concave profile. Its inner surface is coated with Ultra High Molecular Weight Polyethylene, and is labeled \"TOP\", while its outer surface is labeled \"STRIKE FACE\". This is intended to be worn in a ballistic vest and can withstand several high energy rifle rounds before breaking.", "weight": "2500 g", "volume": "1533 ml", - "price": 60000, - "price_postapoc": 100, + "price": "600 USD", + "price_postapoc": "1 USD", "material": [ "ceramic" ], "symbol": ",", "color": "dark_gray", @@ -433,8 +433,8 @@ Transforming items can also specify a custom destruction message with ```"damage "description": "A polygonal ceramic ballistic plate with a slightly concave profile. Its inner surface is coated with Ultra High Molecular Weight Polyethylene, and is labeled \"TOP\", while its outer surface is labeled \"STRIKE FACE\". This is intended to be worn in a ballistic vest and can withstand several high energy rifle rounds before breaking.", "weight": "2500 g", "volume": "1533 ml", - "price": 60000, - "price_postapoc": 100, + "price": "600 USD", + "price_postapoc": "1 USD", "material": [ "ceramic" ], "symbol": ",", "color": "dark_gray", @@ -463,8 +463,8 @@ Items with actions can be worn as armor. Usually you need to swap the type to `` "color": "blue", "name": { "str": "survivor headlamp" }, "description": "This is a custom-made LED headlamp reinforced to be more durable, brighter, and with a larger and more efficient battery pack. The adjustable strap allows it to be comfortably worn on your head or attached to your helmet. Use it to turn it on.", - "price": 6500, - "price_postapoc": 250, + "price": "65 USD", + "price_postapoc": "2 USD 50 cent", "material": [ "plastic", "aluminum" ], "flags": [ "OVERSIZE", "BELTED", "ALLOWS_NATURAL_ATTACKS" ], "weight": "620 g", diff --git a/doc/JSON_INFO.md b/doc/JSON_INFO.md index 1a9d756a1fa32..e62d0b220d56a 100644 --- a/doc/JSON_INFO.md +++ b/doc/JSON_INFO.md @@ -3365,7 +3365,7 @@ Weakpoints only match if they share the same id, so it's important to define the "longest_side": "15 cm", // Length of longest item dimension. Default is cube root of volume. "rigid": false, // For non-rigid items volume (and for worn items encumbrance) increases proportional to contents "insulation": 1, // (Optional, default = 1) If container or vehicle part, how much insulation should it provide to the contents -"price": 100, // Used when bartering with NPCs. For stackable items (ammo, comestibles) this is the price for stack_size charges. Can use string "cent" "USD" or "kUSD". +"price": "1 USD", // Used when bartering with NPCs. For stackable items (ammo, comestibles) this is the price for stack_size charges. Can use string "cent" "USD" or "kUSD". "price_postapoc": "1 USD", // Same as price but represent value post cataclysm. Can use string "cent" "USD" or "kUSD". "stackable": true, // This item can be stacked together, similarly to `charges` "degradation_multiplier": 0.8, // Controls how quickly an item degrades when taking damage. 0 = no degradation. Defaults to 1.0. @@ -4017,7 +4017,7 @@ Any Item can be a container. To add the ability to contain things to an item, yo "color": "light_gray", // ASCII character color "name": "hatchet", // In-game name displayed "description": "A one-handed hatchet. Makes a great melee weapon, and is useful both for cutting wood, and for use as a hammer.", // In-game description -"price": 95, // Used when bartering with NPCs. Can use string "cent" "USD" or "kUSD". + "price": "95 cent", // Used when bartering with NPCs. Can use string "cent" "USD" or "kUSD". "material": [ // Material types. See materials.json for possible options { "type": "iron", "portion": 2 }, // See Generic Item attributes for type and portion details { "type": "wood", "portion": 3 } @@ -4188,7 +4188,7 @@ Alternately, every item (book, tool, armor, even food) can be used as a gunmod i "color": "brown", // ASCII character color "name": "torch (lit)", // In-game name displayed "description": "A large stick, wrapped in gasoline soaked rags. This is burning, producing plenty of light", // In-game description -"price": 0, // Used when bartering with NPCs. Can use string "cent" "USD" or "kUSD". + "price": "0 cent", // Used when bartering with NPCs. Can use string "cent" "USD" or "kUSD". "material": [ { "type": "wood", "portion": 1 } ], // Material types. See materials.json for possible options. Also see Generic Item attributes for type and portion details "techniques": [ "FLAMING" ], // Combat techniques used by this tool "flags": [ "FIRE" ], // Indicates special effects diff --git a/doc/JSON_INHERITANCE.md b/doc/JSON_INHERITANCE.md index 4a6cc4b8c33dd..72ae616db89a1 100644 --- a/doc/JSON_INHERITANCE.md +++ b/doc/JSON_INHERITANCE.md @@ -10,7 +10,7 @@ In the following condensed example ```556``` ammo is derived from ```223``` ammo "type": "AMMO", "name": "5.56 NATO M855A1", "description": "5.56x45mm ammunition with a 62gr FMJ bullet...", - "price": 3500, + "price": "35 USD", "relative": { "damage": -2, "pierce": 4, diff --git a/doc/MODDING.md b/doc/MODDING.md index a9cae1dc9eaf6..190829f369ffc 100644 --- a/doc/MODDING.md +++ b/doc/MODDING.md @@ -133,7 +133,7 @@ Items are where you really want to read the [JSON_INFO.md](JSON_INFO.md) file, j "description": "A photo of a smiling family on a camping trip. One of the parents looks like a cleaner, happier version of the person you know.", "weight": "1 g", "volume": 0, - "price": 800, + "price": "8 USD", "material": [ "paper" ], "symbol": "*", "color": "light_gray" diff --git a/doc/NPCs.md b/doc/NPCs.md index 1e42e32ceccf3..2d065f960869f 100644 --- a/doc/NPCs.md +++ b/doc/NPCs.md @@ -68,7 +68,7 @@ Format: ], "shopkeeper_consumption_rates": "basic_shop_rates", "shopkeeper_price_rules": [ - { "item": "scrap", "price": 10000 }, + "price": 10000 }, ], "shopkeeper_blacklist": "test_blacklist", "restock_interval": "6 days", diff --git a/doc/POSTAPOC_PRICE_GUIDE.md b/doc/POSTAPOC_PRICE_GUIDE.md index 3221ef15f2c81..9826ebb28f133 100644 --- a/doc/POSTAPOC_PRICE_GUIDE.md +++ b/doc/POSTAPOC_PRICE_GUIDE.md @@ -42,31 +42,31 @@ pretty much the most anyone will be willing to spend on any one thing, no matter "id": "FMCNote", "description": "The Free Merchant Certified Note, also known by names such as a 'c-note' or 'merch', is a currency based on old American bills. Fifty dollar bills and larger are printed with a promissory note signed by the treasurer of the Free Merchants, along with a complex design. The note explains that this can be exchanged for food, water, and other services through the Free Merchants in the Refugee Center.", "name": { "str": "merch" }, - "price_postapoc": 250 + "price_postapoc": "2 USD 50 cent" }, { "id": "RobofacCoin", "name": { "str": "Hub 01 Gold Coin" }, "description": "This is a small but surprisingly heavy gold coin. One side is etched with circuitry and the other side reads 'Hub 01 exchange currency'.", - "price_postapoc": 5000 + "price_postapoc": "50 USD" }, { "id": "FlatCoin", "name": { "str": "FlatCoin" }, "description": "This is a coin that has been flattened in a novelty coin flattening machine. The machine has been somewhat crudely altered so that the design - which appears to once have been Mickey Mouse - is overlaid with a handwritten emblem of a book. There is some text that faintly reads 'Campus Exchange Token'.", - "price_postapoc": 250 + "price_postapoc": "2 USD 50 cent" }, { "id": "signed_chit", "name": { "str": "chit" }, "description": "This is a slip of paper signed by the issuer.", - "price_postapoc": 250 + "price_postapoc": "2 USD 50 cent" }, { "id": "icon", "name": { "str": "icon" }, "description": "This is a small picture, about the same size as an ID card, symbolizing a religious figure. On the back, there is a text that faintly reads 'New England Church Community'.", - "price_postapoc": 250 + "price_postapoc": "2 USD 50 cent" } ``` @@ -77,7 +77,7 @@ pretty much the most anyone will be willing to spend on any one thing, no matter "id": "antibiotics", "name": { "str_sp": "antibiotics" }, "description": "A strong antibacterial medication designed to prevent or stop the spread of infection. It's the safest way to cure any infections you might have. One dose lasts twelve hours.", - "price_postapoc": 40000, + "price_postapoc": "400 USD", "charges": 15, "stack_size": 200, "flags": [ "NPC_SAFE", "IRREPLACEABLE_CONSUMABLE" ] @@ -87,19 +87,19 @@ pretty much the most anyone will be willing to spend on any one thing, no matter "type": "TOOL", "name": { "str": "pair of bolt cutters", "str_pl": "pairs of bolt cutters" }, "description": "This is a large pair of bolt cutters. You could use them to cut padlocks or heavy gauge wire.", - "price_postapoc": 250, + "price_postapoc": "2 USD 50 cent", }, { "id": "armor_lightplate", "name": { "str": "plate armor" }, "description": "A suit of Gothic plate armor.", - "price_postapoc": 12000, + "price_postapoc": "120 USD", }, { "id": "bat_metal", "name": { "str": "aluminum bat" }, "description": "An aluminum baseball bat, lighter than a wooden bat and a little easier to swing as a result.", - "price_postapoc": 1250, + "price_postapoc": "12 USD 50 cent", }, ``` From 16670ea6b7e19c312f75b9c349cc90e40ae6dcc8 Mon Sep 17 00:00:00 2001 From: Maleclypse <54345792+Maleclypse@users.noreply.github.com> Date: Tue, 23 Apr 2024 08:04:47 -0500 Subject: [PATCH 3/6] Update keybindings.json (#73163) Update keybindings.json Update keybindings.json --- data/raw/keybindings.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/data/raw/keybindings.json b/data/raw/keybindings.json index 960b38eba75ae..50b4efe1ce67b 100644 --- a/data/raw/keybindings.json +++ b/data/raw/keybindings.json @@ -3141,8 +3141,9 @@ { "type": "keybinding", "id": "cast_spell", - "name": "Spellcasting", - "category": "DEFAULTMODE" + "name": "Supernatural Abilities", + "category": "DEFAULTMODE", + "bindings": [ { "input_method": "keyboard_any", "key": "]" } ] }, { "type": "keybinding", From cd999fc7f7790b23c80c12ac77e2e39ec5f1212d Mon Sep 17 00:00:00 2001 From: Brambor Date: Tue, 23 Apr 2024 15:15:45 +0200 Subject: [PATCH 4/6] d for debug (keybinding) (#73113) --- .github/ISSUE_TEMPLATE/bug_report.yaml | 4 ++-- src/action.cpp | 12 ++++++++---- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 18181c2a4e423..5d3708598a27a 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -22,7 +22,7 @@ body: attributes: label: Attach save file description: | - `ESC`Main Menu -> `b`Debug Menu -> `i`Info -> `!`Generate minimized save archive + `ESC`Main Menu -> `d`Debug Menu -> `i`Info -> `!`Generate minimized save archive placeholder: | Write N/A if not applicable. @@ -69,7 +69,7 @@ body: attributes: label: Versions and configuration description: | - `ESC`Main Menu -> `b`Debug Menu -> `i`Info -> `r`Generate game report + `ESC`Main Menu -> `d`Debug Menu -> `i`Info -> `r`Generate game report placeholder: | - OS: [e.g. iOS 8 or Windows 10 or Ubuntu 18.04] - Game Version: [e.g. d6ec466 (64-bit) ] diff --git a/src/action.cpp b/src/action.cpp index 55193407acfb4..e4abae23bd975 100644 --- a/src/action.cpp +++ b/src/action.cpp @@ -1052,9 +1052,13 @@ action_id handle_main_menu() const input_context ctxt = get_default_mode_input_context(); std::vector entries; - const auto REGISTER_ACTION = [&]( action_id name ) { - entries.emplace_back( name, true, hotkey_for_action( name, /*maximum_modifier_count=*/1 ), - ctxt.get_action_name( action_ident( name ) ) ); + const auto REGISTER_ACTION = [&]( action_id name, std::optional kb = std::nullopt ) { + std::optional hotkey = hotkey_for_action( name, /*maximum_modifier_count=*/1 ); + if( hotkey.has_value() || !kb.has_value() ) { + entries.emplace_back( name, true, hotkey, ctxt.get_action_name( action_ident( name ) ) ); + } else { + entries.emplace_back( name, true, kb.value(), ctxt.get_action_name( action_ident( name ) ) ); + } }; REGISTER_ACTION( ACTION_HELP ); @@ -1074,7 +1078,7 @@ action_id handle_main_menu() REGISTER_ACTION( ACTION_ACTIONMENU ); REGISTER_ACTION( ACTION_QUICKSAVE ); REGISTER_ACTION( ACTION_SAVE ); - REGISTER_ACTION( ACTION_DEBUG ); + REGISTER_ACTION( ACTION_DEBUG, 'd' ); uilist smenu; smenu.settext( _( "MAIN MENU" ) ); From 6a5a9b8d1228f9a157a7f0f36b9738f4ed22fbdf Mon Sep 17 00:00:00 2001 From: Brambor Date: Tue, 23 Apr 2024 15:16:51 +0200 Subject: [PATCH 5/6] choose-crafter-kb (#73100) --- data/raw/keybindings.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/data/raw/keybindings.json b/data/raw/keybindings.json index 50b4efe1ce67b..d6ee1e6dc046d 100644 --- a/data/raw/keybindings.json +++ b/data/raw/keybindings.json @@ -740,6 +740,13 @@ "name": "Show unread recipes on top", "bindings": [ { "input_method": "keyboard_any", "key": "u" } ] }, + { + "type": "keybinding", + "id": "CHOOSE_CRAFTER", + "category": "CRAFTING", + "name": "Choose crafter", + "bindings": [ { "input_method": "keyboard_any", "key": "c" } ] + }, { "type": "keybinding", "id": "CYCLE_BATCH", From 2e32db95af5e0be541194c44aa5153ac1de4f8e8 Mon Sep 17 00:00:00 2001 From: RenechCDDA <84619419+RenechCDDA@users.noreply.github.com> Date: Tue, 23 Apr 2024 09:19:18 -0400 Subject: [PATCH 6/6] Scope lighthouse quest variables appropriately (#73097) --- .../Lighthouse_Family/NPC_lighthouse_man.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/data/json/npcs/Lighthouse_Family/NPC_lighthouse_man.json b/data/json/npcs/Lighthouse_Family/NPC_lighthouse_man.json index f54006153d32d..1d83abb83200a 100644 --- a/data/json/npcs/Lighthouse_Family/NPC_lighthouse_man.json +++ b/data/json/npcs/Lighthouse_Family/NPC_lighthouse_man.json @@ -129,12 +129,12 @@ "topic": "TALK_lighthouse_man_cleaned", "condition": { "and": [ - { "npc_has_var": "count_cleaning_lighthouse_man", "value": "0" }, + { "math": [ "n_count_cleaning_lighthouse_man", "==", "0" ] }, "at_safe_space", { "npc_at_om_location": "lighthouse_ground" } ] }, - "effect": { "math": [ "npc_count_cleaning_lighthouse_man", "++" ] } + "effect": { "math": [ "n_count_cleaning_lighthouse_man", "++" ] } }, { "text": "Yes. First floor is clear.", @@ -146,7 +146,7 @@ { "npc_at_om_location": "lighthouse_z1" } ] }, - "effect": { "math": [ "npc_count_cleaning_lighthouse_man", "++" ] } + "effect": { "math": [ "n_count_cleaning_lighthouse_man", "++" ] } }, { "text": "Yes. Second floor is clear.", @@ -158,7 +158,7 @@ { "npc_at_om_location": "lighthouse_z2" } ] }, - "effect": { "math": [ "npc_count_cleaning_lighthouse_man", "++" ] } + "effect": { "math": [ "n_count_cleaning_lighthouse_man", "++" ] } }, { "text": "Yes. Third floor is clear.", @@ -170,7 +170,7 @@ { "npc_at_om_location": "lighthouse_z3" } ] }, - "effect": { "math": [ "npc_count_cleaning_lighthouse_man", "++" ] } + "effect": { "math": [ "n_count_cleaning_lighthouse_man", "++" ] } }, { "text": "Yes. Fourth floor is clear.", @@ -182,7 +182,7 @@ { "npc_at_om_location": "lighthouse_z4" } ] }, - "effect": { "math": [ "npc_count_cleaning_lighthouse_man", "++" ] } + "effect": { "math": [ "n_count_cleaning_lighthouse_man", "++" ] } }, { "text": "Yes. Top floor is clear.", @@ -193,7 +193,7 @@ { "npc_at_om_location": "lighthouse_z5" } ] }, - "effect": { "math": [ "npc_count_cleaning_lighthouse_man", "++" ] }, + "effect": { "math": [ "n_count_cleaning_lighthouse_man", "++" ] }, "topic": "TALK_lighthouse_man_cleaned_done" }, { @@ -205,7 +205,7 @@ { "npc_at_om_location": "lighthouse_ground" } ] }, - "effect": { "math": [ "npc_count_cleaning_lighthouse_man", "++" ] }, + "effect": { "math": [ "n_count_cleaning_lighthouse_man", "++" ] }, "topic": "TALK_MISSION_INQUIRE" }, { "text": "Not yet.", "topic": "TALK_DONE" } @@ -353,7 +353,7 @@ "effect": [ "follow_only", { "npc_first_topic": "TALK_lighthouse_man_cleaning" }, - { "math": [ "npc_count_cleaning_lighthouse_man", "=", "0" ] } + { "math": [ "n_count_cleaning_lighthouse_man", "=", "0" ] } ] }, "end": {