mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-25 06:00:16 +01:00
[MIRROR] Fish quality fixes and recipes. (#28884)
* Fish quality fixes and recipes. (#84996) ## About The Pull Request In this PR I am adding the ability for freshly caught fish to be of the finest quality (excluding a few exceptions like donkfish, they nasty...) This means you chefs won't be losing quality from fresh fish, That makes no sense to me.  I am also adding a recipe to create jellyfish soups with fresh fillets and adding the ability to crush koibeans into fake fish (like butterbeans and meatwheat).   ## Why It's Good For The Game Fresh food shouldn't bring down the quality of your other ingredients, making more fish accessable for cooking and some usable in the first place. ## Changelog 🆑 qol: made fish better quality when butchered, smushy koibeans and useable gunner jellyfish. /🆑 * Fish quality fixes and recipes. --------- Co-authored-by: xXPawnStarrXx <53197594+xXPawnStarrXx@users.noreply.github.com>
This commit is contained in:
co-authored by
xXPawnStarrXx
parent
ca15054483
commit
f974583ae0
@@ -34,6 +34,7 @@
|
||||
foodtypes = SEAFOOD
|
||||
eatverbs = list("bite", "chew", "gnaw", "swallow", "chomp")
|
||||
w_class = WEIGHT_CLASS_SMALL
|
||||
starting_reagent_purity = 1.0
|
||||
|
||||
/obj/item/food/fishmeat/carp
|
||||
name = "carp fillet"
|
||||
@@ -88,6 +89,7 @@
|
||||
name = "donkfillet"
|
||||
desc = "The dreaded donkfish fillet. No sane spaceman would eat this, and it does not get better when cooked."
|
||||
icon_state = "donkfillet"
|
||||
starting_reagent_purity = 0.3
|
||||
|
||||
/obj/item/food/fishmeat/octopus
|
||||
name = "octopus tentacle"
|
||||
|
||||
@@ -1469,6 +1469,20 @@
|
||||
/datum/reagent/water = 5,
|
||||
)
|
||||
|
||||
//Fresh Jellyfish fillet soup!
|
||||
/datum/chemical_reaction/food/soup/jellyfish_stew_two
|
||||
required_reagents = list(/datum/reagent/water = 50)
|
||||
required_ingredients = list(
|
||||
/obj/item/food/fishmeat/gunner_jellyfish = 1,
|
||||
/obj/item/food/grown/soybeans = 1,
|
||||
/obj/item/food/grown/redbeet = 1,
|
||||
/obj/item/food/grown/potato = 1
|
||||
)
|
||||
results = list(
|
||||
/datum/reagent/consumable/nutriment/soup/jellyfish = 50,
|
||||
)
|
||||
|
||||
|
||||
// Rootbread Soup
|
||||
/datum/reagent/consumable/nutriment/soup/rootbread
|
||||
name = "Rootbread Soup"
|
||||
|
||||
@@ -480,6 +480,10 @@
|
||||
reaction = /datum/chemical_reaction/food/soup/jellyfish_stew
|
||||
category = CAT_LIZARD
|
||||
|
||||
/datum/crafting_recipe/food/reaction/soup/jellyfish_stew_two
|
||||
reaction = /datum/chemical_reaction/food/soup/jellyfish_stew_two
|
||||
category = CAT_LIZARD
|
||||
|
||||
/datum/crafting_recipe/food/reaction/soup/rootbread_soup
|
||||
reaction = /datum/chemical_reaction/food/soup/rootbread_soup
|
||||
category = CAT_LIZARD
|
||||
|
||||
@@ -44,12 +44,22 @@
|
||||
/obj/item/food/grown/koibeans
|
||||
seed = /obj/item/seeds/soya/koi
|
||||
name = "koibean"
|
||||
desc = "Something about these seems fishy."
|
||||
desc = "Something about these seems fishy, they seem really soft, almost squeezable!"
|
||||
icon_state = "koibeans"
|
||||
foodtypes = VEGETABLES
|
||||
tastes = list("koi" = 1)
|
||||
wine_power = 40
|
||||
|
||||
//Now squeezable for imitation carpmeat
|
||||
/obj/item/food/grown/koibeans/attack_self(mob/living/user)
|
||||
user.visible_message(span_notice("[user] crushes [src] into a slab of carplike meat."), span_notice("You crush [src] into something that resembles a slab of carplike meat."))
|
||||
playsound(user, 'sound/effects/blobattack.ogg', 50, TRUE)
|
||||
var/obj/item/food/fishmeat/carp/imitation/fishie = new(null)
|
||||
fishie.reagents.set_all_reagents_purity(seed.get_reagent_purity())
|
||||
qdel(src)
|
||||
user.put_in_hands(fishie)
|
||||
return TRUE
|
||||
|
||||
//Butterbeans, the beans wid da butta!
|
||||
// Butterbeans! - Squeeze for a single butter slice!
|
||||
/obj/item/seeds/soya/butter
|
||||
|
||||
Reference in New Issue
Block a user