[MIRROR] T [MDB IGNORE] (#23010)

* T

* Update drink_reagents.dm

* Update drink_reagents.dm

---------

Co-authored-by: Wallem <66052067+Wallemations@users.noreply.github.com>
Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
This commit is contained in:
SkyratBot
2023-08-11 08:06:05 -04:00
committed by GitHub
co-authored by Wallem Bloop
parent f8dd1a127c
commit a17d0f1ee3
4 changed files with 27 additions and 0 deletions
@@ -176,3 +176,6 @@
results = list(/datum/reagent/consumable/mississippi_queen = 50)
required_reagents = list(/datum/reagent/consumable/tomatojuice = 15, /datum/reagent/consumable/mayonnaise = 10, /datum/reagent/consumable/soysauce = 5, /datum/reagent/consumable/vinegar = 2, /datum/reagent/consumable/capsaicin = 10, /datum/reagent/consumable/coco = 2)
/datum/chemical_reaction/drink/t_letter
results = list(/datum/reagent/consumable/t_letter = 2)
required_reagents = list(/datum/reagent/consumable/nothing = 1, /datum/reagent/consumable/tea = 1)
@@ -1160,3 +1160,20 @@
drinker.adjust_hallucinations(60 SECONDS * REM * seconds_per_tick)
return ..()
/datum/reagent/consumable/t_letter
name = "T"
description = "You expected to find this in a soup, but this is fine too."
color = "#583d09" // rgb: 88, 61, 9
taste_description = "one of your 26 favorite letters"
chemical_flags = REAGENT_CAN_BE_SYNTHESIZED
/datum/reagent/consumable/t_letter/on_mob_life(mob/living/carbon/affected_mob, seconds_per_tick, times_fired)
if(!HAS_MIND_TRAIT(affected_mob, TRAIT_MIMING))
return ..()
affected_mob.set_silence_if_lower(MIMEDRINK_SILENCE_DURATION)
affected_mob.adjust_drowsiness(-6 SECONDS * REM * seconds_per_tick)
affected_mob.AdjustSleeping(-40 * REM * seconds_per_tick)
if(affected_mob.getToxLoss() && SPT_PROB(25, seconds_per_tick))
affected_mob.adjustToxLoss(-2, FALSE, required_biotype = affected_biotype)
return ..()
@@ -73,3 +73,10 @@
name = "glass of mushroom tea"
desc = "Oddly savoury for a drink."
icon_state = "mushroom_tea_glass"
/datum/glass_style/drinking_glass/t_letter
required_drink_type = /datum/reagent/consumable/t_letter
name = "glass of T"
desc = "The 20th."
icon = 'icons/obj/drinks/mixed_drinks.dmi'
icon_state = "tletter"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 69 KiB

After

Width:  |  Height:  |  Size: 66 KiB