2015-04-24 19:22:03 +02:00
|
|
|
package ellpeck.actuallyadditions.items;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-08-28 22:18:46 +02:00
|
|
|
import ellpeck.actuallyadditions.util.INameableItem;
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
2015-04-24 19:22:03 +02:00
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.IIcon;
|
2015-05-20 22:39:43 +02:00
|
|
|
import net.minecraft.world.World;
|
2015-04-24 19:22:03 +02:00
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
public class ItemResonantRice extends Item implements INameableItem{
|
2015-04-24 19:22:03 +02:00
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
@Override
|
|
|
|
public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player){
|
|
|
|
if(!world.isRemote){
|
|
|
|
stack.stackSize--;
|
|
|
|
world.createExplosion(null, player.posX, player.posY, player.posZ, 0.5F, true);
|
|
|
|
}
|
|
|
|
return stack;
|
2015-04-24 19:22:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2015-05-20 22:39:43 +02:00
|
|
|
return EnumRarity.epic;
|
2015-04-24 19:22:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IIcon getIcon(ItemStack stack, int pass){
|
|
|
|
return this.itemIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerIcons(IIconRegister iconReg){
|
|
|
|
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER + ":" + this.getName());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getName(){
|
2015-05-20 22:39:43 +02:00
|
|
|
return "itemResonantRice";
|
2015-04-24 19:22:03 +02:00
|
|
|
}
|
|
|
|
}
|