mirror of
https://github.com/PolarisSS13/Polaris.git
synced 2026-08-24 21:56:55 +01:00
Teshari/Skrell food expansion (#8888)
* food * adjustments * more fixes * adjustments 4 ater
This commit is contained in:
@@ -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
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user