Coffee Shop Revamp

This commit is contained in:
Cerebulon
2019-12-22 22:54:01 -05:00
committed by VirgoBot
parent acc510a92e
commit 183b1d99b1
13 changed files with 258 additions and 36 deletions
@@ -1150,6 +1150,22 @@
..()
M.heal_organ_damage(0.5 * removed, 0)
/datum/reagent/drink/decaf
name = "Decaf Coffee"
id = "decaf"
description = "Coffee with all the wake-up sucked out."
taste_description = "bad coffee"
taste_mult = 1.3
color = "#482000"
adj_temp = 25
cup_icon_state = "cup_coffee"
cup_name = "cup of decaf"
cup_desc = "Basically just brown, bitter water."
glass_name = "decaf coffee"
glass_desc = "Basically just brown, bitter water."
/datum/reagent/drink/hot_coco
name = "Hot Chocolate"
id = "hot_coco"
@@ -73,6 +73,7 @@
cream spawn_reagent = "cream"
mint spawn_reagent = "mint"
berry spawn_reagent = "berryjuice"
decaf spawn_reagent = "decaf"
// ERT
inaprov spawn_reagent = "inaprovaline"
@@ -58,5 +58,5 @@
/obj/machinery/chemical_dispenser/bar_coffee
dispense_reagents = list(
"coffee", "cafe_latte", "soy_latte", "hot_coco", "milk", "cream", "tea", "ice",
"orangejuice", "lemonjuice", "limejuice", "berryjuice", "mint"
"orangejuice", "lemonjuice", "limejuice", "berryjuice", "mint", "decaf"
)
@@ -139,6 +139,7 @@
/obj/item/weapon/reagent_containers/chem_disp_cartridge/lemon,
/obj/item/weapon/reagent_containers/chem_disp_cartridge/lime,
/obj/item/weapon/reagent_containers/chem_disp_cartridge/berry,
/obj/item/weapon/reagent_containers/chem_disp_cartridge/decaf
)