mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-22 06:56:31 +00:00
* Clean some small details on most vending machine product lists. * Update code/modules/vending/engivend.dm * Update code/modules/vending/games.dm * Update wardrobes.dm Co-authored-by: GuillaumePrata <55374212+GuillaumePrata@users.noreply.github.com> Co-authored-by: Tom <8881105+tf-4@users.noreply.github.com>
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_LOWER
|
|
extra_price = PAYCHECK_CREW
|
|
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"
|