2016-03-19 11:36:17 +01:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("ItemShovelAA.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;
|
|
|
|
|
|
|
|
import com.google.common.collect.Sets;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemToolAA;
|
|
|
|
import net.minecraft.block.Block;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
2016-03-19 11:36:17 +01:00
|
|
|
import net.minecraft.init.Blocks;
|
2016-04-20 21:39:03 +02:00
|
|
|
import net.minecraft.init.Items;
|
2016-03-19 11:36:17 +01:00
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2021-02-27 13:24:45 +01:00
|
|
|
import net.minecraft.util.Direction;
|
2021-02-27 16:33:00 +01:00
|
|
|
import net.minecraft.util.EnumActionResult;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.util.Hand;
|
2016-03-19 11:36:17 +01:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.world.World;
|
2019-05-02 09:08:15 +02:00
|
|
|
import net.minecraftforge.common.IRarity;
|
2016-03-19 11:36:17 +01:00
|
|
|
|
2021-02-26 22:15:48 +01:00
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.Set;
|
|
|
|
|
2019-05-02 09:08:15 +02:00
|
|
|
public class ItemShovelAA extends ItemToolAA {
|
2016-03-19 11:36:17 +01:00
|
|
|
|
2016-04-20 21:39:03 +02:00
|
|
|
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_LAYER, Blocks.SOUL_SAND, Blocks.GRASS_PATH);
|
2016-03-19 11:36:17 +01:00
|
|
|
|
2019-05-02 09:08:15 +02:00
|
|
|
public ItemShovelAA(Item.ToolMaterial material, String repairItem, String unlocalizedName, IRarity rarity) {
|
2016-03-19 11:36:17 +01:00
|
|
|
super(1.5F, -3.0F, material, repairItem, unlocalizedName, rarity, EFFECTIVE_ON);
|
2016-09-25 20:50:35 +02:00
|
|
|
this.setHarvestLevel("shovel", material.getHarvestLevel());
|
2016-03-19 11:36:17 +01:00
|
|
|
}
|
|
|
|
|
2019-05-02 09:08:15 +02:00
|
|
|
public ItemShovelAA(Item.ToolMaterial material, ItemStack repairItem, String unlocalizedName, IRarity rarity) {
|
2016-03-19 11:36:17 +01:00
|
|
|
super(1.5F, -3.0F, material, repairItem, unlocalizedName, rarity, EFFECTIVE_ON);
|
2016-09-25 20:50:35 +02:00
|
|
|
this.setHarvestLevel("shovel", material.getHarvestLevel());
|
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 boolean canHarvestBlock(BlockState blockIn) {
|
2016-03-19 11:36:17 +01:00
|
|
|
Block block = blockIn.getBlock();
|
2016-04-20 21:39:03 +02:00
|
|
|
return block == Blocks.SNOW_LAYER || block == Blocks.SNOW;
|
2016-03-19 11:36:17 +01:00
|
|
|
}
|
|
|
|
|
2016-05-02 17:09:23 +02:00
|
|
|
@Override
|
2021-02-27 13:24:45 +01:00
|
|
|
public EnumActionResult onItemUse(PlayerEntity playerIn, World worldIn, BlockPos pos, Hand hand, Direction facing, float hitX, float hitY, float hitZ) {
|
2016-11-19 21:11:17 +01:00
|
|
|
return Items.IRON_SHOVEL.onItemUse(playerIn, worldIn, pos, hand, facing, hitX, hitY, hitZ);
|
2016-03-19 11:36:17 +01:00
|
|
|
}
|
2016-07-17 13:34:38 +02:00
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:08:15 +02:00
|
|
|
public Set<String> getToolClasses(ItemStack stack) {
|
2016-07-17 13:34:38 +02:00
|
|
|
return Collections.singleton("shovel");
|
|
|
|
}
|
2016-03-19 11:36:17 +01:00
|
|
|
}
|