ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemAxeAA.java

57 lines
1.9 KiB
Java
Raw Normal View History

2016-03-19 11:36:17 +01:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ItemAxeAA.java") is part of the Actually Additions mod for Minecraft.
2016-03-19 11:36:17 +01:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2016-03-19 11:36:17 +01:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2016-03-19 11:36:17 +01:00
*/
package de.ellpeck.actuallyadditions.mod.items;
2024-03-02 21:23:08 +01:00
import net.minecraft.world.item.DiggerItem;
import net.minecraft.world.item.Tier;
2021-11-21 21:18:00 +01:00
2024-03-02 21:23:08 +01:00
public class ItemAxeAA extends DiggerItem {
private Tier tier;
public ItemAxeAA(Tier tier) {
2021-11-21 21:18:00 +01:00
super(
4.0f,
-2f,
tier,
2024-03-02 21:23:08 +01:00
null, //Feed block tags here
2021-11-21 21:18:00 +01:00
new Properties()
2024-03-02 21:23:08 +01:00
// .addToolType(ToolType.AXE, tier.getLevel())
// .addToolType(ToolType.HOE, tier.getLevel())
// .addToolType(ToolType.SHOVEL, tier.getLevel())
// .addToolType(ToolType.PICKAXE, tier.getLevel())
2021-11-21 21:18:00 +01:00
.durability(tier.getUses() * 4)
2024-03-03 01:20:53 +01:00
2021-11-21 21:18:00 +01:00
);
this.tier = tier;
2021-11-21 21:05:27 +01:00
}
2016-03-19 11:36:17 +01:00
2021-11-21 21:05:27 +01:00
/*
2016-04-20 21:39:03 +02:00
private static final Set<Block> EFFECTIVE_ON = Sets.newHashSet(Blocks.PLANKS, Blocks.BOOKSHELF, Blocks.LOG, Blocks.LOG2, Blocks.CHEST, Blocks.PUMPKIN, Blocks.LIT_PUMPKIN, Blocks.MELON_BLOCK, Blocks.LADDER, Blocks.WOODEN_BUTTON, Blocks.WOODEN_PRESSURE_PLATE);
2016-03-19 11:36:17 +01:00
2021-02-27 21:24:26 +01:00
public ItemAxeAA(IItemTier material) {
super(6.0F, -3.0F, material, this.repairItem, unlocalizedName, this.rarity, EFFECTIVE_ON);
this.setHarvestLevel("axe", material.getLevel());
2016-03-19 11:36:17 +01:00
}
2016-05-02 17:09:23 +02:00
@Override
2021-02-26 22:15:48 +01:00
public float getDestroySpeed(ItemStack stack, BlockState state) {
2016-03-19 11:36:17 +01:00
Material material = state.getMaterial();
return material != Material.WOOD && material != Material.PLANT && material != Material.VINE
2021-08-22 23:19:57 +02:00
? super.getDestroySpeed(stack, state)
: this.speed;
2016-03-19 11:36:17 +01:00
}
@Override
2019-05-02 09:10:29 +02:00
public Set<String> getToolClasses(ItemStack stack) {
return Collections.singleton("axe");
2021-11-21 21:05:27 +01:00
}*/
2016-03-19 11:36:17 +01:00
}