summaryrefslogtreecommitdiffstats
path: root/src/main/java/net/minecraft/server/ItemFood.java
blob: 755e13c805b7a942f7069bc90b502a9cb2f5d2f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
package net.minecraft.server;

import org.bukkit.event.entity.FoodLevelChangeEvent; // CraftBukkit

public class ItemFood extends Item {

    public final int a;
    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;

    public ItemFood(int i, int j, float f, boolean flag) {
        super(i);
        this.a = 32;
        this.b = j;
        this.bS = flag;
        this.bR = f;
    }

    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;

        FoodLevelChangeEvent event = new FoodLevelChangeEvent(entityhuman.getBukkitEntity(), Math.min(this.n() + entityhuman.getFoodData().foodLevel, 20));
        entityhuman.world.getServer().getPluginManager().callEvent(event);

        if (!event.isCancelled()) {
            entityhuman.getFoodData().a(event.getFoodLevel() - oldFoodLevel, this.o());
        }
        // CraftBukkit end

        if (!world.isStatic && this.bU > 0 && world.random.nextFloat() < this.bX) {
            entityhuman.addEffect(new MobEffect(this.bU, this.bV * 20, this.bW));
        }

        return itemstack;
    }

    public int c(ItemStack itemstack) {
        return 32;
    }

    public EnumAnimation d(ItemStack itemstack) {
        return EnumAnimation.b;
    }

    public ItemStack a(ItemStack itemstack, World world, EntityHuman entityhuman) {
        if (entityhuman.b(this.bT)) {
            entityhuman.a(itemstack, this.c(itemstack));
        }

        return itemstack;
    }

    public int n() {
        return this.b;
    }

    public float o() {
        return this.bR;
    }

    public boolean p() {
        return this.bS;
    }

    public ItemFood a(int i, int j, int k, float f) {
        this.bU = i;
        this.bV = j;
        this.bW = k;
        this.bX = f;
        return this;
    }

    public ItemFood q() {
        this.bT = true;
        return this;
    }

    public Item a(String s) {
        return super.a(s);
    }
}