Skip to content

Commit

Permalink
Add sushis (#8496)
Browse files Browse the repository at this point in the history
  • Loading branch information
Twomoon-Github committed Jun 28, 2024
1 parent f66722f commit 6337366
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 0 deletions.
27 changes: 27 additions & 0 deletions code/modules/cooking_with_jane/recipes/recipe.dm
Original file line number Diff line number Diff line change
Expand Up @@ -366,6 +366,33 @@
list(CWJ_USE_GRILL, J_MED, 20 SECONDS)
)

/datum/cooking_with_jane/recipe/nigiri
cooking_container = CUTTING_BOARD
product_type = /obj/item/reagent_containers/food/snacks/nigiri
step_builder = list(
list(CWJ_ADD_ITEM, /obj/item/reagent_containers/food/snacks/boiledrice, qmod=0.5),
list(CWJ_ADD_ITEM, /obj/item/reagent_containers/food/snacks/meat/carp, qmod=0.5),
)

/datum/cooking_with_jane/recipe/makiroll
cooking_container = CUTTING_BOARD
product_type = /obj/item/reagent_containers/food/snacks/makiroll
step_builder = list(
list(CWJ_ADD_PRODUCE, "ambrosia", qmod=0.2),
list(CWJ_ADD_ITEM, /obj/item/reagent_containers/food/snacks/boiledrice, qmod=0.5),
list(CWJ_ADD_ITEM, /obj/item/reagent_containers/food/snacks/meat/carp, qmod=0.5),
list(CWJ_ADD_REAGENT, "soysauce", 5),
)

/datum/cooking_with_jane/recipe/maki
cooking_container = CUTTING_BOARD
product_type = /obj/item/reagent_containers/food/snacks/maki
product_count = 4
step_builder = list(
list(CWJ_ADD_ITEM, /obj/item/reagent_containers/food/snacks/makiroll, qmod=0.5),
list(CWJ_USE_TOOL, QUALITY_CUTTING, 15)
)

//**Cereals and Grains**//
//missing: poppyprezel
/datum/cooking_with_jane/recipe/bread
Expand Down
30 changes: 30 additions & 0 deletions code/modules/reagents/reagent_containers/food/snacks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -3953,3 +3953,33 @@
bitesize = 3
preloaded_reagents = list("slimejelly" = 5)
matter = list(MATERIAL_BIOMATTER = 33)

/obj/item/reagent_containers/food/snacks/nigiri
name = "nigiri"
desc = "Raw cut of fishes on top of rice, a Shimatengoku overpriced delicacy."
icon_state = "nigiri"
bitesize = 2
nutriment_amt = 5
preloaded_reagents = list("protein" = 5)
nutriment_desc = list("raw fish" = 1, "rice" = 2)
taste_tag = list(UMAMI_FOOD)

/obj/item/reagent_containers/food/snacks/makiroll
name = "maki roll"
desc = "A long roll of fish, rice and vegetables, to cut into multiple makis."
icon_state = "makiroll"
bitesize = 5
nutriment_amt = 8
preloaded_reagents = list("protein" = 6)
nutriment_desc = list("raw fish" = 1, "rice" = 2, "soy sauce" = 2)
taste_tag = list(UMAMI_FOOD)

/obj/item/reagent_containers/food/snacks/maki
name = "maki"
desc = "Rice, fish, vegetables and soy sauce held together, another expensive Shimatengoku meal."
icon_state = "maki"
bitesize = 2
nutriment_amt = 4
preloaded_reagents = list("protein" = 2)
nutriment_desc = list("raw fish" = 1, "rice" = 1, "soy sauce" = 1)
taste_tag = list(UMAMI_FOOD)
Binary file modified icons/obj/food.dmi
Binary file not shown.

0 comments on commit 6337366

Please sign in to comment.