mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-28 10:01:58 +00:00
Does a value-wise refactor of crates and bounties in order to scale the value of these imports and exports to the value of crate exports (500 credits each). Then, I have adjusted the value of crate exports to 200 credits down from 500 to place the most standard unit of profit within cargo to a scale within that of roundstart paygrades currently on station. (350-1400 credits). This effectively balances one of the biggest disparities left within the in-game economy, which is that cargo's price scales have really never been re-balanced with the considerations of on station prices, and have been still to the same scale as when they were based on cargo points 3 years ago. While admittedly some prices in vendors were scale to those original cargo values, so many of them weren't that it warranted a massive rebalance PR in order to places the scale of these items within an appropriate range of their intended user's cost values.
72 lines
3.3 KiB
Plaintext
72 lines
3.3 KiB
Plaintext
/datum/bounty/item/mining/goliath_steaks
|
|
name = "Lava-Cooked Goliath Steaks"
|
|
description = "Admiral Pavlov has gone on hunger strike ever since the canteen started serving only monkey and monkey byproducts. She is demanding lava-cooked Goliath steaks."
|
|
reward = CARGO_CRATE_VALUE * 10
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/food/meat/steak/goliath)
|
|
|
|
/datum/bounty/item/mining/goliath_boat
|
|
name = "Goliath Hide Boat"
|
|
description = "Commander Menkov wants to participate in the annual Lavaland Regatta. He is asking your shipwrights to build the swiftest boat known to man."
|
|
reward = CARGO_CRATE_VALUE * 20
|
|
wanted_types = list(/obj/vehicle/ridden/lavaboat)
|
|
|
|
/datum/bounty/item/mining/bone_oar
|
|
name = "Bone Oars"
|
|
description = "Commander Menkov requires oars to participate in the annual Lavaland Regatta. Ship a pair over."
|
|
reward = CARGO_CRATE_VALUE * 8
|
|
required_count = 2
|
|
wanted_types = list(/obj/item/oar)
|
|
|
|
/datum/bounty/item/mining/bone_axe
|
|
name = "Bone Axe"
|
|
description = "Station 12 has had their fire axes stolen by marauding clowns. Ship them a bone axe as a replacement."
|
|
reward = CARGO_CRATE_VALUE * 15
|
|
wanted_types = list(/obj/item/fireaxe/boneaxe)
|
|
|
|
/datum/bounty/item/mining/bone_armor
|
|
name = "Bone Armor"
|
|
description = "Station 14 has volunteered their lizard crew for ballistic armor testing. Ship over some bone armor."
|
|
reward = CARGO_CRATE_VALUE * 10
|
|
wanted_types = list(/obj/item/clothing/suit/armor/bone)
|
|
|
|
/datum/bounty/item/mining/skull_helmet
|
|
name = "Skull Helmet"
|
|
description = "Station 42's Head of Security has her birthday tomorrow! We want to suprise her with a fashionable skull helmet."
|
|
reward = CARGO_CRATE_VALUE * 8
|
|
wanted_types = list(/obj/item/clothing/head/helmet/skull)
|
|
|
|
/datum/bounty/item/mining/bone_talisman
|
|
name = "Bone Talismans"
|
|
description = "Station 14's Research Director claims that pagan bone talismans protect their wearer. Ship them a few so they can start testing."
|
|
reward = CARGO_CRATE_VALUE * 15
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/clothing/accessory/talisman)
|
|
|
|
/datum/bounty/item/mining/bone_dagger
|
|
name = "Bone Daggers"
|
|
description = "Central Command's canteen is undergoing budget cuts. Ship over some bone daggers so our Chef can keep working."
|
|
reward = CARGO_CRATE_VALUE * 10
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/kitchen/knife/combat/bone)
|
|
|
|
/datum/bounty/item/mining/polypore_mushroom
|
|
name = "Mushroom Bowl"
|
|
description = "Lieutenant Jeb dropped his favorite mushroom bowl. Cheer him up by shipping a new one, will you?"
|
|
reward = CARGO_CRATE_VALUE * 15 //5x mushroom shavings
|
|
wanted_types = list(/obj/item/reagent_containers/glass/bowl/mushroom_bowl)
|
|
|
|
/datum/bounty/item/mining/inocybe_mushroom
|
|
name = "Mushroom Caps"
|
|
description = "Our botanist claims that he can distill tasty liquor from absolutely any plant. Let's see what he'll do with Inocybe mushroom caps."
|
|
reward = CARGO_CRATE_VALUE * 9
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/food/grown/ash_flora/mushroom_cap)
|
|
|
|
/datum/bounty/item/mining/porcini_mushroom
|
|
name = "Mushroom Leaves"
|
|
description = "Porcini mushroom leaves are rumored to have healing properties. Our researchers want to put that claim to the test."
|
|
reward = CARGO_CRATE_VALUE * 9
|
|
required_count = 3
|
|
wanted_types = list(/obj/item/food/grown/ash_flora/mushroom_leaf)
|