mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-04 16:19:10 +01:00
5e0e79d691
Nothing special. Well, lots of special stuff actually.
48 lines
No EOL
1.4 KiB
Java
48 lines
No EOL
1.4 KiB
Java
/*
|
|
* This file ("BlockPhantomBooster.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://ellpeck.de/actaddlicense/
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
*
|
|
* © 2016 Ellpeck
|
|
*/
|
|
|
|
package de.ellpeck.actuallyadditions.mod.blocks;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockContainerBase;
|
|
import de.ellpeck.actuallyadditions.mod.tile.TileEntityPhantomBooster;
|
|
import net.minecraft.block.material.Material;
|
|
import net.minecraft.item.EnumRarity;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.world.World;
|
|
|
|
public class BlockPhantomBooster extends BlockContainerBase{
|
|
|
|
public BlockPhantomBooster(String name){
|
|
super(Material.rock, name);
|
|
this.setHarvestLevel("pickaxe", 0);
|
|
this.setHardness(1.5F);
|
|
this.setResistance(10.0F);
|
|
this.setStepSound(soundTypeStone);
|
|
|
|
float f = 1F/16F;
|
|
this.setBlockBounds(3*f, 0F, 3*f, 1-3*f, 1F, 1-3*f);
|
|
}
|
|
|
|
@Override
|
|
public boolean isOpaqueCube(){
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
return EnumRarity.EPIC;
|
|
}
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World world, int i){
|
|
return new TileEntityPhantomBooster();
|
|
}
|
|
} |