1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
package miscutil.core.block;
import miscutil.core.lib.Strings;
import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
public class AdvancedBlock extends Block {
protected AdvancedBlock(String unlocalizedName, Material material, CreativeTabs x, float blockHardness, float blockResistance, float blockLightLevel,
String blockHarvestTool, int blockHarvestLevel, SoundType BlockSound) {
super(material);
this.setBlockName(unlocalizedName);
this.setBlockTextureName(Strings.MODID + ":" + unlocalizedName);
this.setCreativeTab(x);
this.setHardness(blockHardness); //block Hardness
this.setResistance(blockResistance);
this.setLightLevel(blockLightLevel);
this.setHarvestLevel(blockHarvestTool, blockHarvestLevel);
this.setStepSound(BlockSound);
}
@Override
public boolean onBlockActivated(World p_149727_1_, int p_149727_2_, int p_149727_3_, int p_149727_4_, EntityPlayer p_149727_5_, int p_149727_6_, float p_149727_7_, float p_149727_8_, float p_149727_9_)
{
return false;
}
}
|