blob: 55f2d317fccdc1f9c91717acb5cc7443c771eb1f [file] [log] [blame] [raw]
package com.legacy.aether.items.food;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.world.World;
import com.legacy.aether.player.PlayerAether;
public class ItemWhiteApple extends ItemAetherFood
{
public ItemWhiteApple()
{
super(0);
this.setAlwaysEdible();
}
protected void onFoodEaten(ItemStack stack, World world, EntityPlayer player)
{
PlayerAether.get(player).attainCure(300);
}
}