mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 16:47:13 +01:00
T (#77442)
## 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.  ## 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:
@@ -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 |
Reference in New Issue
Block a user