mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-20 05:55:11 +00:00
Removes a bunch of duplicated sprites by making it so vending machines can share the same panel overlay where applicable. Every single vending machine in the game had a unique copy pasted panel icon because one line of code said you need to do that.
26 lines
1.1 KiB
Plaintext
26 lines
1.1 KiB
Plaintext
/obj/machinery/vending/coffee
|
|
name = "\improper Solar's Best Hot Drinks"
|
|
desc = "A vending machine which dispenses hot drinks."
|
|
product_ads = "Have a drink!;Drink up!;It's good for you!;Would you like a hot joe?;I'd kill for some coffee!;The best beans in the galaxy.;Only the finest brew for you.;Mmmm. Nothing like a coffee.;I like coffee, don't you?;Coffee helps you work!;Try some tea.;We hope you like the best!;Try our new chocolate!;Admin conspiracies"
|
|
icon_state = "coffee"
|
|
icon_vend = "coffee-vend"
|
|
panel_type = "panel9"
|
|
products = list(
|
|
/obj/item/reagent_containers/food/drinks/coffee = 6,
|
|
/obj/item/reagent_containers/food/drinks/mug/tea = 6,
|
|
/obj/item/reagent_containers/food/drinks/mug/coco = 3
|
|
)
|
|
contraband = list(
|
|
/obj/item/reagent_containers/food/drinks/ice = 12
|
|
)
|
|
refill_canister = /obj/item/vending_refill/coffee
|
|
default_price = PAYCHECK_PRISONER
|
|
extra_price = PAYCHECK_ASSISTANT
|
|
payment_department = ACCOUNT_SRV
|
|
light_mask = "coffee-light-mask"
|
|
light_color = COLOR_DARK_MODERATE_ORANGE
|
|
|
|
/obj/item/vending_refill/coffee
|
|
machine_name = "Solar's Best Hot Drinks"
|
|
icon_state = "refill_joe"
|