mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-07-20 04:17:33 +01:00
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:
@@ -81,6 +81,7 @@
|
||||
chews["Weibi's Breeze chewing tobacco"] = /obj/item/storage/chewables/tobacco/dyn
|
||||
chews["box of Nico-Tine gum"] = /obj/item/storage/box/fancy/chewables/tobacco/nico
|
||||
chews["Ha'zana chewing koko"] = /obj/item/storage/chewables/tobacco/koko
|
||||
chews["tin of solar salve"] = /obj/item/storage/chewables/solar_salve
|
||||
gear_tweaks += new /datum/gear_tweak/path(chews)
|
||||
|
||||
/datum/gear/drugs_meds/leaves
|
||||
|
||||
@@ -168,19 +168,22 @@
|
||||
if(istype(spawned_cup) && spawned_cup.reagents)
|
||||
spawned_cup.reagents.set_temperature(T0C + 45)
|
||||
|
||||
/datum/gear/chatins
|
||||
display_name = "konyang-cha tins"
|
||||
description = "Tins of tea leaves made by Konyang-cha."
|
||||
/datum/gear/teatins
|
||||
display_name = "tea tin selection"
|
||||
description = "A selction of various tins of tea."
|
||||
cost = 1
|
||||
path = /obj/item/storage/box/unique/tea
|
||||
|
||||
/datum/gear/chatins/New()
|
||||
/datum/gear/teatins/New()
|
||||
..()
|
||||
var/list/chatins = list()
|
||||
chatins["sencha cha-tin"] = /obj/item/storage/box/unique/tea
|
||||
chatins["tieguanyin cha-tin"] = /obj/item/storage/box/unique/tea/tieguanyin
|
||||
chatins["jaekseol cha-tin"] = /obj/item/storage/box/unique/tea/jaekseol
|
||||
gear_tweaks += new /datum/gear_tweak/path(chatins)
|
||||
var/list/teatins = list()
|
||||
teatins["sencha cha-tin"] = /obj/item/storage/box/unique/tea
|
||||
teatins["tieguanyin cha-tin"] = /obj/item/storage/box/unique/tea/tieguanyin
|
||||
teatins["jaekseol cha-tin"] = /obj/item/storage/box/unique/tea/jaekseol
|
||||
teatins["messa's tear tea"] = /obj/item/storage/box/unique/tea/messa
|
||||
teatins["ras'nif tea"] = /obj/item/storage/box/unique/tea/rasnif
|
||||
|
||||
gear_tweaks += new /datum/gear_tweak/path(teatins)
|
||||
|
||||
/datum/gear/teapots
|
||||
display_name = "teapots"
|
||||
|
||||
Reference in New Issue
Block a user