diff --git a/code/modules/reagents/chemistry/reagents/drinks_reagents.dm b/code/modules/reagents/chemistry/reagents/drinks_reagents.dm index 50220275ced..10ee2403521 100644 --- a/code/modules/reagents/chemistry/reagents/drinks_reagents.dm +++ b/code/modules/reagents/chemistry/reagents/drinks_reagents.dm @@ -745,3 +745,13 @@ /datum/reagent/consumable/drink/fyrsskar_tears/on_mob_delete(mob/living/M) if(isskrell(M)) REMOVE_TRAIT(M, TRAIT_ALCOHOL_TOLERANCE, id) + +/datum/reagent/consumable/drink/lean + name = "Lean" + id = "lean" + description = "Also known as Purple Drank." + color = "#f249d6" + drink_icon = "lean" + drink_name = "Lean" + drink_desc = "Also known as Purple Drank." + taste_description = "sweet druggy soda" diff --git a/code/modules/reagents/chemistry/recipes/drinks_reactions.dm b/code/modules/reagents/chemistry/recipes/drinks_reactions.dm index f30391c17ce..589f6e270ab 100644 --- a/code/modules/reagents/chemistry/recipes/drinks_reactions.dm +++ b/code/modules/reagents/chemistry/recipes/drinks_reactions.dm @@ -1055,3 +1055,11 @@ required_reagents = list("limejuice" = 1, "lemon_lime" = 1, "orangejuice" = 1, "tequila" = 2) result_amount = 5 mix_sound = 'sound/goonstation/misc/drinkfizz.ogg' + +/datum/chemical_reaction/lean + name = "Lean" + id = "lean" + result = "lean" + required_reagents = list("space_drugs" = 1, "sodawater" = 1, "grapejuice" = 1) + result_amount = 5 + mix_sound = 'sound/goonstation/misc/drinkfizz.ogg' diff --git a/icons/obj/drinks.dmi b/icons/obj/drinks.dmi index 0aebd86db33..7f42ac0069e 100644 Binary files a/icons/obj/drinks.dmi and b/icons/obj/drinks.dmi differ