2015-08-29 14:33:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* This file ("BlockGeneric.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://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
2015-06-28 03:12:32 +02:00
|
|
|
|
package ellpeck.actuallyadditions.blocks;
|
|
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-10-01 23:20:31 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
|
2015-06-28 03:12:32 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
import net.minecraft.util.IIcon;
|
|
|
|
|
|
2015-10-01 23:20:31 +02:00
|
|
|
|
public class BlockGeneric extends Block implements IActAddItemOrBlock{
|
2015-06-28 03:12:32 +02:00
|
|
|
|
|
|
|
|
|
public String name;
|
|
|
|
|
|
|
|
|
|
public BlockGeneric(String name){
|
|
|
|
|
super(Material.rock);
|
|
|
|
|
this.name = name;
|
|
|
|
|
this.setHarvestLevel("pickaxe", 0);
|
2015-07-07 01:13:39 +02:00
|
|
|
|
this.setHardness(1.5F);
|
|
|
|
|
this.setResistance(10.0F);
|
2015-06-28 03:12:32 +02:00
|
|
|
|
this.setStepSound(soundTypeStone);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public IIcon getIcon(int side, int meta){
|
|
|
|
|
return this.blockIcon;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
|
public void registerBlockIcons(IIconRegister iconReg){
|
2015-10-02 16:48:01 +02:00
|
|
|
|
this.blockIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName());
|
2015-06-28 03:12:32 +02:00
|
|
|
|
}
|
|
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
|
@Override
|
|
|
|
|
public String getName(){
|
|
|
|
|
return this.name;
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-23 16:48:56 +02:00
|
|
|
|
@Override
|
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
|
return EnumRarity.common;
|
2015-06-28 03:12:32 +02:00
|
|
|
|
}
|
|
|
|
|
}
|