mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-16 21:13:11 +01:00
51 lines
1.4 KiB
Java
51 lines
1.4 KiB
Java
|
/*
|
||
|
* This file ("BlockFlower.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
|
||
|
*
|
||
|
* © 2015 Ellpeck
|
||
|
*/
|
||
|
|
||
|
package ellpeck.actuallyadditions.blocks;
|
||
|
|
||
|
import cpw.mods.fml.relauncher.Side;
|
||
|
import cpw.mods.fml.relauncher.SideOnly;
|
||
|
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
|
||
|
import ellpeck.actuallyadditions.util.ModUtil;
|
||
|
import net.minecraft.block.BlockBush;
|
||
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
||
|
import net.minecraft.item.EnumRarity;
|
||
|
import net.minecraft.item.ItemStack;
|
||
|
import net.minecraft.util.IIcon;
|
||
|
|
||
|
public class BlockBlackLotus extends BlockBush implements IActAddItemOrBlock{
|
||
|
|
||
|
public BlockBlackLotus(){
|
||
|
this.setStepSound(soundTypeGrass);
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public String getName(){
|
||
|
return "blockBlackLotus";
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public EnumRarity getRarity(ItemStack stack){
|
||
|
return EnumRarity.epic;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
@SideOnly(Side.CLIENT)
|
||
|
public IIcon getIcon(int side, int meta){
|
||
|
return this.blockIcon;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
@SideOnly(Side.CLIENT)
|
||
|
public void registerBlockIcons(IIconRegister iconReg){
|
||
|
this.blockIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName());
|
||
|
}
|
||
|
}
|