mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
Cavity Time! - Ports 46 Desserts from TG (#26540)
* recipe paths
* splits frozen deserts
* d320b129f8 Merge branch 'master' into cavitytime
* agony
* woe, food upon ye
* edit
* unhecks the .dme
* unduplicates ur grape tart
* da camel
* whoops
* give bungo a tang
* da review
* review 2, electric boogaloo
* yogurt
Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com>
Signed-off-by: Mitchs98 <mitchs98@gmail.com>
* yogurt, but for real this time.
---------
Signed-off-by: Mitchs98 <mitchs98@gmail.com>
Co-authored-by: Contrabang <91113370+Contrabang@users.noreply.github.com>
This commit is contained in:
@@ -76,7 +76,8 @@
|
||||
/obj/item/food/grown/pumpkin = list("pumpkinjuice" = 0),
|
||||
/obj/item/food/grown/apple = list("applejuice" = 0),
|
||||
/obj/item/food/grown/grapes = list("grapejuice" = 0),
|
||||
/obj/item/food/grown/pineapple = list("pineapplejuice" = 0)
|
||||
/obj/item/food/grown/pineapple = list("pineapplejuice" = 0),
|
||||
/obj/item/food/grown/bungofruit = list("bungojuice" = 0)
|
||||
)
|
||||
|
||||
var/list/dried_items = list(
|
||||
|
||||
@@ -140,6 +140,15 @@
|
||||
drink_desc = "Apple juice. Maybe it would have been better in a pie..."
|
||||
taste_description = "apple juice"
|
||||
|
||||
/datum/reagent/consumable/bungojuice
|
||||
name = "Bungo Juice"
|
||||
id = "bungojuice"
|
||||
description = "Exotic! You feel like you are on vacation already."
|
||||
color = "#F9E43D"
|
||||
drink_name = "Bungo Juice"
|
||||
drink_desc = "Exotic! You feel like you are on vacation already."
|
||||
taste_description = "succulent bungo with an acidic poisonous tang"
|
||||
|
||||
/datum/reagent/consumable/drink/watermelonjuice
|
||||
name = "Watermelon Juice"
|
||||
id = "watermelonjuice"
|
||||
|
||||
@@ -679,6 +679,22 @@
|
||||
if(volume >= 5 && !isspaceturf(T))
|
||||
new /obj/item/food/weirdcheesewedge(T)
|
||||
|
||||
/datum/reagent/consumable/cheese_curds
|
||||
name = "Cheese Curds"
|
||||
id = "cheese_curds"
|
||||
description = "Some mushed up cheese curds. You're not quite sure why you did this."
|
||||
reagent_state = SOLID
|
||||
color = "#FFFF00"
|
||||
taste_description = "salty cheese"
|
||||
|
||||
/datum/reagent/consumable/yogurt
|
||||
name = "yogurt"
|
||||
id = "yogurt"
|
||||
description = "Some yogurt, produced by bacterial fermentation of milk. Yum."
|
||||
reagent_state = LIQUID
|
||||
color = "#FFFFFF"
|
||||
taste_description = "yogurt"
|
||||
|
||||
/datum/reagent/consumable/beans
|
||||
name = "Refried beans"
|
||||
id = "beans"
|
||||
|
||||
@@ -77,6 +77,26 @@
|
||||
for(var/i = 1, i <= created_volume, i++)
|
||||
new /obj/item/food/sliceable/cheesewheel(location)
|
||||
|
||||
/datum/chemical_reaction/cheese_curds
|
||||
name = "Cheese Curds"
|
||||
id = "cheese_curds"
|
||||
result = null
|
||||
required_reagents = list("milk" = 15, "vinegar" = 5, "cream" = 5)
|
||||
result_amount = 1
|
||||
min_temp = T0C + 80
|
||||
|
||||
/datum/chemical_reaction/cheese_curds/on_reaction(datum/reagents/holder, created_volume)
|
||||
var/location = get_turf(holder.my_atom)
|
||||
for(var/i = 1, i <= created_volume, i++)
|
||||
new /obj/item/food/cheese_curds(location)
|
||||
|
||||
/datum/chemical_reaction/yogurt
|
||||
name = "Yogurt"
|
||||
id = "yogurt"
|
||||
result = "yogurt"
|
||||
required_reagents = list("milk" = 10, "virusfood" = 2)
|
||||
result_amount = 10
|
||||
|
||||
/datum/chemical_reaction/syntiflesh
|
||||
name = "Syntiflesh"
|
||||
id = "syntiflesh"
|
||||
|
||||
Reference in New Issue
Block a user