diff --git a/ModularTegustation/fishing/code/fish/LC13_fish/freshwater_fish.dm b/ModularTegustation/fishing/code/fish/LC13_fish/freshwater_fish.dm index 5b3e6c057464..cc478daeba47 100644 --- a/ModularTegustation/fishing/code/fish/LC13_fish/freshwater_fish.dm +++ b/ModularTegustation/fishing/code/fish/LC13_fish/freshwater_fish.dm @@ -119,3 +119,47 @@ /datum/reagent/abnormality/heartysyrup = 4, /datum/reagent/consumable/nutriment/vile_fluid = 6, ) + +/obj/item/food/fish/fresh_water/unidentifiedfishobject + name = "Unidentified Fish Object" + desc = "What the Fuck." + icon_state = "unidentified-fish-object" + random_case_rarity = FISH_RARITY_VERY_RARE + fillet_type = /obj/item/food/freshfish/rotten + sprite_width = 8 + sprite_height = 8 + average_size = 40 + average_weight = 5000 + +/obj/item/food/fish/fresh_water/ufo + name = "Ufo" + desc = "The object hums at a low frequency, seemingly defying all laws of physics." + icon_state = "ufo" + random_case_rarity = FISH_RARITY_VERY_RARE + fillet_type = /obj/item/food/freshfish/slime + sprite_width = 8 + sprite_height = 8 + average_size = 40 + average_weight = 7000 + +/obj/item/food/fish/fresh_water/walkin_man + name = "Walkin Man" + desc = "I'm walkin' here!" + icon_state = "walkin_man" + random_case_rarity = FISH_RARITY_VERY_RARE + fillet_type = /obj/item/food/freshfish/white + sprite_width = 8 + sprite_height = 8 + average_size = 50 + average_weight = 5600 + +/obj/item/food/fish/fresh_water/boxin_man + name = "Boxin Man" + desc = "I'm boxin' here!" + icon_state = "walkin_man" + random_case_rarity = FISH_RARITY_VERY_RARE + fillet_type = /obj/item/food/freshfish/white + sprite_width = 8 + sprite_height = 8 + average_size = 50 + average_weight = 5600 diff --git a/ModularTegustation/fishing/code/fish/LC13_fish/saltwater_fish.dm b/ModularTegustation/fishing/code/fish/LC13_fish/saltwater_fish.dm index d4689e9eebee..37fa381fd92c 100644 --- a/ModularTegustation/fishing/code/fish/LC13_fish/saltwater_fish.dm +++ b/ModularTegustation/fishing/code/fish/LC13_fish/saltwater_fish.dm @@ -177,3 +177,39 @@ /datum/reagent/toxin/mindbreaker = 5, /datum/reagent/toxin/pallidwaste = 15,//this is defined in toxin_reagents.dm ) + +/obj/item/food/fish/salt_water/fishmael + name = "Fishmael" + desc = "If you please, call me Fishmael." + icon_state = "fishmael" + show_in_catalog = FALSE + random_case_rarity = FISH_RARITY_RARE + fillet_type = /obj/item/food/freshfish/white + sprite_width = 8 + sprite_height = 8 + average_size = 30 + average_weight = 500 + +/obj/item/food/fish/salt_water/seabunny + name = "Sea Bunny" + desc = "This creature resembles a small white bunny. They are incredibly toxic however." + icon_state = "seabunny" + show_in_catalog = FALSE + random_case_rarity = FISH_RARITY_RARE + fillet_type = /obj/item/food/freshfish/fugu + sprite_width = 8 + sprite_height = 8 + average_size = 30 + average_weight = 300 + +/obj/item/food/fish/salt_water/searabbit + name = "Sea Rabbit" + desc = "This creature resembles a small R-Corp Rabbit. They aren't incredibly toxic...however." + icon_state = "searabbit" + show_in_catalog = FALSE + random_case_rarity = FISH_RARITY_RARE + fillet_type = /obj/item/food/freshfish/slime + sprite_width = 8 + sprite_height = 8 + average_size = 30 + average_weight = 300 diff --git a/ModularTegustation/fishing/icons/fish_sprites.dmi b/ModularTegustation/fishing/icons/fish_sprites.dmi index 731b3123a17b..a4715df22f65 100644 Binary files a/ModularTegustation/fishing/icons/fish_sprites.dmi and b/ModularTegustation/fishing/icons/fish_sprites.dmi differ