Skip to content

Commit

Permalink
reflavors hot cocoa and adds soy and cafe lattes to the coffee vendor
Browse files Browse the repository at this point in the history
  • Loading branch information
Zevotech committed Jan 4, 2024
1 parent ae6dd64 commit 72a315f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
17 changes: 15 additions & 2 deletions code/modules/food_and_drinks/drinks/drinks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -254,13 +254,26 @@
list_reagents = list(/datum/reagent/consumable/tea = 30)

/obj/item/reagent_containers/food/drinks/mug/coco
name = "Dutch hot coco"
desc = "Made in Space South America."
name = "Pearl Hot Chocolate"
desc = "A rich delicacy from the humid regions of Terra."
list_reagents = list(/datum/reagent/consumable/hot_coco = 15, /datum/reagent/consumable/sugar = 5)
foodtype = SUGAR
resistance_flags = FREEZE_PROOF
custom_price = 120

/obj/item/reagent_containers/food/drinks/cafelatte
name = "cafe latte"
desc = "A nice, strong and refreshing beverage while you're reading."
icon_state = "cafe_latte"
list_reagents = list(/datum/reagent/consumable/cafe_latte = 30)
custom_price = 200

/obj/item/reagent_containers/food/drinks/soylatte
name = "soy latte"
desc = "A nice and refreshing beverage while you're reading."
icon_state = "soy_latte"
list_reagents = list(/datum/reagent/consumable/soy_latte = 30)
custom_price = 200

/obj/item/reagent_containers/food/drinks/dry_ramen
name = "cup ramen"
Expand Down
3 changes: 3 additions & 0 deletions code/modules/vending/coffee.dm
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@
/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)
premium = list(
/obj/item/reagent_containers/food/drinks/cafelatte = 3,
/obj/item/reagent_containers/food/drinks/soylatte = 3)
contraband = list(/obj/item/reagent_containers/food/drinks/ice = 12)
refill_canister = /obj/item/vending_refill/coffee
default_price = 45
Expand Down

0 comments on commit 72a315f

Please sign in to comment.