diff --git a/code/modules/reagents/chemistry/reagents/alcohol.dm b/code/modules/reagents/chemistry/reagents/alcohol.dm index bbaa9baf0ed..53b91e19fd1 100644 --- a/code/modules/reagents/chemistry/reagents/alcohol.dm +++ b/code/modules/reagents/chemistry/reagents/alcohol.dm @@ -1518,3 +1518,17 @@ drink_name = "Pina Colada" drink_desc = "After taking a sip, you feel contractually obligated to start singing a certain song of the same name." taste_description = "tart and tropical pineapple" + +/datum/reagent/consumable/ethanol/bilkshake + name = "Bilkshake" + id = "bilkshake" + description = "An upsetting treat that combines beer and milk." + color = "#7B5835" // rgb: (123, 88, 53) + nutriment_factor = 2 * REAGENTS_METABOLISM + alcohol_perc = 0.1 + drink_icon = "bilkshake" + drink_name = "Bilkshake" + drink_desc = "Your mind bubbles and oozes as it tries to comprehend what it's seeing. What the HELL is this?" + taste_description = "bilk, cream, and cold tears" + + diff --git a/code/modules/reagents/chemistry/recipes/drinks.dm b/code/modules/reagents/chemistry/recipes/drinks.dm index c5f4a2b63bf..1a13f186f3c 100644 --- a/code/modules/reagents/chemistry/recipes/drinks.dm +++ b/code/modules/reagents/chemistry/recipes/drinks.dm @@ -950,3 +950,13 @@ required_reagents = list("rum" = 3, "pineapplejuice" = 2, "cream" = 1) result_amount = 6 mix_sound = 'sound/goonstation/misc/drinkfizz.ogg' + +/datum/chemical_reaction/bilkshake + name = "Bilkshake" + id = "bilkshake" + result = "bilkshake" + required_reagents = list("cream" = 1, "bilk" = 2, "ice" = 2) + result_amount = 5 + + + diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index f079c4eaf15..f719334eef2 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ