Paper/src/main/java/net/minecraft/server/ItemFood.java

94 Zeilen
2.2 KiB
Java

2011-09-22 00:54:31 +02:00
package net.minecraft.server;
import org.bukkit.event.entity.FoodLevelChangeEvent; // CraftBukkit
public class ItemFood extends Item {
public final int a;
2011-11-20 09:01:14 +01:00
private final int b;
private final float bR;
private final boolean bS;
private boolean bT;
private int bU;
private int bV;
private int bW;
private float bX;
2011-09-22 00:54:31 +02:00
public ItemFood(int i, int j, float f, boolean flag) {
super(i);
this.a = 32;
2011-11-20 09:01:14 +01:00
this.b = j;
this.bS = flag;
this.bR = f;
2011-09-22 00:54:31 +02:00
}
public ItemFood(int i, int j, boolean flag) {
this(i, j, 0.6F, flag);
}
public ItemStack b(ItemStack itemstack, World world, EntityHuman entityhuman) {
--itemstack.count;
// CraftBukkit start
int oldFoodLevel = entityhuman.getFoodData().foodLevel;
2011-11-20 09:01:14 +01:00
FoodLevelChangeEvent event = new FoodLevelChangeEvent(entityhuman.getBukkitEntity(), Math.min(this.n() + entityhuman.getFoodData().foodLevel, 20));
2011-09-22 00:54:31 +02:00
entityhuman.world.getServer().getPluginManager().callEvent(event);
if (!event.isCancelled()) {
2011-11-20 09:01:14 +01:00
entityhuman.getFoodData().a(event.getFoodLevel() - oldFoodLevel, this.o());
2011-09-22 00:54:31 +02:00
}
// CraftBukkit end
2011-11-20 09:01:14 +01:00
if (!world.isStatic && this.bU > 0 && world.random.nextFloat() < this.bX) {
entityhuman.addEffect(new MobEffect(this.bU, this.bV * 20, this.bW));
2011-09-22 00:54:31 +02:00
}
return itemstack;
}
public int c(ItemStack itemstack) {
return 32;
}
2011-11-20 09:01:14 +01:00
public EnumAnimation d(ItemStack itemstack) {
2011-09-22 00:54:31 +02:00
return EnumAnimation.b;
}
public ItemStack a(ItemStack itemstack, World world, EntityHuman entityhuman) {
2011-11-20 09:01:14 +01:00
if (entityhuman.b(this.bT)) {
2011-09-22 00:54:31 +02:00
entityhuman.a(itemstack, this.c(itemstack));
}
return itemstack;
}
2011-11-20 09:01:14 +01:00
public int n() {
return this.b;
2011-09-22 00:54:31 +02:00
}
2011-11-20 09:01:14 +01:00
public float o() {
return this.bR;
2011-09-22 00:54:31 +02:00
}
2011-11-20 09:01:14 +01:00
public boolean p() {
return this.bS;
2011-09-22 00:54:31 +02:00
}
public ItemFood a(int i, int j, int k, float f) {
2011-11-20 09:01:14 +01:00
this.bU = i;
this.bV = j;
this.bW = k;
this.bX = f;
2011-09-22 00:54:31 +02:00
return this;
}
2011-11-20 09:01:14 +01:00
public ItemFood q() {
this.bT = true;
2011-09-22 00:54:31 +02:00
return this;
}
public Item a(String s) {
return super.a(s);
}
}