{"id":151697,"date":"2026-06-09T06:49:50","date_gmt":"2026-06-09T03:49:50","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/"},"modified":"2026-06-09T06:49:50","modified_gmt":"2026-06-09T03:49:50","slug":"tactical-fishing","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/","title":{"rendered":"Tactical Fishing"},"content":{"rendered":"<p>![TL;DR Gif](https:\/\/imgur.com\/kVti8pF.gif)<br \/>\nMakes it possible to get Buckets of Fish via a different way; by fishing with a water bucket in your off-hand!<br \/>\nThis mod also automatically supports modded fish, *as long as they follow the minecraft naming style.*<\/p>\n<p>The mod uses dynamically written recipes and is compatible with JEI if you want to see what things you can fishing-craft!<br \/>\n![JEI preview](https:\/\/imgur.com\/dqkPezc.png)<\/p>\n<p><\/p>\n<details>\n<summary><b>Technical Notes for Modders<\/b><\/summary>\n<p>Your fish should be handled automatically as long as you follow the minecraft naming style ( &#8220;***[modid]:[fish]***&#8221;, &#8220;***[modid]:[fish]_bucket***&#8221; ), I also included a &#8220;***[modid]:raw_[fish]***&#8221; as a fallback in case you are still using old naming.<br \/>\n~~However there might be cases where you would not want something to be auto-gen&#8217;d for your item. Fish recipes won&#8217;t be created if the following data path already exists in any directory &#8220;***data.tactical_fishing.recipes.inbuilt.fishing_[modid]_[fish]_bucket.json***&#8221;.~~<\/p>\n<p>Your rods should also be handled automatically as long as they extend &#8220;***net.minecraft.item.FishingRodItem***&#8221;, and it should work as long as your fishing hook projectile uses the &#8220;***net.minecraftforge.event.entity.player.ItemFishedEvent***&#8221; Forge Event.<br \/>\nHowever if your rod is a custom item for whichever reason you can include it in the &#8220;***tactical_fishing:fishing_rods***&#8221; item tag.<\/p>\n<p>If you wish to create new fishing recipes for your mod here is the syntax:<br \/>\n&#8220;`<br \/>\n{<br \/>\n    &#8220;type&#8221;: &#8220;tactical_fishing:fishing&#8221;,<br \/>\n    &#8220;group&#8221;: &#8220;&#8221;, \/\/This is optional like in default recipes; if you want to make this recipe count for the &#8220;Advanced Tactics&#8221; advancement add &#8220;tactical_fishing:fish_buckets&#8221; here.<br \/>\n    &#8220;rod&#8221;: {}, \/\/Ingredient syntax, this specifies the rod needed for the recipe, if you want any rod to count use the &#8220;tactical_fishing:fishing_rods&#8221; tag<br \/>\n    &#8220;ingredient&#8221;: {}, \/\/Ingredient syntax, this specifies what else you need to hold for the recipe<br \/>\n    &#8220;catch&#8221;: {}, \/\/Ingredient syntax, this specifies what needs to be caught to finalize the recipe<br \/>\n    &#8220;result&#8221;: {} \/\/ItemStack syntax, this specifies what is created from the recipe<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>Here is a template from the auto-gen&#8217;d recipes<br \/>\n&#8220;`<br \/>\n{<br \/>\n    &#8220;type&#8221;: &#8220;tactical_fishing:fishing&#8221;,<br \/>\n    &#8220;group&#8221;: &#8220;tactical_fishing:fish_buckets&#8221;,<br \/>\n    &#8220;rod&#8221;: {<br \/>\n         &#8220;tag&#8221;: &#8220;tactical_fishing:fishing_rods&#8221;<br \/>\n    },<br \/>\n    &#8220;ingredient&#8221;: {<br \/>\n         &#8220;item&#8221;: &#8220;minecraft:water_bucket&#8221;<br \/>\n    },<br \/>\n    &#8220;catch&#8221;: {<br \/>\n         &#8220;item&#8221;: &#8220;minecraft:cod&#8221;<br \/>\n    },<br \/>\n    &#8220;result&#8221;: {<br \/>\n         &#8220;item&#8221;: &#8220;minecraft:cod_bucket&#8221;<br \/>\n    },<br \/>\n    &#8220;conditions&#8221;: [<br \/>\n        {<br \/>\n              &#8220;type&#8221;: &#8220;forge:mod_loaded&#8221;,<br \/>\n              &#8220;modid&#8221;: &#8220;minecraft&#8221;<br \/>\n         }<br \/>\n    ]<br \/>\n}<br \/>\n&#8220;`<\/p>\n<\/details>\n<details>\n<summary><b>Technical Notes for Modpack Makers<\/b><\/summary>\n<p>You can suppress certain features via the config, like disabling the auto-gen&#8217;d fish recipes altogether.<\/p>\n<p>If you wish to create new fishing recipes for your mod here is the syntax:<br \/>\n&#8220;`<br \/>\n{<br \/>\n    &#8220;type&#8221;: &#8220;tactical_fishing:fishing&#8221;,<br \/>\n    &#8220;group&#8221;: &#8220;&#8221;, \/\/This is optional like in default recipes; if you want to make this recipe count for the &#8220;Advanced Tactics&#8221; advancement add &#8220;tactical_fishing:fish_buckets&#8221; here.<br \/>\n    &#8220;rod&#8221;: {}, \/\/Ingredient syntax, this specifies the rod needed for the recipe, if you want any rod to count use the &#8220;tactical_fishing:fishing_rods&#8221; tag<br \/>\n    &#8220;ingredient&#8221;: {}, \/\/Ingredient syntax, this specifies what else you need to hold for the recipe<br \/>\n    &#8220;catch&#8221;: {}, \/\/Ingredient syntax, this specifies what needs to be caught to finalize the recipe<br \/>\n    &#8220;result&#8221;: {} \/\/ItemStack syntax, this specifies what is created from the recipe<br \/>\n}<br \/>\n&#8220;`<\/p>\n<p>Here is a template from the auto-gen&#8217;d recipes<br \/>\n&#8220;`<br \/>\n{<br \/>\n    &#8220;type&#8221;: &#8220;tactical_fishing:fishing&#8221;,<br \/>\n    &#8220;group&#8221;: &#8220;tactical_fishing:fish_buckets&#8221;,<br \/>\n    &#8220;rod&#8221;: {<br \/>\n         &#8220;tag&#8221;: &#8220;tactical_fishing:fishing_rods&#8221;<br \/>\n    },<br \/>\n    &#8220;ingredient&#8221;: {<br \/>\n         &#8220;item&#8221;: &#8220;minecraft:water_bucket&#8221;<br \/>\n    },<br \/>\n    &#8220;catch&#8221;: {<br \/>\n         &#8220;item&#8221;: &#8220;minecraft:cod&#8221;<br \/>\n    },<br \/>\n    &#8220;result&#8221;: {<br \/>\n         &#8220;item&#8221;: &#8220;minecraft:cod_bucket&#8221;<br \/>\n    },<br \/>\n    &#8220;conditions&#8221;: [<br \/>\n        {<br \/>\n              &#8220;type&#8221;: &#8220;forge:mod_loaded&#8221;,<br \/>\n              &#8220;modid&#8221;: &#8220;minecraft&#8221;<br \/>\n         }<br \/>\n    ]<br \/>\n}<br \/>\n&#8220;`<\/p>\n<\/details>\n","protected":false},"excerpt":{"rendered":"<p>A new way of getting fish into buckets<\/p>\n","protected":false},"featured_media":151698,"template":"","meta":{"_minecraft_slug":"tactical-fishing","_minecraft_project_id":"5kRS9LYk","_minecraft_author":"fuffles","_minecraft_license":"CC-BY-NC-4.0","_minecraft_downloads":10739,"_minecraft_follows":18,"_minecraft_client_side":"required","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"tactical-fishing.zip","_minecraft_size_bytes":459960,"_minecraft_version_count":5,"_minecraft_updated_at":"2026-05-16T04:49:05.946521Z","_minecraft_date_created":"2023-10-26T00:35:54.245771Z","_minecraft_date_modified":"2023-10-27T12:56:23.707894Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/tactical-fishing","_minecraft_icon_attachment_id":151698,"_minecraft_imported_at":"2026-06-09T03:49:51+00:00","_minecraft_import_hash":"ce948b648b4a4503a38b582b1dac2649","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[104,89,91,92],"mod_loader":[106],"minecraft_version":[48,50,52,53,54,55,56,59,36],"class_list":["post-151697","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-forge","mod_category-game-mechanics","mod_category-storage","mod_category-utility","mod_loader-forge","minecraft_version-1-16-5","minecraft_version-1-17-1","minecraft_version-1-18-1","minecraft_version-1-18-2","minecraft_version-1-19","minecraft_version-1-19-1","minecraft_version-1-19-2","minecraft_version-1-20","minecraft_version-1-20-1"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Tactical Fishing - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Tactical Fishing - Minecraft\" \/>\n<meta property=\"og:description\" content=\"A new way of getting fish into buckets\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tactical-fishing\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tactical-fishing\\\/\",\"name\":\"Tactical Fishing - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tactical-fishing\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tactical-fishing\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/tactical-fishing-icon-400e85a4fb6c7611a82bfb5643a05f932c602f96_96.webp\",\"datePublished\":\"2026-06-09T03:49:50+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tactical-fishing\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tactical-fishing\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tactical-fishing\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/tactical-fishing-icon-400e85a4fb6c7611a82bfb5643a05f932c602f96_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/tactical-fishing-icon-400e85a4fb6c7611a82bfb5643a05f932c602f96_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/tactical-fishing\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Tactical Fishing\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Tactical Fishing - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/","og_locale":"en_US","og_type":"article","og_title":"Tactical Fishing - Minecraft","og_description":"A new way of getting fish into buckets","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/","og_site_name":"Minecraft","twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/","name":"Tactical Fishing - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/tactical-fishing-icon-400e85a4fb6c7611a82bfb5643a05f932c602f96_96.webp","datePublished":"2026-06-09T03:49:50+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/tactical-fishing-icon-400e85a4fb6c7611a82bfb5643a05f932c602f96_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/tactical-fishing-icon-400e85a4fb6c7611a82bfb5643a05f932c602f96_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/tactical-fishing\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"Tactical Fishing"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/151697","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/151698"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=151697"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=151697"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=151697"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=151697"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}