mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
* 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>
211 lines
7.4 KiB
Plaintext
211 lines
7.4 KiB
Plaintext
/datum/cooking/recipe/ebi_maki
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliceable/ebi_maki
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiled_shrimp),
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiled_shrimp),
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiled_shrimp),
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiled_shrimp),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/ikura_maki
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliceable/ikura_maki
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/salmon),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/salmon),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/salmon),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/salmon),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/inari_maki
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliceable/inari_maki
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/food/fried_tofu),
|
|
PCWJ_ADD_ITEM(/obj/item/food/fried_tofu),
|
|
PCWJ_ADD_ITEM(/obj/item/food/fried_tofu),
|
|
PCWJ_ADD_ITEM(/obj/item/food/fried_tofu),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/masago_maki
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliceable/masago_maki
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/goldfish),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/goldfish),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/goldfish),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/goldfish),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/sake_maki
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliceable/sake_maki
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/food/salmonmeat),
|
|
PCWJ_ADD_ITEM(/obj/item/food/salmonmeat),
|
|
PCWJ_ADD_ITEM(/obj/item/food/salmonmeat),
|
|
PCWJ_ADD_ITEM(/obj/item/food/salmonmeat),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/smoked_salmon_maki
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliceable/smoked_salmon_maki
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/food/salmonsteak),
|
|
PCWJ_ADD_ITEM(/obj/item/food/salmonsteak),
|
|
PCWJ_ADD_ITEM(/obj/item/food/salmonsteak),
|
|
PCWJ_ADD_ITEM(/obj/item/food/salmonsteak),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/sushi_ebi
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliced/sushi_ebi
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiled_shrimp),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/sushi_ikura
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliced/sushi_ikura
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/salmon),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/sushi_inari
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliced/sushi_inari
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/food/fried_tofu),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/sushi_masago
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliced/sushi_masago
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/goldfish),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/sushi_sake
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliced/sushi_sake
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/food/salmonmeat),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/sushi_smoked_salmon
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliced/sushi_smoked_salmon
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/food/salmonsteak),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/sushi_tai
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliced/sushi_tai
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/food/catfishmeat),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/sushi_tobiko
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliced/sushi_tobiko
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/shark),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/sushi_tobiko_egg
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliced/sushi_tobiko_egg
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/sliced/sushi_tobiko),
|
|
PCWJ_ADD_ITEM(/obj/item/food/egg),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/tai_maki
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliceable/tai_maki
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/food/catfishmeat),
|
|
PCWJ_ADD_ITEM(/obj/item/food/catfishmeat),
|
|
PCWJ_ADD_ITEM(/obj/item/food/catfishmeat),
|
|
PCWJ_ADD_ITEM(/obj/item/food/catfishmeat),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/tobiko_egg_maki
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliceable/tobiko_egg_maki
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/sliced/sushi_tobiko),
|
|
PCWJ_ADD_ITEM(/obj/item/food/sliced/sushi_tobiko),
|
|
PCWJ_ADD_ITEM(/obj/item/food/sliced/sushi_tobiko),
|
|
PCWJ_ADD_ITEM(/obj/item/food/sliced/sushi_tobiko),
|
|
PCWJ_ADD_ITEM(/obj/item/food/egg),
|
|
PCWJ_ADD_ITEM(/obj/item/food/egg),
|
|
PCWJ_ADD_ITEM(/obj/item/food/egg),
|
|
PCWJ_ADD_ITEM(/obj/item/food/egg),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|
|
/datum/cooking/recipe/tobiko_maki
|
|
container_type = /obj/item/reagent_containers/cooking/sushimat
|
|
product_type = /obj/item/food/sliceable/tobiko_maki
|
|
catalog_category = COOKBOOK_CATEGORY_SUSHI
|
|
steps = list(
|
|
PCWJ_ADD_ITEM(/obj/item/food/boiledrice),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/shark),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/shark),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/shark),
|
|
PCWJ_ADD_ITEM(/obj/item/fish_eggs/shark),
|
|
PCWJ_ADD_ITEM(/obj/item/stack/seaweed),
|
|
)
|
|
|