2015-08-29 14:33:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* This file ("ItemPotionRing.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
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
2015-03-31 20:37:55 +02:00
|
|
|
|
package ellpeck.actuallyadditions.items;
|
|
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
|
import ellpeck.actuallyadditions.items.metalists.ThePotionRings;
|
2015-10-01 23:20:31 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
|
2015-06-12 19:12:06 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
2015-08-01 00:40:29 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.StringUtil;
|
2015-03-31 20:37:55 +02:00
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
import net.minecraft.potion.PotionEffect;
|
|
|
|
|
import net.minecraft.util.IIcon;
|
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
2015-10-01 23:20:31 +02:00
|
|
|
|
public class ItemPotionRing extends Item implements IActAddItemOrBlock{
|
2015-03-31 20:37:55 +02:00
|
|
|
|
|
|
|
|
|
public static final ThePotionRings[] allRings = ThePotionRings.values();
|
|
|
|
|
|
|
|
|
|
private boolean isAdvanced;
|
|
|
|
|
|
|
|
|
|
public ItemPotionRing(boolean isAdvanced){
|
|
|
|
|
this.setHasSubtypes(true);
|
|
|
|
|
this.setMaxStackSize(1);
|
|
|
|
|
this.isAdvanced = isAdvanced;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
|
public void onUpdate(ItemStack stack, World world, Entity player, int par4, boolean par5){
|
|
|
|
|
super.onUpdate(stack, world, player, par4, par5);
|
|
|
|
|
|
2015-06-12 19:12:06 +02:00
|
|
|
|
if(!world.isRemote && stack.getItemDamage() < allRings.length){
|
2015-04-06 15:51:59 +02:00
|
|
|
|
if(player instanceof EntityPlayer){
|
|
|
|
|
EntityPlayer thePlayer = (EntityPlayer)player;
|
|
|
|
|
ItemStack equippedStack = ((EntityPlayer)player).getCurrentEquippedItem();
|
|
|
|
|
|
|
|
|
|
ThePotionRings effect = ThePotionRings.values()[stack.getItemDamage()];
|
|
|
|
|
if(!effect.needsWaitBeforeActivating || !thePlayer.isPotionActive(effect.effectID)){
|
|
|
|
|
if(!((ItemPotionRing)stack.getItem()).isAdvanced){
|
2015-07-25 11:06:10 +02:00
|
|
|
|
if(equippedStack != null && stack == equippedStack){
|
2015-04-06 15:51:59 +02:00
|
|
|
|
thePlayer.addPotionEffect(new PotionEffect(effect.effectID, effect.activeTime, effect.normalAmplifier, true));
|
|
|
|
|
}
|
2015-03-31 20:37:55 +02:00
|
|
|
|
}
|
2015-10-02 16:48:01 +02:00
|
|
|
|
else{
|
2015-04-06 15:51:59 +02:00
|
|
|
|
thePlayer.addPotionEffect(new PotionEffect(effect.effectID, effect.activeTime, effect.advancedAmplifier, true));
|
2015-10-02 16:48:01 +02:00
|
|
|
|
}
|
2015-03-31 20:37:55 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getName(){
|
|
|
|
|
return this.isAdvanced ? "itemPotionRingAdvanced" : "itemPotionRing";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int getMetadata(int damage){
|
|
|
|
|
return damage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2015-06-12 19:12:06 +02:00
|
|
|
|
return stack.getItemDamage() >= allRings.length ? EnumRarity.common : allRings[stack.getItemDamage()].rarity;
|
2015-03-31 20:37:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("all")
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
|
public void getSubItems(Item item, CreativeTabs tab, List list){
|
|
|
|
|
for(int j = 0; j < allRings.length; j++){
|
|
|
|
|
list.add(new ItemStack(this, 1, j));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
2015-10-02 16:48:01 +02:00
|
|
|
|
return this.getUnlocalizedName()+(stack.getItemDamage() >= allRings.length ? " ERROR!" : allRings[stack.getItemDamage()].getName().substring("potion".length()));
|
2015-03-31 20:37:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public IIcon getIcon(ItemStack stack, int pass){
|
|
|
|
|
return this.itemIcon;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
|
public int getColorFromItemStack(ItemStack stack, int pass){
|
2015-06-12 19:12:06 +02:00
|
|
|
|
return stack.getItemDamage() >= allRings.length ? 0 : allRings[stack.getItemDamage()].color;
|
2015-03-31 20:37:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
|
public void registerIcons(IIconRegister iconReg){
|
2015-10-02 16:48:01 +02:00
|
|
|
|
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName());
|
2015-03-31 20:37:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String getItemStackDisplayName(ItemStack stack){
|
2015-08-01 00:40:29 +02:00
|
|
|
|
String standardName = StringUtil.localize(this.getUnlocalizedName()+".name");
|
2015-06-12 19:12:06 +02:00
|
|
|
|
if(stack.getItemDamage() < allRings.length){
|
2015-08-01 00:40:29 +02:00
|
|
|
|
String effect = StringUtil.localize(allRings[stack.getItemDamage()].getName());
|
2015-06-12 19:12:06 +02:00
|
|
|
|
return standardName+" "+effect;
|
|
|
|
|
}
|
|
|
|
|
return standardName;
|
2015-03-31 20:37:55 +02:00
|
|
|
|
}
|
|
|
|
|
}
|