Smithing recipe builder + REI tool damage diplay
This commit is contained in:
parent
2f6014d441
commit
c1b7c83569
8 changed files with 116 additions and 20 deletions
15
src/main/java/ru/betterend/recipe/SmithingRecipes.java
Normal file
15
src/main/java/ru/betterend/recipe/SmithingRecipes.java
Normal file
|
@ -0,0 +1,15 @@
|
|||
package ru.betterend.recipe;
|
||||
|
||||
import net.minecraft.item.Items;
|
||||
import ru.betterend.registry.ItemRegistry;
|
||||
|
||||
public class SmithingRecipes {
|
||||
public static void register() {
|
||||
AnvilSmithingRecipe.Builder.create("ender_pearl_to_dust")
|
||||
.setInput(Items.ENDER_PEARL)
|
||||
.setOutput(ItemRegistry.ENDER_DUST, 1)
|
||||
.setLevel(4)
|
||||
.setDamage(5)
|
||||
.build();
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue