blob: 045a5a1f3ed8e0e0841fcce96a56902ca982a2f5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package lv.enes.mc.eris_alchemy;
import net.minecraft.world.item.AxeItem;
import net.minecraft.world.item.Tier;
import net.minecraft.world.level.block.Block;
import java.util.Map;
/** The only reason this exists is to read STRIPPABLES property from AxeItem :3 */
public abstract class SubAxe extends AxeItem {
public static Map<Block, Block> getStrippables() {
return STRIPPABLES;
}
private SubAxe(Tier material, float attackDamage, float attackSpeed, Properties settings) {
super(material, attackDamage, attackSpeed, settings);
}
}
|