mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-21 12:02:31 +01:00
* the voices win in the end * cleanup * changelog * secure.dm hates me * make_exact_fit() in initialize instead of whatever was happening before
42 lines
1.5 KiB
Plaintext
42 lines
1.5 KiB
Plaintext
/singleton/recipe/popcorn
|
|
appliance = SAUCEPAN
|
|
fruit = list("corn" = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/popcorn
|
|
|
|
// Jellies
|
|
/singleton/recipe/amanitajelly
|
|
appliance = SAUCEPAN
|
|
reagents = list(/singleton/reagent/water = 5, /singleton/reagent/alcohol/vodka = 5, /singleton/reagent/toxin/amatoxin = 5)
|
|
result = /obj/item/reagent_containers/food/snacks/amanitajelly
|
|
|
|
/singleton/recipe/amanitajelly/make_food(var/obj/container as obj)
|
|
. = ..(container)
|
|
for (var/obj/item/reagent_containers/food/snacks/amanitajelly/being_cooked in .)
|
|
being_cooked.reagents.del_reagent(/singleton/reagent/toxin/amatoxin)
|
|
|
|
// Ports from the microwave... yeah
|
|
|
|
/singleton/recipe/mint
|
|
appliance = SAUCEPAN
|
|
reagents = list(/singleton/reagent/sugar = 5, /singleton/reagent/frostoil = 5)
|
|
result = /obj/item/reagent_containers/food/snacks/mint
|
|
|
|
/singleton/recipe/porkbowl
|
|
appliance = SAUCEPAN
|
|
reagents = list(/singleton/reagent/water = 5, /singleton/reagent/nutriment/rice = 10)
|
|
reagent_mix = RECIPE_REAGENT_REPLACE
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/bacon
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/porkbowl
|
|
|
|
/singleton/recipe/crab_legs
|
|
appliance = SAUCEPAN | POT
|
|
reagents = list(/singleton/reagent/water = 10, /singleton/reagent/sodiumchloride = 1)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/crabmeat,
|
|
/obj/item/reagent_containers/food/snacks/spreads
|
|
)
|
|
reagent_mix = RECIPE_REAGENT_REPLACE
|
|
result = /obj/item/reagent_containers/food/snacks/crab_legs
|