5 juin 2014, 17:27

Merci de ta réponse rapide, mais peut-tu plutôt m’aider par rapport a ma classe “Armures” s’il te plait ?
Je voudrais rajouter encore 4 autres armures avec des effets différents.

La voici :

package fr.blackpandagaming.dragonadventure.common;

import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemArmor;
import net.minecraft.item.ItemStack;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.world.World;

public class Armures extends ItemArmor
{

public Armures(ArmorMaterial material, int type)
{
super(material, 0, type);
}

//Armure en Dragonite blanche

public String getArmorTexture(ItemStack stack, Entity entity, int slot, String type)
{
if(stack.getItem() == DragonAdventure.pentalonDragoniteBlanche)
{
return DragonAdventure.MODID + ":textures/models/armor/DragoniteBlanche_leyer_2.png";
}
return DragonAdventure.MODID + ":textures/models/armor/DragoniteBlanche_leyer_1.png";
}

public boolean getIsRepairable1(ItemStack input, ItemStack repair)
{
if(repair.getItem() == DragonAdventure.dragoniteBlanche || repair.getItem() == DragonAdventure.dragoniteBlanche)
{
return true;
}
return false;
}

public void onArmorTick1(World world, EntityPlayer player, ItemStack stack)
{
player.addPotionEffect(new PotionEffect(Potion.nightVision.id, 210, 2));
}
}