2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
2015-07-26 02:36:42 +02:00
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemEnergy;
|
2016-11-16 20:31:16 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-01-07 23:42:42 +01:00
|
|
|
import net.minecraft.block.Block;
|
2015-07-26 02:36:42 +02:00
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.init.Blocks;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.util.math.MathHelper;
|
2015-07-26 02:36:42 +02:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class ItemWaterRemovalRing extends ItemEnergy {
|
2015-07-26 02:36:42 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public ItemWaterRemovalRing(String name) {
|
2016-11-21 13:38:43 +01:00
|
|
|
super(800000, 1000, name);
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public void onUpdate(ItemStack stack, World world, Entity entity, int par4, boolean par5) {
|
|
|
|
if (!(entity instanceof EntityPlayer) || world.isRemote || entity.isSneaking()) { return; }
|
2015-07-26 02:36:42 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
EntityPlayer player = (EntityPlayer) entity;
|
2016-05-02 07:50:13 +02:00
|
|
|
ItemStack equipped = player.getHeldItemMainhand();
|
2015-07-26 02:36:42 +02:00
|
|
|
|
2016-11-21 13:38:43 +01:00
|
|
|
int energyUse = 150;
|
2019-05-02 09:10:29 +02:00
|
|
|
if (StackUtil.isValid(equipped) && equipped == stack && this.getEnergyStored(stack) >= energyUse) {
|
2015-07-26 02:36:42 +02:00
|
|
|
|
|
|
|
//Setting everything to air
|
2015-11-28 19:02:01 +01:00
|
|
|
int range = 3;
|
2019-05-02 09:10:29 +02:00
|
|
|
for (int x = -range; x < range + 1; x++) {
|
|
|
|
for (int z = -range; z < range + 1; z++) {
|
|
|
|
for (int y = -range; y < range + 1; y++) {
|
|
|
|
int theX = MathHelper.floor(player.posX + x);
|
|
|
|
int theY = MathHelper.floor(player.posY + y);
|
|
|
|
int theZ = MathHelper.floor(player.posZ + z);
|
2015-07-26 02:36:42 +02:00
|
|
|
|
2016-01-10 19:32:21 +01:00
|
|
|
//Remove Water
|
|
|
|
BlockPos pos = new BlockPos(theX, theY, theZ);
|
2016-07-04 20:15:41 +02:00
|
|
|
Block block = world.getBlockState(pos).getBlock();
|
2019-05-02 09:10:29 +02:00
|
|
|
if ((block == Blocks.WATER || block == Blocks.FLOWING_WATER) && this.getEnergyStored(stack) >= energyUse) {
|
2016-01-10 19:32:21 +01:00
|
|
|
world.setBlockToAir(pos);
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!player.capabilities.isCreativeMode) {
|
2016-11-23 18:10:55 +01:00
|
|
|
this.extractEnergyInternal(stack, energyUse, false);
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|
2016-01-10 19:32:21 +01:00
|
|
|
}
|
|
|
|
//Remove Lava
|
2019-05-02 09:10:29 +02:00
|
|
|
else if ((block == Blocks.LAVA || block == Blocks.FLOWING_LAVA) && this.getEnergyStored(stack) >= energyUse * 2) {
|
2016-01-10 19:32:21 +01:00
|
|
|
world.setBlockToAir(pos);
|
2015-07-26 02:36:42 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!player.capabilities.isCreativeMode) {
|
|
|
|
this.extractEnergyInternal(stack, energyUse * 2, false);
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public EnumRarity getRarity(ItemStack stack) {
|
2016-01-07 23:42:42 +01:00
|
|
|
return EnumRarity.EPIC;
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|