Teshari/Skrell food expansion (#8888)

* food

* adjustments

* more fixes

* adjustments 4 ater
This commit is contained in:
Greenjoe12345
2023-02-06 00:31:00 +00:00
committed by GitHub
parent 13c028088e
commit d6083cd262
34 changed files with 820 additions and 14 deletions

View File

@@ -1264,3 +1264,17 @@
result = "ayahuasca"
required_reagents = list("water" = 1, "dmt" = 2, "honey" = 1)
result_amount = 3
/decl/chemical_reaction/instant/drinks/dyntea
name = "Dyn tea"
id = "dynhot"
result = "dynhot"
required_reagents = list("dynjuice" = 1, "water" = 4)
result_amount = 5
/decl/chemical_reaction/instant/drinks/dynicetea
name = "Dyn iced tea"
id = "dyncold"
result = "dyncold"
required_reagents = list("dynjuice" = 1, "ice" = 2, "sodawater" = 2)
result_amount = 5

View File

@@ -180,4 +180,17 @@
var/location = get_turf(holder.my_atom)
for(var/i = 1, i <= created_volume, i++)
new /obj/item/reagent_containers/food/snacks/spreads/butter(location)
return
return
/decl/chemical_reaction/instant/food/qazal_dough
name = "Qa'zal dough"
id = "qazal_dough"
result = null
required_reagents = list("qazal_flour" = 10, "gauli_juice" = 5)
result_amount = 1
/decl/chemical_reaction/instant/food/qazal_dough/on_reaction(var/datum/reagents/holder, var/created_volume)
var/location = get_turf(holder.my_atom)
for(var/i = 1, i <= created_volume, i++)
new /obj/item/reagent_containers/food/snacks/qazal_dough(location)
return

View File

@@ -4464,3 +4464,59 @@
nutriment_factor = 2
glass_name = "kvass"
glass_desc = "A hearty glass of Slavic brew."
//Querbalak stuff
/datum/reagent/drink/juice/dyn
name = "Dyn juice"
id = "dynjuice"
description = "Juice from a Qerr'balakian herb. Good for you, but usually diluted for potability."
taste_description = "astringent menthol"
color = "#00e0e0"
glass_name = "dyn juice"
glass_desc = "Juice from a Qerr'balakian herb. Good for you, but usually diluted for potability."
sugary = FALSE
/datum/reagent/drink/tea/dyn
name = "Dyn tea"
id = "dynhot"
description = "A traditional skrellian drink with documented medicinal properties."
color = "#00e0e0"
taste_description = "peppermint water"
allergen_type = null //no caffine here
glass_name = "dyn tea"
glass_desc = "An old-fashioned, but traditional skrellian drink with documented medicinal properties."
cup_name = "cup of dyn tea"
cup_desc = "An old-fashioned, but traditional skrellian drink with documented medicinal properties."
/datum/reagent/drink/tea/icetea/dyn
name = "Dyn iced tea"
id = "dyncold"
description = "A modern spin on an old formula. Good for you!"
color = "#00e0e0"
taste_description = "fizzy mint tea"
allergen_type = null
glass_name = "dyn iced tea"
glass_desc = "A modern spin on an old formula. Good for you!"
/datum/reagent/nutriment/qazal_flour
name = "Qa'zal flour"
id = "qazal_flour"
description = "Harvested from ground qa'zal, this is one of the main ingredients in qa'zal bread."
taste_description = "chalky, sweet dryness"
reagent_state = SOLID
nutriment_factor = 1
color = "#c499bc"
/datum/reagent/nutriment/kirani_jelly
name = "Kirani jelly"
id = "kirani_jelly"
description = "Sticky, sweet jelly from ground kiriani fruits."
taste_description = "ultra-sweet jelly"
color = "#993c5c"
/datum/reagent/drink/gauli_juice
name = "Ga'uli juice"
id = "gauli_juice"
description = "Juice from a ga'uli pod, used in skrellian and teshari cooking."
color = "#6f83a6"
taste_description = "mintyness"