Hello, I've been trying to do this for the past 3 days with no luck😑 So what I'm trying to do is to add sharpness to a custom sword I made and this is my code👇
package com.shreyas.exmod.item.custom;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.SwordItem;
import net.minecraft.world.item.Tier;
import net.minecraft.world.item.enchantment.Enchantment;
import net.minecraft.world.item.enchantment.Enchantments;
public class DivineExcaliburItem extends SwordItem {
public DivineExcaliburItem(Tier tier, int i, float v, Properties properties) {
super(tier, i, v, properties);
}
@Override
public boolean canApplyAtEnchantingTable(ItemStack stack, Enchantment enchantment) {
return enchantment == Enchantments.SHARPNESS || super.canApplyAtEnchantingTable(stack, enchantment);
}
@Override
public boolean isFoil(ItemStack ignored) {
return false; // never looks enchanted
}
}
And I have no idea how to add the echant to it. Thanks in advance!