2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("ItemJams.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
|
2016-01-03 16:05:51 +01:00
|
|
|
* http://ellpeck.de/actaddlicense/
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-01-03 16:05:51 +01:00
|
|
|
* © 2016 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
2015-04-06 15:51:59 +02:00
|
|
|
|
2016-01-10 15:29:44 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemFoodBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheJams;
|
2016-03-19 15:10:20 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.IColorProvidingItem;
|
2016-01-10 15:29:44 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
2016-03-19 15:10:20 +01:00
|
|
|
import net.minecraft.client.renderer.color.IItemColor;
|
2015-04-06 15:51:59 +02:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
2015-04-06 15:51:59 +02:00
|
|
|
import net.minecraft.entity.item.EntityItem;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.init.Items;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.potion.Potion;
|
2015-04-06 15:51:59 +02:00
|
|
|
import net.minecraft.potion.PotionEffect;
|
2016-01-10 15:29:44 +01:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2015-04-06 15:51:59 +02:00
|
|
|
import net.minecraft.world.World;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2015-04-06 15:51:59 +02:00
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2016-03-19 15:10:20 +01:00
|
|
|
public class ItemJams extends ItemFoodBase implements IColorProvidingItem{
|
2015-04-06 15:51:59 +02:00
|
|
|
|
|
|
|
public static final TheJams[] allJams = TheJams.values();
|
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public ItemJams(String name){
|
|
|
|
super(0, 0.0F, false, name);
|
2015-04-06 15:51:59 +02:00
|
|
|
this.setHasSubtypes(true);
|
|
|
|
this.setMaxDamage(0);
|
2015-12-10 14:37:56 +01:00
|
|
|
this.setAlwaysEdible();
|
2015-04-06 15:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
public int getMetadata(int damage){
|
|
|
|
return damage;
|
2015-04-06 15:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
2015-11-23 19:06:07 +01:00
|
|
|
return stack.getItemDamage() >= allJams.length ? StringUtil.BUGGED_ITEM_NAME : this.getUnlocalizedName()+allJams[stack.getItemDamage()].name;
|
2015-04-06 15:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2016-01-07 21:41:28 +01:00
|
|
|
return stack.getItemDamage() >= allJams.length ? EnumRarity.COMMON : allJams[stack.getItemDamage()].rarity;
|
2015-04-06 15:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@SuppressWarnings("all")
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void getSubItems(Item item, CreativeTabs tab, List list){
|
2015-10-02 16:48:01 +02:00
|
|
|
for(int j = 0; j < allJams.length; j++){
|
2015-04-06 15:51:59 +02:00
|
|
|
list.add(new ItemStack(this, 1, j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-03-18 23:47:22 +01:00
|
|
|
public ItemStack onItemUseFinish(ItemStack stack, World world, EntityLivingBase player){
|
2016-01-07 21:41:28 +01:00
|
|
|
ItemStack stackToReturn = super.onItemUseFinish(stack, world, player);
|
2015-04-06 15:51:59 +02:00
|
|
|
|
2016-03-18 23:47:22 +01:00
|
|
|
if(player instanceof EntityPlayer && !world.isRemote && stack.getItemDamage() < allJams.length){
|
|
|
|
PotionEffect firstEffectToGet = new PotionEffect(Potion.getPotionById(allJams[stack.getItemDamage()].firstEffectToGet), 200);
|
2015-04-19 01:50:02 +02:00
|
|
|
player.addPotionEffect(firstEffectToGet);
|
|
|
|
|
2016-03-18 23:47:22 +01:00
|
|
|
PotionEffect secondEffectToGet = new PotionEffect(Potion.getPotionById(allJams[stack.getItemDamage()].secondEffectToGet), 600);
|
2015-04-19 01:50:02 +02:00
|
|
|
player.addPotionEffect(secondEffectToGet);
|
2015-04-06 15:51:59 +02:00
|
|
|
|
2016-04-20 21:39:03 +02:00
|
|
|
ItemStack returnItem = new ItemStack(Items.GLASS_BOTTLE);
|
2016-03-18 23:47:22 +01:00
|
|
|
if(!((EntityPlayer)player).inventory.addItemStackToInventory(returnItem.copy())){
|
2015-04-06 15:51:59 +02:00
|
|
|
EntityItem entityItem = new EntityItem(player.worldObj, player.posX, player.posY, player.posZ, returnItem.copy());
|
2016-01-07 21:41:28 +01:00
|
|
|
entityItem.setPickupDelay(0);
|
2015-04-06 15:51:59 +02:00
|
|
|
player.worldObj.spawnEntityInWorld(entityItem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return stackToReturn;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 21:41:28 +01:00
|
|
|
public int getHealAmount(ItemStack stack){
|
2015-10-03 10:19:40 +02:00
|
|
|
return stack.getItemDamage() >= allJams.length ? 0 : allJams[stack.getItemDamage()].healAmount;
|
2015-04-06 15:51:59 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-07 21:41:28 +01:00
|
|
|
public float getSaturationModifier(ItemStack stack){
|
2015-10-03 10:19:40 +02:00
|
|
|
return stack.getItemDamage() >= allJams.length ? 0 : allJams[stack.getItemDamage()].saturation;
|
2015-04-06 15:51:59 +02:00
|
|
|
}
|
2016-01-10 15:29:44 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void registerRendering(){
|
|
|
|
for(int i = 0; i < allJams.length; i++){
|
2016-04-20 21:39:03 +02:00
|
|
|
ActuallyAdditions.proxy.addRenderRegister(new ItemStack(this, 1, i), new ResourceLocation(ModUtil.MOD_ID, this.getBaseName()));
|
2016-01-10 15:29:44 +01:00
|
|
|
}
|
|
|
|
}
|
2016-03-19 15:10:20 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public IItemColor getColor(){
|
|
|
|
return new IItemColor(){
|
|
|
|
@Override
|
|
|
|
public int getColorFromItemstack(ItemStack stack, int pass){
|
|
|
|
return pass > 0 ? (stack.getItemDamage() >= allJams.length ? 0xFFFFFF : allJams[stack.getItemDamage()].color) : 0xFFFFFF;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2015-04-06 15:51:59 +02:00
|
|
|
}
|