Skip to content

Commit

Permalink
Adding grilled fish.
Browse files Browse the repository at this point in the history
  • Loading branch information
MistakeNot4892 committed Jan 18, 2024
1 parent 5d80ac2 commit d857b75
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
17 changes: 17 additions & 0 deletions code/modules/food/food/snacks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -907,6 +907,8 @@
bitesize = 2
drying_wetness = 20
dried_type = /obj/item/reagent_containers/food/snacks/jerky/fish
backyard_grilling_product = /obj/item/reagent_containers/food/snacks/grilledfish
backyard_grilling_announcement = "steams gently."
var/toxin_type = "carpotoxin"
var/toxin_amount = 3

Expand All @@ -927,6 +929,7 @@
desc = "A fillet of sivian fish meat."
filling_color = "#2c2cff"
color = "#2c2cff"
backyard_grilling_product = /obj/item/reagent_containers/food/snacks/grilledfish/sivian

/obj/item/reagent_containers/food/snacks/fishfingers
name = "fish fingers"
Expand Down Expand Up @@ -8159,3 +8162,17 @@
TASTE_STRING_DEFAULT = list("puffed minty qa'zal bread" = 1, "super-sweet kirani jelly" = 1),
SPECIES_TESHARI = list("puffed minty qa'zal bread" = 1, "rich kirani jelly" = 1)
)

/obj/item/reagent_containers/food/snacks/grilledfish
name = "grilled fish fillet"
desc = "A lightly grilled fish fillet."
icon_state = "grilledfish"
nutriment_amt = 8
bitesize = 2
nutriment_allergens = ALLERGEN_FISH
nutriment_desc = list("flaky grilled fish" = 5)

/obj/item/reagent_containers/food/snacks/grilledfish/sivian
desc = "A lightly grilled fish fillet. This one is blue; it's probably an illegally fished native species."
icon_state = "grilledsiffish"
nutriment_desc = list("flaky grilled fish" = 5, "mild, pungent sifsap" = 1)
13 changes: 13 additions & 0 deletions code/modules/food/recipes_grill.dm
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,19 @@
reagent_mix = RECIPE_REAGENT_REPLACE //Simplify end product
result = /obj/item/reagent_containers/food/snacks/honeytoast

/datum/recipe/grilled_fish
appliance = GRILL
items = list(
/obj/item/reagent_containers/food/snacks/carpmeat
)
result = /obj/item/reagent_containers/food/snacks/grilledfish

/datum/recipe/grilled_fish/sivian
items = list(
/obj/item/reagent_containers/food/snacks/carpmeat/fish/sif
)
result = /obj/item/reagent_containers/food/snacks/grilledfish/sivian

/datum/recipe/grilled_carp
appliance = GRILL
items = list(
Expand Down

0 comments on commit d857b75

Please sign in to comment.