Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
## 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
:cl: Wallem
add: T
/:cl:
  • Loading branch information
Wallemations authored and AlbertNanotracen committed Apr 13, 2024
1 parent 2afca7a commit 3db10fa
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,3 +178,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)
17 changes: 17 additions & 0 deletions code/modules/reagents/chemistry/reagents/drinks/drink_reagents.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1176,6 +1176,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."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 modified icons/obj/drinks/mixed_drinks.dmi
Binary file not shown.

0 comments on commit 3db10fa

Please sign in to comment.