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

83 lines
3 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ItemWaterRemovalRing.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02: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
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items;
2016-01-08 13:31:58 +01:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemEnergy;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
import net.minecraft.block.Block;
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;
import net.minecraft.world.World;
public class ItemWaterRemovalRing extends ItemEnergy{
public ItemWaterRemovalRing(String name){
2016-11-21 13:38:43 +01:00
super(800000, 1000, name);
}
@Override
public void onUpdate(ItemStack stack, World world, Entity entity, int par4, boolean par5){
2015-11-18 22:33:12 +01:00
if(!(entity instanceof EntityPlayer) || world.isRemote || entity.isSneaking()){
2015-10-03 10:16:18 +02:00
return;
}
EntityPlayer player = (EntityPlayer)entity;
ItemStack equipped = player.getHeldItemMainhand();
2016-11-21 13:38:43 +01:00
int energyUse = 150;
if(StackUtil.isValid(equipped) && equipped == stack && this.getEnergyStored(stack) >= energyUse){
//Setting everything to air
int range = 3;
for(int x = -range; x < range+1; x++){
for(int z = -range; z < range+1; z++){
for(int y = -range; y < range+1; y++){
2016-11-26 21:32:27 +01:00
int theX = MathHelper.floor(player.posX+x);
int theY = MathHelper.floor(player.posY+y);
int theZ = MathHelper.floor(player.posZ+z);
//Remove Water
BlockPos pos = new BlockPos(theX, theY, theZ);
2016-07-04 20:15:41 +02:00
Block block = world.getBlockState(pos).getBlock();
2016-04-20 21:39:03 +02:00
if((block == Blocks.WATER || block == Blocks.FLOWING_WATER) && this.getEnergyStored(stack) >= energyUse){
world.setBlockToAir(pos);
if(!player.capabilities.isCreativeMode){
this.extractEnergyInternal(stack, energyUse, false);
}
}
//Remove Lava
2016-04-20 21:39:03 +02:00
else if((block == Blocks.LAVA || block == Blocks.FLOWING_LAVA) && this.getEnergyStored(stack) >= energyUse*2){
world.setBlockToAir(pos);
if(!player.capabilities.isCreativeMode){
this.extractEnergyInternal(stack, energyUse*2, false);
}
}
}
}
}
}
}
@Override
public EnumRarity getRarity(ItemStack stack){
return EnumRarity.EPIC;
2015-10-03 10:19:40 +02:00
}
}