2015-11-09 18:05:52 +01:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("ItemCrystal.java") is part of the Actually Additions mod for Minecraft.
|
2015-11-09 18:05:52 +01:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-11-09 18:05:52 +01:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 Ellpeck
|
2015-11-09 18:05:52 +01:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
2015-11-09 18:05:52 +01:00
|
|
|
|
2016-01-10 02:51:31 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.blocks.BlockCrystal;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
2015-11-09 18:05:52 +01:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2016-11-19 21:11:17 +01:00
|
|
|
import net.minecraft.util.NonNullList;
|
2016-06-01 00:37:28 +02:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2015-11-09 18:05:52 +01:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class ItemCrystal extends ItemBase{
|
2015-11-09 18:05:52 +01:00
|
|
|
|
2016-11-16 20:31:16 +01:00
|
|
|
private final boolean isEmpowered;
|
2016-08-03 13:36:42 +02:00
|
|
|
|
|
|
|
public ItemCrystal(String name, boolean isEmpowered){
|
2015-12-03 20:15:07 +01:00
|
|
|
super(name);
|
2016-08-03 13:36:42 +02:00
|
|
|
this.isEmpowered = isEmpowered;
|
2015-11-09 18:05:52 +01:00
|
|
|
this.setHasSubtypes(true);
|
|
|
|
this.setMaxDamage(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getMetadata(int damage){
|
|
|
|
return damage;
|
|
|
|
}
|
|
|
|
|
2016-08-03 13:36:42 +02:00
|
|
|
@Override
|
|
|
|
public boolean hasEffect(ItemStack stack){
|
|
|
|
return this.isEmpowered;
|
|
|
|
}
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-11-09 18:05:52 +01:00
|
|
|
@Override
|
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
2016-11-19 23:12:22 +01:00
|
|
|
return stack.getItemDamage() >= BlockCrystal.ALL_CRYSTALS.length ? StringUtil.BUGGED_ITEM_NAME : this.getUnlocalizedName()+"_"+BlockCrystal.ALL_CRYSTALS[stack.getItemDamage()].name;
|
2015-11-09 18:05:52 +01:00
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-11-09 18:05:52 +01:00
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2016-06-17 23:50:38 +02:00
|
|
|
return stack.getItemDamage() >= BlockCrystal.ALL_CRYSTALS.length ? EnumRarity.COMMON : BlockCrystal.ALL_CRYSTALS[stack.getItemDamage()].rarity;
|
2015-11-09 18:05:52 +01:00
|
|
|
}
|
|
|
|
|
2016-06-10 21:52:37 +02:00
|
|
|
@Override
|
2016-02-01 17:49:55 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
2017-07-28 03:17:50 +02:00
|
|
|
public void getSubItems(CreativeTabs tab, NonNullList<ItemStack> list){
|
2017-06-29 18:30:02 +02:00
|
|
|
if(this.isInCreativeTab(tab)){
|
2017-06-17 00:48:49 +02:00
|
|
|
for(int j = 0; j < BlockCrystal.ALL_CRYSTALS.length; j++){
|
|
|
|
list.add(new ItemStack(this, 1, j));
|
|
|
|
}
|
2016-02-01 17:49:55 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-10 02:51:31 +01:00
|
|
|
@Override
|
|
|
|
protected void registerRendering(){
|
2016-06-17 23:50:38 +02:00
|
|
|
for(int i = 0; i < BlockCrystal.ALL_CRYSTALS.length; i++){
|
2016-11-19 23:12:22 +01:00
|
|
|
String name = this.getRegistryName()+"_"+BlockCrystal.ALL_CRYSTALS[i].name;
|
2016-06-01 00:37:28 +02:00
|
|
|
ActuallyAdditions.proxy.addRenderRegister(new ItemStack(this, 1, i), new ResourceLocation(name), "inventory");
|
2016-01-10 02:51:31 +01:00
|
|
|
}
|
|
|
|
}
|
2015-11-09 18:05:52 +01:00
|
|
|
}
|