mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-26 06:22:26 +01:00
a bunch of changes to Reade and New Gibson origin stuff following lore expansions
134 lines
5.0 KiB
Plaintext
134 lines
5.0 KiB
Plaintext
|
|
// see code/datums/recipe.dm
|
|
|
|
/singleton/recipe/humankabob
|
|
items = list(
|
|
/obj/item/stack/rods,
|
|
/obj/item/reagent_containers/food/snacks/meat/human,
|
|
/obj/item/reagent_containers/food/snacks/meat/human
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/human/kabob
|
|
|
|
/singleton/recipe/monkeykabob
|
|
items = list(
|
|
/obj/item/stack/rods,
|
|
/obj/item/reagent_containers/food/snacks/meat,
|
|
/obj/item/reagent_containers/food/snacks/meat
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/monkeykabob
|
|
|
|
/singleton/recipe/syntikabob
|
|
items = list(
|
|
/obj/item/stack/rods,
|
|
/obj/item/reagent_containers/food/snacks/meat/syntiflesh,
|
|
/obj/item/reagent_containers/food/snacks/meat/syntiflesh
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/monkeykabob
|
|
|
|
/singleton/recipe/tofukabob
|
|
items = list(
|
|
/obj/item/stack/rods,
|
|
/obj/item/reagent_containers/food/snacks/tofu,
|
|
/obj/item/reagent_containers/food/snacks/tofu
|
|
)
|
|
result = /obj/item/reagent_containers/food/snacks/tofukabob
|
|
|
|
/singleton/recipe/readerolls
|
|
fruit = list("cabbage" = 1, "corn" = 1)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/mashedpotato,
|
|
/obj/item/reagent_containers/food/snacks/crabmeat
|
|
)
|
|
reagents = list(/singleton/reagent/drink/limejuice = 2)
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
result = /obj/item/reagent_containers/food/snacks/readerolls
|
|
|
|
// Salads
|
|
|
|
/singleton/recipe/applesalad
|
|
fruit = list("cabbage" = 2, "tomato" = 1, "carrot" = 1, "apple" = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/applesalad
|
|
|
|
/singleton/recipe/aesirsalad
|
|
fruit = list("goldapple" = 1, "ambrosiadeus" = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/aesirsalad
|
|
|
|
/singleton/recipe/validsalad
|
|
fruit = list("potato" = 1, "ambrosia" = 3)
|
|
items = list(/obj/item/reagent_containers/food/snacks/meatball)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/validsalad
|
|
|
|
/singleton/recipe/validsalad/make_food(var/obj/container as obj)
|
|
. = ..(container)
|
|
for (var/obj/item/reagent_containers/food/snacks/salad/validsalad/being_cooked in .)
|
|
being_cooked.reagents.del_reagent(/singleton/reagent/toxin)
|
|
|
|
/singleton/recipe/tabboulehsalad
|
|
fruit = list("mint" = 3, "tomato" = 1, "wheat" = 1, "lemon" = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/tabboulehsalad
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
|
|
/singleton/recipe/tunasalad
|
|
fruit = list("mint" = 1)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/fish
|
|
)
|
|
reagents = list(/singleton/reagent/nutriment/mayonnaise = 5)
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
result = /obj/item/reagent_containers/food/snacks/salad/tunasalad
|
|
|
|
/singleton/recipe/tunapastasalad
|
|
fruit = list("mint" = 1)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/boiledspaghetti,
|
|
/obj/item/reagent_containers/food/snacks/fish
|
|
)
|
|
reagents = list(/singleton/reagent/nutriment/mayonnaise = 5)
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
result = /obj/item/reagent_containers/food/snacks/salad/tunapasta
|
|
|
|
/singleton/recipe/potato_salad //ported from tg
|
|
fruit = list("potato" = 2, "onion" = 1)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/boiledegg,
|
|
/obj/item/reagent_containers/food/snacks/boiledegg
|
|
)
|
|
reagents = list(/singleton/reagent/nutriment/mayonnaise = 5)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/potato_salad
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
|
|
/singleton/recipe/fruit_salad //ported from tg
|
|
fruit = list("orange" = 1, "apple" = 1, "grapes" = 1, "watermelon slice" = 2)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/fruit_salad
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
|
|
/singleton/recipe/caesar_salad //ported from tg with a changed recipe
|
|
fruit = list("cabbage" = 1, "garlic" = 1)
|
|
items = list(
|
|
/obj/item/reagent_containers/food/snacks/fish,
|
|
/obj/item/reagent_containers/food/snacks/cheesewedge
|
|
)
|
|
reagents = list(/singleton/reagent/drink/lemonjuice = 5, /singleton/reagent/nutriment/protein/egg = 3)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/caesar_salad
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
|
|
/singleton/recipe/citrus_delight //ported from tg
|
|
fruit = list("orange" = 1, "lemon" = 1, "lime" = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/citrus_delight
|
|
|
|
/singleton/recipe/spring_salad //ported from tg
|
|
fruit = list("peas" = 1, "carrot" = 1, "cabbage" = 2)
|
|
reagents = list(/singleton/reagent/sodiumchloride = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/spring_salad
|
|
|
|
/singleton/recipe/jungle_salad //ported from tg
|
|
fruit = list("banana" = 2, "apple" = 1, "grapes" = 1, "watermelon slice" = 2)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/jungle_salad
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|
|
|
|
/singleton/recipe/tossed_salad
|
|
fruit = list("cabbage" = 1, "tomato" = 1, "cucumber" = 1)
|
|
reagents = list(/singleton/reagent/sodiumchloride = 1)
|
|
result = /obj/item/reagent_containers/food/snacks/salad/tossed_salad
|
|
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
|