robin j’ai fais un truc du genre :
package fr.Mosca421.mods.Items;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.world.World;
public class strengthstick extends Item {
public strengthstick(){
super();
this.setMaxDamage(16);
this.setMaxStackSize(1);
}
public ItemStack onUpdate(ItemStack item, World world, EntityPlayer player)
{
if(item.getTagCompound().getInteger("timer") > 0)
item.getTagCompound().getInteger("timer");
return item;
}
public ItemStack onItemRightClick(ItemStack item, World world, EntityPlayer player) {
if(!item.hasTagCompound())
{
item.setTagCompound(new NBTTagCompound());
item.getTagCompound().setInteger("timer", 20);
item.damageItem(1, player);
player.addPotionEffect(new PotionEffect(Potion.damageBoost.id, 50, 2));
}
return item;
}
@SideOnly(Side.CLIENT)
public boolean hasEffect(ItemStack item)
{
return true;
}
}
Il me manque pour eleveer 1 a timer je fais comment au juste ?