## About The Pull Request
Adds T, basically a boosted tea for mimes.
Can be made by mixing Nothing with Tea, trading off the brute healing
for toxin & drowsiness healing.


![dinky-export2](https://github.com/tgstation/tgstation/assets/66052067/8a81f719-8fd8-4dd2-be74-58ff2442ce94)
## Why It's Good For The Game


https://github.com/tgstation/tgstation/assets/66052067/9df3ee77-ff45-49ce-a56d-59004e4b308c
## Changelog
🆑 Wallem
add: T
/🆑
This commit is contained in:
Wallem
2023-08-10 20:49:35 -06:00
committed by GitHub
parent 6b19a8bf79
commit 5335bbfdf5
4 changed files with 27 additions and 0 deletions
@@ -174,3 +174,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)
@@ -1161,6 +1161,23 @@
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 ..()
/datum/reagent/consumable/hakka_mate
name = "Hakka-Mate"
description = "A Martian-made yerba mate soda, dragged straight out of the pits of a hacking convention."
@@ -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: 81 KiB

After

Width:  |  Height:  |  Size: 80 KiB