Posted February 28, 201510 yr Hey, I don't know how to add multiple Effects to Food, I can only have 1 Effect because I use setPotionEffect. Thank you for your help. package de.unknwownassassin.powerapples; import net.minecraft.creativetab.CreativeTabs; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.Item; import net.minecraft.item.ItemFood; import net.minecraft.item.ItemStack; import net.minecraft.potion.Potion; import net.minecraft.potion.PotionEffect; import net.minecraft.world.World; public class ItemDiamondApple extends ItemFood { private PotionEffect effects; public ItemDiamondApple(int amount, boolean isWolfFood) { super(8, false); setPotionEffect(Potion.regeneration.id, 30, 5, 1.00F); this.setAlwaysEdible(); } }[/Code]
February 28, 201510 yr You could create your own class and overwrite onFoodEaten(thats where potion effects should be applied). But I have no idea if this is the best way. Here could be your advertisement!
February 28, 201510 yr Author Sry I'm not that pro, I should create a Class do @Overide public onFoodEaten and than?
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.