mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-05 08:29:09 +01:00
62 lines
1.7 KiB
Java
62 lines
1.7 KiB
Java
package ellpeck.actuallyadditions.items.tools;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import ellpeck.actuallyadditions.util.INameableItem;
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
import net.minecraft.item.EnumRarity;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.item.ItemSword;
|
|
import net.minecraft.util.IIcon;
|
|
import net.minecraftforge.oredict.OreDictionary;
|
|
|
|
public class ItemSwordAA extends ItemSword implements INameableItem{
|
|
|
|
private String name;
|
|
private String oredictName;
|
|
private EnumRarity rarity;
|
|
private String repairItem;
|
|
|
|
public ItemSwordAA(ToolMaterial toolMat, String repairItem, String unlocalizedName, EnumRarity rarity){
|
|
super(toolMat);
|
|
this.name = unlocalizedName;
|
|
this.rarity = rarity;
|
|
this.repairItem = repairItem;
|
|
this.oredictName = name;
|
|
}
|
|
|
|
@Override
|
|
public boolean getIsRepairable(ItemStack itemToRepair, ItemStack stack){
|
|
int[] idsStack = OreDictionary.getOreIDs(stack);
|
|
for(int id : idsStack){
|
|
if(OreDictionary.getOreName(id).equals(repairItem)) return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
return this.rarity;
|
|
}
|
|
|
|
@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(){
|
|
return name;
|
|
}
|
|
|
|
private String getOredictName(){
|
|
return oredictName;
|
|
}
|
|
}
|