package lv.enes.mc.eris_alchemy.utils; import net.minecraft.world.item.AxeItem; import net.minecraft.world.item.Tier; import net.minecraft.world.level.block.Block; import java.util.Map; /** This extends AxeItem only to read the STRIPPABLES variable :3 */ public final class AxeUtils extends AxeItem { public static Map getStrippables() { return STRIPPABLES; } private AxeUtils(Tier material, float attackDamage, float attackSpeed, Properties settings) { super(material, attackDamage, attackSpeed, settings); } }