diff --git a/code/modules/reagents/oldchem/chemical_reaction/chemical_reaction_drink.dm b/code/modules/reagents/oldchem/chemical_reaction/chemical_reaction_drink.dm index 4479d24aa7c..c394af15a4e 100644 --- a/code/modules/reagents/oldchem/chemical_reaction/chemical_reaction_drink.dm +++ b/code/modules/reagents/oldchem/chemical_reaction/chemical_reaction_drink.dm @@ -509,6 +509,14 @@ result_amount = 2 mix_sound = 'sound/goonstation/misc/drinkfizz.ogg' +/datum/chemical_reaction/cafe_mocha + name = "Cafe Mocha" + id = "cafe_mocha" + result = "cafe_mocha" + required_reagents = list("cafe_latte" = 1, "chocolate" = 1) + result_amount = 2 + mix_sound = 'sound/goonstation/misc/drinkfizz.ogg' + /datum/chemical_reaction/acidspit name = "Acid Spit" id = "acidspit" diff --git a/code/modules/reagents/oldchem/reagents/drink/reagents_drink.dm b/code/modules/reagents/oldchem/reagents/drink/reagents_drink.dm index 45e0e2e8ac2..d52743c6ae6 100644 --- a/code/modules/reagents/oldchem/reagents/drink/reagents_drink.dm +++ b/code/modules/reagents/oldchem/reagents/drink/reagents_drink.dm @@ -241,6 +241,12 @@ M.adjustBruteLoss(-1) return +/datum/reagent/drink/coffee/cafe_latte/cafe_mocha + name = "Cafe Mocha" + id = "cafe_mocha" + description = "The perfect blend of coffe, milk, and chocolate." + color = "#673629" + /datum/reagent/drink/tea name = "Tea" id = "tea" diff --git a/code/modules/reagents/reagent_containers/food/drinks/drinkingglass.dm b/code/modules/reagents/reagent_containers/food/drinks/drinkingglass.dm index c7351d1c3fd..981bb7148a2 100644 --- a/code/modules/reagents/reagent_containers/food/drinks/drinkingglass.dm +++ b/code/modules/reagents/reagent_containers/food/drinks/drinkingglass.dm @@ -459,6 +459,10 @@ icon_state = "cafe_latte" name = "Cafe Latte" desc = "A nice, strong and refreshing beverage while you are reading." + if("cafe_mocha") + icon_state = "cafe_latte" + name = "Cafe Mocha" + desc = "The perfect blend of coffe, milk, and chocolate." if("acidspit") icon_state = "acidspitglass" name = "Acid Spit"