TechReborn/src/main/java/techreborn/blocks/machine/BlockAlloySmelter.java

63 lines
1.6 KiB
Java
Raw Normal View History

2015-05-08 01:39:17 +02:00
package techreborn.blocks.machine;
2015-04-24 16:01:19 +02:00
import net.minecraft.block.material.Material;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.world.World;
import techreborn.Core;
2015-05-08 01:39:17 +02:00
import techreborn.blocks.BlockMachineBase;
2015-11-25 22:03:55 +01:00
import techreborn.blocks.IRotationTexture;
2015-04-24 16:01:19 +02:00
import techreborn.client.GuiHandler;
import techreborn.tiles.TileAlloySmelter;
2015-07-02 20:51:24 +02:00
2015-11-25 22:03:55 +01:00
public class BlockAlloySmelter extends BlockMachineBase implements IRotationTexture {
2015-04-24 16:01:19 +02:00
public BlockAlloySmelter(Material material) {
super(material);
2015-11-23 20:19:18 +01:00
setUnlocalizedName("techreborn.alloysmelter");
}
2015-04-24 16:01:19 +02:00
@Override
public TileEntity createNewTileEntity(World world, int p_149915_2_) {
return new TileAlloySmelter();
}
2015-04-24 16:01:19 +02:00
@Override
public boolean onBlockActivated(World world, int x, int y, int z,
EntityPlayer player, int side, float hitX, float hitY, float hitZ) {
if (!player.isSneaking())
player.openGui(Core.INSTANCE, GuiHandler.alloySmelterID, world, x, y,
z);
return true;
}
2015-05-17 00:14:17 +02:00
2015-12-14 12:06:25 +01:00
private final String prefix = "techreborn:blocks/machine/";
2015-11-25 22:03:55 +01:00
@Override
public String getFrontOff() {
return prefix + "electric_alloy_furnace_front_off";
}
@Override
public String getFrontOn() {
return prefix + "electric_alloy_furnace_front_on";
}
@Override
public String getSide() {
return prefix + "machine_side";
}
@Override
public String getTop() {
return prefix + "machine_top";
}
@Override
public String getBottom() {
return prefix + "machine_bottom";
}
2015-04-24 16:01:19 +02:00
}