2015-11-09 18:05:52 +01:00
|
|
|
/*
|
|
|
|
* This file ("ItemCrystal.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
|
|
|
|
*
|
|
|
|
* © 2015 Ellpeck
|
|
|
|
*/
|
|
|
|
|
|
|
|
package ellpeck.actuallyadditions.items;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
import ellpeck.actuallyadditions.blocks.BlockCrystal;
|
2015-12-03 20:15:07 +01:00
|
|
|
import ellpeck.actuallyadditions.items.base.ItemBase;
|
2015-11-09 18:05:52 +01:00
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
2015-11-23 19:06:07 +01:00
|
|
|
import ellpeck.actuallyadditions.util.StringUtil;
|
2015-11-09 18:05:52 +01:00
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.IIcon;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class ItemCrystal extends ItemBase{
|
2015-11-09 18:05:52 +01:00
|
|
|
|
2015-11-14 21:27:36 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public IIcon[] textures;
|
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public ItemCrystal(String name){
|
|
|
|
super(name);
|
2015-11-09 18:05:52 +01:00
|
|
|
this.setHasSubtypes(true);
|
|
|
|
this.setMaxDamage(0);
|
|
|
|
}
|
|
|
|
|
2015-12-01 19:48:09 +01:00
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public IIcon getIconFromDamage(int par1){
|
|
|
|
return par1 >= this.textures.length ? null : this.textures[par1];
|
|
|
|
}
|
|
|
|
|
2015-11-09 18:05:52 +01:00
|
|
|
@Override
|
|
|
|
public int getMetadata(int damage){
|
|
|
|
return damage;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
2015-11-23 19:06:07 +01:00
|
|
|
return stack.getItemDamage() >= BlockCrystal.allCrystals.length ? StringUtil.BUGGED_ITEM_NAME : this.getUnlocalizedName()+BlockCrystal.allCrystals[stack.getItemDamage()].name;
|
2015-11-09 18:05:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return stack.getItemDamage() >= BlockCrystal.allCrystals.length ? EnumRarity.common : BlockCrystal.allCrystals[stack.getItemDamage()].rarity;
|
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings("all")
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void getSubItems(Item item, CreativeTabs tab, List list){
|
|
|
|
for(int j = 0; j < BlockCrystal.allCrystals.length; j++){
|
|
|
|
list.add(new ItemStack(this, 1, j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerIcons(IIconRegister iconReg){
|
2015-11-14 21:27:36 +01:00
|
|
|
this.textures = new IIcon[BlockCrystal.allCrystals.length];
|
|
|
|
for(int i = 0; i < this.textures.length; i++){
|
2015-12-03 20:15:07 +01:00
|
|
|
this.textures[i] = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName()+BlockCrystal.allCrystals[i].name);
|
2015-11-14 21:27:36 +01:00
|
|
|
}
|
2015-11-09 18:05:52 +01:00
|
|
|
}
|
|
|
|
}
|