2015-08-29 14:33:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* This file ("ItemResonantRice.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
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
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-10-01 23:20:31 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
|
2015-08-28 22:18:46 +02:00
|
|
|
|
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-10-01 23:20:31 +02:00
|
|
|
|
public class ItemResonantRice extends Item implements IActAddItemOrBlock{
|
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){
|
2015-10-02 16:48:01 +02:00
|
|
|
|
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName());
|
2015-04-24 19:22:03 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getName(){
|
2015-05-20 22:39:43 +02:00
|
|
|
|
return "itemResonantRice";
|
2015-04-24 19:22:03 +02:00
|
|
|
|
}
|
|
|
|
|
}
|