ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemJams.java

119 lines
4.4 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ItemJams.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02: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-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2017-01-01 16:23:26 +01:00
* © 2015-2017 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items;
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-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;
import net.minecraft.creativetab.CreativeTabs;
2016-03-18 23:47:22 +01:00
import net.minecraft.entity.EntityLivingBase;
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.ItemStack;
2016-03-18 23:47:22 +01:00
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
2016-11-19 21:11:17 +01:00
import net.minecraft.util.NonNullList;
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;
2016-03-19 15:10:20 +01:00
public class ItemJams extends ItemFoodBase implements IColorProvidingItem{
2016-06-17 23:50:38 +02:00
public static final TheJams[] ALL_JAMS = TheJams.values();
public ItemJams(String name){
super(0, 0.0F, false, name);
this.setHasSubtypes(true);
this.setMaxDamage(0);
2015-12-10 14:37:56 +01:00
this.setAlwaysEdible();
}
@Override
2015-10-03 10:19:40 +02:00
public int getMetadata(int damage){
return damage;
}
@Override
2018-08-04 04:22:20 +02:00
public String getTranslationKey(ItemStack stack){
return stack.getItemDamage() >= ALL_JAMS.length ? StringUtil.BUGGED_ITEM_NAME : this.getTranslationKey()+"_"+ALL_JAMS[stack.getItemDamage()].name;
}
@Override
2015-10-03 10:19:40 +02:00
public EnumRarity getRarity(ItemStack stack){
2016-06-17 23:50:38 +02:00
return stack.getItemDamage() >= ALL_JAMS.length ? EnumRarity.COMMON : ALL_JAMS[stack.getItemDamage()].rarity;
}
@Override
@SideOnly(Side.CLIENT)
public void getSubItems(CreativeTabs tab, NonNullList<ItemStack> list){
if(this.isInCreativeTab(tab)){
2017-06-17 00:48:49 +02:00
for(int j = 0; j < ALL_JAMS.length; j++){
list.add(new ItemStack(this, 1, j));
}
}
}
@Override
public ItemStack onItemUseFinish(ItemStack stack, World world, EntityLivingBase player){
ItemStack stackToReturn = super.onItemUseFinish(stack, world, player);
2016-06-17 23:50:38 +02:00
if(player instanceof EntityPlayer && !world.isRemote && stack.getItemDamage() < ALL_JAMS.length){
PotionEffect firstEffectToGet = new PotionEffect(Potion.getPotionById(ALL_JAMS[stack.getItemDamage()].firstEffectToGet), 200);
2015-04-19 01:50:02 +02:00
player.addPotionEffect(firstEffectToGet);
2016-06-17 23:50:38 +02:00
PotionEffect secondEffectToGet = new PotionEffect(Potion.getPotionById(ALL_JAMS[stack.getItemDamage()].secondEffectToGet), 600);
2015-04-19 01:50:02 +02:00
player.addPotionEffect(secondEffectToGet);
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())){
2016-11-26 21:32:27 +01:00
EntityItem entityItem = new EntityItem(player.world, player.posX, player.posY, player.posZ, returnItem.copy());
entityItem.setPickupDelay(0);
2016-11-26 21:32:27 +01:00
player.world.spawnEntity(entityItem);
}
}
return stackToReturn;
}
@Override
public int getHealAmount(ItemStack stack){
2016-06-17 23:50:38 +02:00
return stack.getItemDamage() >= ALL_JAMS.length ? 0 : ALL_JAMS[stack.getItemDamage()].healAmount;
}
@Override
public float getSaturationModifier(ItemStack stack){
2016-06-17 23:50:38 +02:00
return stack.getItemDamage() >= ALL_JAMS.length ? 0 : ALL_JAMS[stack.getItemDamage()].saturation;
}
@Override
protected void registerRendering(){
2016-06-17 23:50:38 +02:00
for(int i = 0; i < ALL_JAMS.length; i++){
2018-05-10 11:38:58 +02:00
ActuallyAdditions.PROXY.addRenderRegister(new ItemStack(this, 1, i), this.getRegistryName(), "inventory");
}
}
2016-03-19 15:10:20 +01:00
@Override
@SideOnly(Side.CLIENT)
2017-02-13 23:17:08 +01:00
public IItemColor getItemColor(){
2016-03-19 15:10:20 +01:00
return new IItemColor(){
@Override
2017-11-16 00:11:17 +01:00
public int colorMultiplier(ItemStack stack, int pass){
2016-06-17 23:50:38 +02:00
return pass > 0 ? (stack.getItemDamage() >= ALL_JAMS.length ? 0xFFFFFF : ALL_JAMS[stack.getItemDamage()].color) : 0xFFFFFF;
2016-03-19 15:10:20 +01:00
}
};
}
}