[Bleeding] Added EnchantmentTable API.

This commit is contained in:
Mike Primm
2012-01-21 01:26:45 -06:00
committed by EvilSeph
parent 2b9c374865
commit 1a9118f8d2
2 changed files with 196 additions and 0 deletions

View File

@@ -0,0 +1,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;
}
}