Added copy recipes

This commit is contained in:
Frank 2023-06-08 01:39:21 +02:00
parent 7e9639792c
commit 15b862befd

View file

@ -7,6 +7,7 @@ import org.betterx.betterend.registry.EndItems;
import org.betterx.betterend.registry.EndTemplates; import org.betterx.betterend.registry.EndTemplates;
import net.minecraft.world.item.Items; import net.minecraft.world.item.Items;
import net.minecraft.world.level.block.Blocks;
public class SmithingRecipes { public class SmithingRecipes {
@ -95,5 +96,54 @@ public class SmithingRecipes {
.setPrimaryInputAndUnlock(EndItems.DIAMOND_HAMMER) .setPrimaryInputAndUnlock(EndItems.DIAMOND_HAMMER)
.setAddition(Items.NETHERITE_INGOT) .setAddition(Items.NETHERITE_INGOT)
.build(); .build();
BCLRecipeBuilder.copySmithingTemplate(
BetterEnd.makeID("copy_plate_upgrade"),
EndTemplates.PLATE_UPGRADE,
Items.IRON_INGOT
).build();
BCLRecipeBuilder.copySmithingTemplate(
BetterEnd.makeID("copy_leather_handle_attachment"),
EndTemplates.LEATHER_HANDLE_ATTACHMENT,
Items.LEATHER
).build();
BCLRecipeBuilder.copyCheapSmithingTemplate(
BetterEnd.makeID("copy_handle_attachment"),
EndTemplates.HANDLE_ATTACHMENT,
Items.DIAMOND
).build();
BCLRecipeBuilder.copyCheapSmithingTemplate(
BetterEnd.makeID("copy_terminite_upgrade"),
EndTemplates.TERMINITE_UPGRADE,
EndBlocks.TERMINITE.ingot
).build();
BCLRecipeBuilder.copyCheapSmithingTemplate(
BetterEnd.makeID("copy_thallasium_upgrade"),
EndTemplates.THALLASIUM_UPGRADE,
EndBlocks.THALLASIUM.ingot
).build();
BCLRecipeBuilder.copySmithingTemplate(
BetterEnd.makeID("copy_aeternium_upgrade"),
EndTemplates.AETERNIUM_UPGRADE,
Blocks.LAPIS_BLOCK
).build();
BCLRecipeBuilder.copyCheapSmithingTemplate(
BetterEnd.makeID("copy_tool_assembly"),
EndTemplates.TOOL_ASSEMBLY,
Blocks.IRON_BLOCK
).build();
BCLRecipeBuilder.copySmithingTemplate(
BetterEnd.makeID("copy_netherite_upgrade"),
EndTemplates.NETHERITE_UPGRADE,
Blocks.NETHERRACK
).build();
} }
} }