ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemDrillUpgrade.java
2021-03-01 20:23:52 +00:00

72 lines
2.1 KiB
Java

/*
* This file ("ItemDrillUpgrade.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 de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.util.ActionResult;
import net.minecraft.util.EnumActionResult;
import net.minecraft.util.Hand;
import net.minecraft.world.World;
public class ItemDrillUpgrade extends ItemBase {
public final UpgradeType type;
public ItemDrillUpgrade(UpgradeType type) {
super(ActuallyItems.defaultProps().maxStackSize(1));
this.type = type;
}
public static int getSlotToPlaceFrom(ItemStack stack) {
CompoundNBT compound = stack.getTagCompound();
if (compound != null) {
return compound.getInt("SlotToPlaceFrom") - 1;
}
return -1;
}
@Override
public ActionResult<ItemStack> onItemRightClick(World world, PlayerEntity player, Hand hand) {
ItemStack stack = player.getHeldItem(hand);
if (!world.isRemote && this.type == UpgradeType.PLACER) {
this.setSlotToPlaceFrom(stack, player.inventory.currentItem);
return new ActionResult<>(EnumActionResult.SUCCESS, stack);
}
return new ActionResult<>(EnumActionResult.FAIL, stack);
}
public void setSlotToPlaceFrom(ItemStack stack, int slot) {
CompoundNBT compound = stack.getTagCompound();
if (compound == null) {
compound = new CompoundNBT();
}
compound.putInt("SlotToPlaceFrom", slot + 1);
stack.setTagCompound(compound);
}
public enum UpgradeType {
SPEED,
SPEED_II,
SPEED_III,
SILK_TOUCH,
FORTUNE,
FORTUNE_II,
THREE_BY_THREE,
FIVE_BY_FIVE,
PLACER
}
}