mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-15 20:49:09 +01:00
55 lines
2 KiB
Java
55 lines
2 KiB
Java
/*
|
|
* This file ("ItemShovelAA.java") is part of the Actually Additions mod for Minecraft.
|
|
* It is created and owned by Ellpeck and distributed
|
|
* under the Actually Additions License to be found at
|
|
* http://ellpeck.de/actaddlicense
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2015-2017 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
|
|
|
import com.google.common.collect.Sets;
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemToolAA;
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.block.BlockState;
|
|
import net.minecraft.block.Blocks;
|
|
import net.minecraft.item.*;
|
|
import net.minecraft.tags.ITag;
|
|
import net.minecraft.util.ActionResultType;
|
|
|
|
import javax.annotation.Nonnull;
|
|
import java.util.Collections;
|
|
import java.util.Set;
|
|
|
|
public class ItemShovelAA extends ItemToolAA {
|
|
|
|
private static final Set<Block> EFFECTIVE_ON = Sets.newHashSet(Blocks.CLAY, Blocks.DIRT, Blocks.FARMLAND, Blocks.GRASS, Blocks.GRAVEL, Blocks.MYCELIUM, Blocks.SAND, Blocks.SNOW, Blocks.SNOW_BLOCK, Blocks.SOUL_SAND, Blocks.GRASS_PATH);
|
|
|
|
public ItemShovelAA(float p_i48512_1_, float p_i48512_2_, IItemTier p_i48512_3_, Set<Block> p_i48512_4_, Properties p_i48512_5_, String name, ItemStack repairItem, ITag<Item> repairTag) {
|
|
super(p_i48512_1_, p_i48512_2_, p_i48512_3_, p_i48512_4_, p_i48512_5_, name, repairItem, repairTag);
|
|
}
|
|
|
|
// public ItemShovelAA(IItemTier material) {
|
|
//// super(1.5F, -3.0F, material, this.repairItem, unlocalizedName, this.rarity, EFFECTIVE_ON);
|
|
//// this.setHarvestLevel("shovel", material.getLevel());
|
|
// }
|
|
|
|
@Override
|
|
public boolean isCorrectToolForDrops(BlockState blockIn) {
|
|
Block block = blockIn.getBlock();
|
|
return block == Blocks.SNOW_BLOCK || block == Blocks.SNOW;
|
|
}
|
|
|
|
@Nonnull
|
|
@Override
|
|
public ActionResultType useOn(ItemUseContext useContext) {
|
|
return Items.IRON_SHOVEL.useOn(useContext);
|
|
}
|
|
|
|
//@Override
|
|
public Set<String> getToolClasses(ItemStack stack) {
|
|
return Collections.singleton("shovel");
|
|
}
|
|
}
|