Skip to content

Commit

Permalink
Add assembler recipes for fishing rods (#2757)
Browse files Browse the repository at this point in the history
  • Loading branch information
JuiceyBeans authored Jan 30, 2025
1 parent 76aa482 commit f0f682d
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -871,6 +871,23 @@ private static void metalRecipes(Consumer<FinishedRecipe> provider) {
* Adds polished stone variant autoclave recipes
*/
private static void miscRecipes(Consumer<FinishedRecipe> provider) {
if (ConfigHolder.INSTANCE.recipes.hardToolArmorRecipes) {
ASSEMBLER_RECIPES.recipeBuilder("fishing_rod")
.inputItems(new ItemStack(Items.STRING))
.inputItems(rodLong, Wood, 2)
.inputItems(ring, Iron)
.outputItems(new ItemStack(Items.FISHING_ROD, 1))
.circuitMeta(16)
.duration(100).EUt(4).save(provider);
} else {
ASSEMBLER_RECIPES.recipeBuilder("fishing_rod")
.inputItems(new ItemStack(Items.STRING, 2))
.inputItems(rod, Wood, 3)
.outputItems(new ItemStack(Items.FISHING_ROD, 1))
.circuitMeta(16)
.duration(100).EUt(4).save(provider);
}

ASSEMBLER_RECIPES.recipeBuilder("book_from_leather")
.inputItems(new ItemStack(Items.PAPER, 3))
.inputItems(new ItemStack(Items.LEATHER))
Expand Down

0 comments on commit f0f682d

Please sign in to comment.