Tajaran tea and drug expansion (#21651)

Adds two tajaran teas to the game, Messa's Tear and ras'nif. These can
be found in the loadout and the bar, as well as random warehouse spawns.
Adds solar salve, a legal herbal substance from Adhomai, found in the
loadout and warehouse spawns.
Also performs some tweaks to the Konyang teas in order to make brewing
teas with them easier.

---------

Signed-off-by: Greenjoe12345 <33647525+Greenjoe12345@users.noreply.github.com>
This commit is contained in:
Greenjoe12345
2026-01-28 06:43:44 +00:00
committed by GitHub
parent 1eee97ade2
commit d6653ee3aa
18 changed files with 313 additions and 30 deletions
@@ -164,3 +164,30 @@
/obj/item/seeds/sugartree
seed_type = "sugartree"
/obj/item/reagent_containers/food/snacks/grown/messas_tear_tea
name = "messa's tear leaves"
desc = "Messa's tears are a medicinal herb found across Adhomai and its many Twin Suns churches. \
Its leaves, while traditionally used for treating burns, is a common choice for making traditional teas."
plantname = "mtear"
icon = 'icons/obj/item/reagent_containers/teaware.dmi'
icon_state = "messas_tear"
color = "#4CC5C7"
/obj/item/reagent_containers/food/snacks/grown/messas_tear_tea/Initialize()
. = ..()
reagents.clear_reagents()
reagents.add_reagent(/singleton/reagent/nutriment/teagrounds/messa, 5)
/obj/item/reagent_containers/food/snacks/grown/messas_tear_tea/update_desc()
return
/obj/item/reagent_containers/food/snacks/grown/messas_tear_tea/afterattack(atom/target, mob/user, proximity, params)
if(proximity && target.is_open_container() && target.reagents)
if(!target.reagents.total_volume)
to_chat(user, SPAN_WARNING("You can't steep tea inside of an empty pot!"))
return
to_chat(user, SPAN_NOTICE("You steep \the [src] inside \the [target]."))
reagents.trans_to(target, reagents.total_volume)
qdel(src)
@@ -46,7 +46,7 @@
name = "sencha"
seed_name = "sencha leaves"
display_name = "sencha plant"
chems = list(/singleton/reagent/nutriment/teagrounds/sencha = list(4,9))
chems = list(/singleton/reagent/nutriment/teagrounds/sencha = list(5,9))
/datum/seed/sencha/setup_traits()
..()
@@ -66,7 +66,7 @@
name = "tieguanyin"
seed_name = "tieguanyin leaves"
display_name = "tieguanyin plant"
chems = list(/singleton/reagent/nutriment/teagrounds/tieguanyin = list(3,8))
chems = list(/singleton/reagent/nutriment/teagrounds/tieguanyin = list(5,8))
/datum/seed/tieguanyin/setup_traits()
..()
@@ -86,7 +86,7 @@
name = "jaekseol"
seed_name = "jaekseol leaves"
display_name = "jaekseol plant"
chems = list(/singleton/reagent/nutriment/teagrounds/jaekseol = list(4,7))
chems = list(/singleton/reagent/nutriment/teagrounds/jaekseol = list(5,7))
/datum/seed/jaekseol/setup_traits()
..()