Files
Paradise/code/modules/cooking/recipes/deep_fryer_recipes.dm
T
f9ade844c9 Kitchen rework part 1: machines and recipes. (#28277)
* Kitchen rework part 1: machines and recipes.

* update oldstation

* update updatepaths script number

* fix blank icon test

* remove old deep fryer completely

* fix duped recipes and recipe datum names

* add chef PDA cart to chefdrobe

* nerf grill wood consumption rate

* multiply food for cooking machine rating

* fix runtime

* add cookware to syndie base and oldstation

* remove dupe burger recipe, update syndie/oldstation setups

* nerf potency quality award

* buff burn/ignite times, remove pointless on_fire flag

* more grill woodburn nerf

* meh

* try and unfuck timing issues

* more fixes and icon updates

* more fixes

* more review changes

* fix linter

* disable pcwj debug

* fix grill and deep fryer overlays

* fix timers with no containers

* attempt to fix reagent adding issues

* more cleanups

* allow rped usage

* grammar, null checks, reagent display

* PDA updates, map updates

* fix mats values

* new panel sprites

* recipe fixes, add prep bowl

* revert unused icon file changes

* move this to mesh with smith TM

* remove food quality for now

* New sprites, autochef.

* fix examine text

* reduce oven cook times

* lots of fixes

* fix autochef recipes that start with reagents

* prevent shenanigans

* megapatch 1

* block ingredients behind oven door

* PDA app improvements

* remove unused proc

* fixes for cookbook, descontructions, completed steps

* allow empty containers with a tracker to be claimed

* allow reclaiming

* autochef reliability fixes

* autochef reliability fixes

* fix quality product count

* update updatepaths script

* better stack handling

* more fixes for stacks and reagents

* timers no longer turn off burners automatically

* autochef turn offs and make sure we can see output storage

* add microwave recipe for roundremoving player brains

* Apply suggestions from code review

Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
Signed-off-by: warriorstar-orion <orion@snowfrost.garden>

* burza review 1

* Apply suggestions from code review

Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
Signed-off-by: warriorstar-orion <orion@snowfrost.garden>

* fix berry muffin name while i'm here

* grill -> microwave in new tests

* grill -> microwave in new tests, but actually for realsies

* i definitely know what i'm doing

* redundant attack chain setting

* add examine text about clearing buffer

* remove unused vars and start improving docs

---------

Signed-off-by: warriorstar-orion <orion@snowfrost.garden>
Co-authored-by: Burzah <116982774+Burzah@users.noreply.github.com>
2025-03-23 04:59:08 +00:00

507 lines
17 KiB
Plaintext

/datum/cooking/recipe/apple_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/apple
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("applejuice", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/apple_jelly_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/apple/jelly
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("applejuice", 5),
PCWJ_ADD_REAGENT("berryjuice", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/cherryapple_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/apple/jelly/cherry
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("applejuice", 5),
PCWJ_ADD_REAGENT("cherryjelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/apple_slime_jelly_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/apple/jelly/slime
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("applejuice", 5),
PCWJ_ADD_REAGENT("slimejelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/blumpkin_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/blumpkin
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("blumpkinjuice", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/jelly_blumpkin_berry_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/blumpkin/jelly
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("blumpkinjuice", 5),
PCWJ_ADD_REAGENT("berryjuice", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/cherry_blumpkin
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/blumpkin/jelly/cherry
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("blumpkinjuice", 5),
PCWJ_ADD_REAGENT("cherryjelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/slime_blumpkin_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/blumpkin/jelly/slime
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("blumpkinjuice", 5),
PCWJ_ADD_REAGENT("slimejelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/bungo_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/bungo
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("bungojuice", 5),
PCWJ_ADD_REAGENT("frostoil", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/jelly_bungo_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/bungo/jelly
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("bungojuice", 5),
PCWJ_ADD_REAGENT("frostoil", 5),
PCWJ_ADD_REAGENT("berryjuice", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/cherry_bungo_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/bungo/jelly/cherry
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("bungojuice", 5),
PCWJ_ADD_REAGENT("frostoil", 5),
PCWJ_ADD_REAGENT("cherryjelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/slime_bungo_jelly_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/bungo/jelly/slime
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("bungojuice", 5),
PCWJ_ADD_REAGENT("frostoil", 5),
PCWJ_ADD_REAGENT("slimejelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/caramel_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/caramel
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_ITEM(/obj/item/food/candy/caramel),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/jelly_caramel_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/caramel/jelly
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_ITEM(/obj/item/food/candy/caramel),
PCWJ_ADD_REAGENT("berryjuice", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/cherry_caramel_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/caramel/jelly/cherry
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_ITEM(/obj/item/food/candy/caramel),
PCWJ_ADD_REAGENT("cherryjelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/slime_caramel_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/caramel/jelly/slime
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_ITEM(/obj/item/food/candy/caramel),
PCWJ_ADD_REAGENT("slimejelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/chaosdonut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/chaos
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/dough),
PCWJ_ADD_REAGENT("frostoil", 5),
PCWJ_ADD_REAGENT("capsaicin", 5),
PCWJ_ADD_REAGENT("sugar", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/chocolate_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/chocolate
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_ITEM(/obj/item/food/chocolatebar),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/jelly_choco_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/chocolate/jelly
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_ITEM(/obj/item/food/chocolatebar),
PCWJ_ADD_REAGENT("berryjuice", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/cherry_choco_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/chocolate/jelly/cherry
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_ITEM(/obj/item/food/chocolatebar),
PCWJ_ADD_REAGENT("cherryjelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/slime_chocolate_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/chocolate/jelly/slime
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_ITEM(/obj/item/food/chocolatebar),
PCWJ_ADD_REAGENT("slimejelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/dough),
PCWJ_ADD_REAGENT("sugar", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/sprinkles
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/sprinkles
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/dough),
PCWJ_ADD_REAGENT("sugar", 5),
PCWJ_ADD_REAGENT("sprinkles", 2),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/jellydonut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/jelly
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/dough),
PCWJ_ADD_REAGENT("berryjuice", 5),
PCWJ_ADD_REAGENT("sugar", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/cherry_jelly_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/jelly/cherryjelly
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/dough),
PCWJ_ADD_REAGENT("cherryjelly", 5),
PCWJ_ADD_REAGENT("sugar", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/slimejelly_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/jelly/slimejelly
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/dough),
PCWJ_ADD_REAGENT("slimejelly", 5),
PCWJ_ADD_REAGENT("sugar", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/matcha_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/matcha
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("teapowder", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/jelly_matcha_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/matcha/jelly
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("teapowder", 5),
PCWJ_ADD_REAGENT("berryjuice", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/cherry_matcha_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/matcha/jelly/cherry
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("teapowder", 5),
PCWJ_ADD_REAGENT("cherryjelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/slime_matcha_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/matcha/jelly/slime
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("teapowder", 5),
PCWJ_ADD_REAGENT("slimejelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/meat_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/meat
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/cookiedough),
PCWJ_ADD_ITEM(/obj/item/food/meat),
PCWJ_ADD_REAGENT("ketchup", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/pink_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/pink
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("berryjuice", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/pink_jelly_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/pink/jelly
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("berryjuice", 5),
PCWJ_ADD_REAGENT("sugar", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/pink_cherry_jelly_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/pink/jelly/cherry
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("berryjuice", 5),
PCWJ_ADD_REAGENT("cherryjelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/pink_slime_jelly_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/pink/jelly/slime
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_REAGENT("berryjuice", 5),
PCWJ_ADD_REAGENT("slimejelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/spaceman_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/spaceman
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_PRODUCE(/obj/item/food/grown/trumpet),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/jelly_spaceman_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/spaceman/jelly
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_PRODUCE(/obj/item/food/grown/trumpet),
PCWJ_ADD_REAGENT("berryjuice", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/cherry_spaceman_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/spaceman/jelly/cherry
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_PRODUCE(/obj/item/food/grown/trumpet),
PCWJ_ADD_REAGENT("cherryjelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/slime_spaceman_jelly_donut
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/donut/spaceman/jelly/slime
catalog_category = COOKBOOK_CATEGORY_DONUTS
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/donut, exact = TRUE),
PCWJ_ADD_PRODUCE(/obj/item/food/grown/trumpet),
PCWJ_ADD_REAGENT("slimejelly", 5),
PCWJ_USE_DEEP_FRYER(20 SECONDS),
)
/datum/cooking/recipe/deepfryer_friedbanana
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/friedbanana
catalog_category = COOKBOOK_CATEGORY_DESSERTS
steps = list(
PCWJ_ADD_PRODUCE(/obj/item/food/grown/banana),
PCWJ_USE_DEEP_FRYER(10 SECONDS),
)
/datum/cooking/recipe/carrotfries
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/carrotfries
catalog_category = COOKBOOK_CATEGORY_SIDES
steps = list(
PCWJ_ADD_PRODUCE(/obj/item/food/grown/carrot/wedges),
PCWJ_USE_DEEP_FRYER(10 SECONDS),
)
/datum/cooking/recipe/chimichanga
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/chimichanga
catalog_category = COOKBOOK_CATEGORY_MEAT
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/burrito),
PCWJ_USE_DEEP_FRYER(10 SECONDS),
)
/datum/cooking/recipe/corn_chips
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/cornchips
catalog_category = COOKBOOK_CATEGORY_SIDES
steps = list(
PCWJ_ADD_PRODUCE(/obj/item/food/grown/corn),
PCWJ_USE_DEEP_FRYER(10 SECONDS),
)
/datum/cooking/recipe/fried_tofu
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/fried_tofu
catalog_category = COOKBOOK_CATEGORY_SIDES
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/tofu),
PCWJ_USE_DEEP_FRYER(10 SECONDS),
)
/datum/cooking/recipe/fries
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/fries
catalog_category = COOKBOOK_CATEGORY_SIDES
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/rawsticks),
PCWJ_USE_DEEP_FRYER(10 SECONDS),
)
/datum/cooking/recipe/onionrings
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/onionrings
catalog_category = COOKBOOK_CATEGORY_SIDES
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/sliced/onion_slice),
PCWJ_USE_DEEP_FRYER(10 SECONDS),
)
/datum/cooking/recipe/potato_chips
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/chips
catalog_category = COOKBOOK_CATEGORY_SIDES
steps = list(
PCWJ_ADD_PRODUCE(/obj/item/food/grown/potato/wedges),
PCWJ_USE_DEEP_FRYER(10 SECONDS),
)
/datum/cooking/recipe/shrimp
container_type = /obj/item/reagent_containers/cooking/deep_basket
product_type = /obj/item/food/fried_shrimp
catalog_category = COOKBOOK_CATEGORY_SEAFOOD
steps = list(
PCWJ_ADD_ITEM(/obj/item/food/shrimp),
PCWJ_USE_DEEP_FRYER(10 SECONDS),
)