TODO: make enchanted apples glow, add ore gen, daggers, golden netherite, villager meat, vertical slabs, aether, reaplant/replenish enchantment.
12 lines
335 B
Java
12 lines
335 B
Java
package tech.nevets.vplus.tools;
|
|
|
|
import net.minecraft.item.AxeItem;
|
|
import net.minecraft.item.ToolMaterial;
|
|
import tech.nevets.vplus.items.VPItemGroups;
|
|
|
|
public class AxeBase extends AxeItem {
|
|
public AxeBase(ToolMaterial toolMaterial_1) {
|
|
super(toolMaterial_1, 5, -3.0f, new Settings().group(VPItemGroups.TOOLS));
|
|
}
|
|
}
|