mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-10-31 22:50:50 +01:00
51 lines
1.4 KiB
Java
51 lines
1.4 KiB
Java
/*
|
|
* This file ("BlockFishingNet.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.TileEntityFishingNet;
|
|
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 BlockFishingNet extends BlockContainerBase{
|
|
|
|
public BlockFishingNet(String name){
|
|
super(Material.wood, name);
|
|
this.setHarvestLevel("axe", 0);
|
|
this.setHardness(0.5F);
|
|
this.setResistance(3.0F);
|
|
this.setStepSound(soundTypeWood);
|
|
this.setBlockBounds(0F, 0F, 0F, 1F, 1F/16F, 1F);
|
|
}
|
|
|
|
@Override
|
|
public TileEntity createNewTileEntity(World world, int par2){
|
|
return new TileEntityFishingNet();
|
|
}
|
|
|
|
@Override
|
|
public boolean isFullCube(){
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean isOpaqueCube(){
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
return EnumRarity.RARE;
|
|
}
|
|
}
|