ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/BlockItemRepairer.java

59 lines
2.1 KiB
Java
Raw Normal View History

2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks;
2015-04-02 12:06:42 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockContainerBase;
import de.ellpeck.actuallyadditions.mod.inventory.GuiHandler;
import de.ellpeck.actuallyadditions.mod.tile.TileEntityItemRepairer;
import net.minecraft.block.Block;
2016-03-18 23:47:22 +01:00
import net.minecraft.block.SoundType;
2015-04-02 12:06:42 +02:00
import net.minecraft.block.material.Material;
import net.minecraft.block.state.IBlockState;
2015-04-02 12:06:42 +02:00
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumFacing;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.EnumHand;
import net.minecraft.util.math.BlockPos;
2015-04-02 12:06:42 +02:00
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
import net.minecraftforge.common.ToolType;
2015-04-02 12:06:42 +02:00
2019-05-02 09:10:29 +02:00
public class BlockItemRepairer extends BlockContainerBase {
2015-04-02 12:06:42 +02:00
public BlockItemRepairer() {
super(Block.Properties.create(Material.ROCK)
.hardnessAndResistance(20.0f, 15.0f)
.harvestTool(ToolType.PICKAXE)
.sound(SoundType.STONE)
.tickRandomly());
2015-04-02 12:06:42 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public TileEntity createNewTileEntity(World world, int par2) {
2015-04-02 12:06:42 +02:00
return new TileEntityItemRepairer();
}
@Override
2019-05-02 09:10:29 +02:00
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing par6, float par7, float par8, float par9) {
if (!world.isRemote) {
TileEntityItemRepairer repairer = (TileEntityItemRepairer) world.getTileEntity(pos);
if (repairer != null) {
2018-05-10 11:38:58 +02:00
player.openGui(ActuallyAdditions.INSTANCE, GuiHandler.GuiTypes.REPAIRER.ordinal(), world, pos.getX(), pos.getY(), pos.getZ());
2015-10-02 16:48:01 +02:00
}
2015-04-02 12:06:42 +02:00
return true;
}
return true;
}
@Override
2019-05-02 09:10:29 +02:00
public int getLightValue(IBlockState state, IBlockAccess world, BlockPos pos) {
2016-07-04 20:15:41 +02:00
return this.getMetaFromState(state) == 1 ? 12 : 0;
2015-04-02 12:06:42 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public EnumRarity getRarity(ItemStack stack) {
return EnumRarity.EPIC;
}
2015-04-02 12:06:42 +02:00
}