From 270f307b7ccdf10e876447d35843063dc0489a9a Mon Sep 17 00:00:00 2001 From: Test Turtle Date: Sun, 13 Feb 2022 00:38:22 -0800 Subject: [PATCH] Pilk What it says on the tin. --- code/modules/food/drinkingglass/metaglass_ch.dm | 6 +++++- .../modules/reagents/reactions/instant/drinks_ch.dm | 9 +++++++++ code/modules/reagents/reagents/food_drinks_ch.dm | 13 +++++++++++++ 3 files changed, 27 insertions(+), 1 deletion(-) diff --git a/code/modules/food/drinkingglass/metaglass_ch.dm b/code/modules/food/drinkingglass/metaglass_ch.dm index 9d8abdf18e..f0bf9a3aa5 100644 --- a/code/modules/food/drinkingglass/metaglass_ch.dm +++ b/code/modules/food/drinkingglass/metaglass_ch.dm @@ -114,4 +114,8 @@ /datum/reagent/ethanol/arachnidslammer glass_icon_state = "arachnidslammer" - glass_icon_file = 'icons/obj/drinks_ch.dmi' \ No newline at end of file + glass_icon_file = 'icons/obj/drinks_ch.dmi' + +/datum/reagent/drink/pilk + glass_icon_state = "whiskeyglass" + glass_icon_file = 'icons/obj/drinks.dmi' \ No newline at end of file diff --git a/code/modules/reagents/reactions/instant/drinks_ch.dm b/code/modules/reagents/reactions/instant/drinks_ch.dm index 38b1ee1731..faa277381d 100644 --- a/code/modules/reagents/reactions/instant/drinks_ch.dm +++ b/code/modules/reagents/reactions/instant/drinks_ch.dm @@ -303,6 +303,15 @@ result = "enragedarachnidslammer" result_amount = 0.1 +/decl/chemical_reaction/instant/drinks/pilk + name = "Pilk" + id = "pilk" + result = "pilk" + required_reagents = list("milk" = 1, "cola" = 1) + result_amount = 2 + + + //YW drinks /decl/chemical_reaction/instant/drinks/lovepotion_yw name = "Strawberry Love Potion" diff --git a/code/modules/reagents/reagents/food_drinks_ch.dm b/code/modules/reagents/reagents/food_drinks_ch.dm index c11aa3a8f8..af0111de8e 100644 --- a/code/modules/reagents/reagents/food_drinks_ch.dm +++ b/code/modules/reagents/reagents/food_drinks_ch.dm @@ -552,6 +552,19 @@ M.add_chemical_effect(CE_PAINKILLER, 80 * chem_effective) M.add_chemical_effect(CE_SPEEDBOOST, 0) +/datum/reagent/drink/pilk + name = "Pilk" + id = "pilk" + description = "A forbidden mixture that dates back to the early days of space civilization, its creation is known to have caused at least one or two massacres." + taste_description = "heresy" + color = "#4C3100" + + glass_name = "Pilk" + glass_desc = "Why would you do this to yourself?" + + cup_name = "glass of Pilk" + cup_desc = "A glass of regret." + //////////////////////////////////////////////// /////////FOODSTUFF///////////////////////////// //////////////////////////////////////////////