diff --git a/code/modules/food_and_drinks/recipes/drinks_recipes.dm b/code/modules/food_and_drinks/recipes/drinks_recipes.dm index f807a491..df581f65 100644 --- a/code/modules/food_and_drinks/recipes/drinks_recipes.dm +++ b/code/modules/food_and_drinks/recipes/drinks_recipes.dm @@ -911,3 +911,9 @@ id = /datum/reagent/consumable/ethanol/cum_in_a_hot_tub/semen results = list(/datum/reagent/consumable/ethanol/cum_in_a_hot_tub/semen = 3) required_reagents = list(/datum/reagent/consumable/ethanol/vodka = 2, /datum/reagent/consumable/semen = 1, /datum/reagent/consumable/ethanol/irish_cream = 0.1) + +/datum/chemical_reaction/orange_creamsicle + name = "Orange Creamsical" + id = /datum/reagent/consumable/orange_creamsicle + results = list(/datum/reagent/consumable/orange_creamsicle = 4) + required_reagents = list(/datum/reagent/consumable/vanilla = 1, /datum/reagent/consumable/milk = 1, /datum/reagent/consumable/ice = 1, /datum/reagent/consumable/orangejuice = 1) \ No newline at end of file diff --git a/code/modules/reagents/chemistry/reagents/drink_reagents.dm b/code/modules/reagents/chemistry/reagents/drink_reagents.dm index ed5fba9d..d0fbb62f 100644 --- a/code/modules/reagents/chemistry/reagents/drink_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drink_reagents.dm @@ -991,3 +991,13 @@ M.set_drugginess(75) M.apply_status_effect(/datum/status_effect/throat_soothed) ..() + +/datum/reagent/consumable/orange_creamsicle + name = "Orange Creamsicle" + description = "A Summer time drink that can be frozen and eaten or Drinked from a glass!" + color = "#ffb46e" // rgb(255, 180, 110) + taste_description = "ice cream and orange soda" + glass_icon_state = "orangecreamsicle" + glass_desc = "A Summer time drink that can be frozen and eaten or Drinked from a glass!" + glass_name = "Orange Creamsicle" + hydration = 4 diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index 61ad164d..823e77ec 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ