summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/event/enchantment/PrepareItemEnchantEvent.java
blob: ee0dc5041137c77043c17da0b0b1d1069082c431 (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
package org.bukkit.event.enchantment;

import org.bukkit.block.Block;
import org.bukkit.entity.Player;
import org.bukkit.event.Cancellable;
import org.bukkit.event.Event;
import org.bukkit.event.HandlerList;
import org.bukkit.inventory.ItemStack;

/**
 * Called when an ItemStack is inserted in an enchantment table - can be called multiple times
 */
@SuppressWarnings("serial")
public class PrepareItemEnchantEvent extends Event implements Cancellable {
    private static final HandlerList handlers = new HandlerList();
    private Block table;
    private ItemStack item;
    private int[] levels_offered;
    private int bonus;
    private boolean cancelled;
    private Player enchanter;

    public PrepareItemEnchantEvent(Player enchanter, Block table, ItemStack item, int[] levels_offered, int bonus) {
        this.enchanter = enchanter;
        this.table = table;
        this.item = item;
        this.levels_offered = levels_offered;
        this.bonus = bonus;
        this.cancelled = false;
    }

    /**
     * Gets the player enchanting the item
     *
     * @returns enchanting player
     */
    public Player getEnchanter() {
        return enchanter;
    }

    /**
     * Gets the block being used to enchant the item
     *
     * @return the block used for enchanting
     */
    public Block getEnchantBlock() {
        return table;
    }

    /**
     * Gets the item to be enchanted (can be modified)
     *
     * @return ItemStack of item
     */
    public ItemStack getItem() {
        return item;
    }

    /**
     * Get list of offered exp level costs of the enchantment (modify values to change offer)
     * @return experience level costs offered
     */
    public int[] getExpLevelCostsOffered() {
        return levels_offered;
    }

    /**
     * Get enchantment bonus in effect - corresponds to number of bookshelves
     * @return enchantment bonus
     */
    public int getEnchantmentBonus() {
        return bonus;
    }

    public boolean isCancelled() {
        return cancelled;
    }

    public void setCancelled(boolean cancel) {
        this.cancelled = cancel;
    }

    @Override
    public HandlerList getHandlers() {
        return handlers;
    }

    public static HandlerList getHandlerList() {
        return handlers;
    }
}