mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
Adds a new drink: Peppermint Patty from Archer! (#38427)
* Sprites! * S_______ W________ * Candyland snuck into pr... Check! * removal of candyland extract * candyland but not the sprites yet. * fixes :) * Whoops, lets fix that too
This commit is contained in:
committed by
yogstation13-bot
parent
a6bd989cd8
commit
d7d178342b
@@ -633,6 +633,13 @@
|
||||
required_catalysts = list("enzyme" = 5)
|
||||
mix_message = "The rice grains ferment into a clear, sweet-smelling liquid."
|
||||
|
||||
/datum/chemical_reaction/peppermint_patty
|
||||
name = "Peppermint Patty"
|
||||
id = "peppermint_patty"
|
||||
results = list("peppermint_patty" = 10)
|
||||
required_reagents = list("hot_coco" = 6, "creme_de_cacao" = 1, "creme_de_menthe" = 1, "vodka" = 1, "menthol" = 1)
|
||||
mix_message = "The coco turns mint green just as the strong scent hits your nose."
|
||||
|
||||
/datum/chemical_reaction/alexander
|
||||
name = "Alexander"
|
||||
id = "alexander"
|
||||
|
||||
@@ -60,7 +60,7 @@
|
||||
|
||||
/datum/emote/living/cough/can_run_emote(mob/user, status_check = TRUE)
|
||||
. = ..()
|
||||
if(user.reagents.get_reagent("menthol"))
|
||||
if(user.reagents.get_reagent("menthol") || user.reagents.get_reagent("peppermint_patty"))
|
||||
return FALSE
|
||||
|
||||
/datum/emote/living/dance
|
||||
|
||||
@@ -1559,6 +1559,21 @@ All effects don't start immediately, but rather get worse over time; the rate is
|
||||
glass_name = "cup of sake"
|
||||
glass_desc = "A traditional cup of sake."
|
||||
|
||||
/datum/reagent/consumable/ethanol/peppermint_patty
|
||||
name = "Peppermint Patty"
|
||||
id = "peppermint_patty"
|
||||
description = "This lightly alcoholic drink combines the benefits of menthol and cocoa."
|
||||
color = "#45ca7a"
|
||||
taste_description = "mint and chocolate"
|
||||
boozepwr = 25
|
||||
glass_icon_state = "peppermint_patty"
|
||||
glass_name = "Peppermint Patty"
|
||||
glass_desc = "A boozy minty hot cocoa that warms your belly on a cold night."
|
||||
|
||||
/datum/reagent/consumable/ethanol/peppermint_patty/on_mob_life(mob/living/M)
|
||||
M.adjust_bodytemperature(5 * TEMPERATURE_DAMAGE_COEFFICIENT, 0, BODYTEMP_NORMAL)
|
||||
..()
|
||||
|
||||
/datum/reagent/consumable/ethanol/alexander
|
||||
name = "Alexander"
|
||||
id = "alexander"
|
||||
@@ -1591,7 +1606,6 @@ All effects don't start immediately, but rather get worse over time; the rate is
|
||||
to_chat(L,"<span class='notice'>You notice [mighty_shield] looks worn again. Weird.</span>")
|
||||
..()
|
||||
|
||||
|
||||
/datum/reagent/consumable/ethanol/sidecar
|
||||
name = "Sidecar"
|
||||
id = "sidecar"
|
||||
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 70 KiB |
Reference in New Issue
Block a user