mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-10 15:45:05 +01:00
ea883deda7
## About The Pull Request Based on feedback from #94903, this PR decreases the cost of multitools from the youtool vendor, as well as increases the quantity available from the premium section from 2 to 4. The cost has been adjusted from 300 credits -> 150 credits each. This change is being atomized out of the linked PR above, but is otherwise relatively simple. ## Why It's Good For The Game To quote the previous PR this was atomized out of: > Multitools are considered to be standard job equipment for about 1/3 of the jobs on station, and the jobs that don't have multitools, assistants included, typically will make obtaining one part of their roundstart routine. It was looking into this that led me to learn that multitools are currently sitting at 300 credits, which, while expensive, just means that roundstart players are more tempted to just break into or ask cargo/engineering for a multitool instead of ever buying one, and for good reason. It's too good to pass up, especially when it's only one door or plastic flap away for most players. > So, to try and incentivize people to buy them from vendors over the alternative, I've decreased the price to be within the range for regular crew, but expensive enough for assistants so that they're encouraged to look for/make a few credits, or wait a moment or two before they jump into them. ## Changelog 🆑 balance: Multitools cost has been decreased from youtool vendors, and their stock increased (150 credits, 4 stock). /🆑
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
/obj/machinery/vending/tool
|
|
name = "\improper YouTool"
|
|
desc = "Tools for tools."
|
|
icon_state = "tool"
|
|
icon_deny = "tool-deny"
|
|
panel_type = "panel11"
|
|
light_mask = "tool-light-mask"
|
|
products = list(
|
|
/obj/item/stack/cable_coil = 10,
|
|
/obj/item/crowbar = 5,
|
|
/obj/item/weldingtool = 3,
|
|
/obj/item/wirecutters = 5,
|
|
/obj/item/wrench = 5,
|
|
/obj/item/analyzer = 5,
|
|
/obj/item/t_scanner = 5,
|
|
/obj/item/screwdriver = 5,
|
|
/obj/item/flashlight/glowstick = 3,
|
|
/obj/item/flashlight/glowstick/red = 3,
|
|
/obj/item/flashlight = 5,
|
|
/obj/item/clothing/ears/earmuffs = 1,
|
|
)
|
|
contraband = list(
|
|
/obj/item/clothing/gloves/color/fyellow = 2,
|
|
)
|
|
premium = list(
|
|
/obj/item/storage/belt/utility = 2,
|
|
/obj/item/multitool = 4,
|
|
/obj/item/weldingtool/hugetank = 2,
|
|
/obj/item/clothing/head/utility/welding = 2,
|
|
/obj/item/clothing/gloves/color/yellow = 1,
|
|
)
|
|
refill_canister = /obj/item/vending_refill/youtool
|
|
default_price = PAYCHECK_CREW
|
|
extra_price = PAYCHECK_COMMAND * 1.5
|
|
payment_department = ACCOUNT_ENG
|
|
|
|
/obj/item/vending_refill/youtool
|
|
machine_name = "YouTool"
|
|
icon_state = "refill_engi"
|