|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.bukkit.enchantments.Enchantment
public abstract class Enchantment
The various type of enchantments that may be added to armour or weapons
Field Summary | |
---|---|
static Enchantment |
ARROW_DAMAGE
Provides extra damage when shooting arrows from bows |
static Enchantment |
ARROW_FIRE
Sets entities on fire when hit by arrows shot from a bow |
static Enchantment |
ARROW_INFINITE
Provides infinite arrows when shooting a bow |
static Enchantment |
ARROW_KNOCKBACK
Provides a knockback when an entity is hit by an arrow from a bow |
static Enchantment |
DAMAGE_ALL
Increases damage against all targets |
static Enchantment |
DAMAGE_ARTHROPODS
Increases damage against arthropod targets |
static Enchantment |
DAMAGE_UNDEAD
Increases damage against undead targets |
static Enchantment |
DIG_SPEED
Increases the rate at which you mine/dig |
static Enchantment |
DURABILITY
Decreases the rate at which a tool looses durability |
static Enchantment |
FIRE_ASPECT
When attacking a target, has a chance to set them on fire |
static Enchantment |
KNOCKBACK
All damage to other targets will knock them back when hit |
static Enchantment |
LOOT_BONUS_BLOCKS
Provides a chance of gaining extra loot when destroying blocks |
static Enchantment |
LOOT_BONUS_MOBS
Provides a chance of gaining extra loot when killing monsters |
static Enchantment |
OXYGEN
Decreases the rate of air loss whilst underwater |
static Enchantment |
PROTECTION_ENVIRONMENTAL
Provides protection against environmental damage |
static Enchantment |
PROTECTION_EXPLOSIONS
Provides protection against explosive damage |
static Enchantment |
PROTECTION_FALL
Provides protection against fall damage |
static Enchantment |
PROTECTION_FIRE
Provides protection against fire damage |
static Enchantment |
PROTECTION_PROJECTILE
Provides protection against projectile damage |
static Enchantment |
SILK_TOUCH
Allows blocks to drop themselves instead of fragments (for example, stone instead of cobblestone) |
static Enchantment |
THORNS
Damages the attacker |
static Enchantment |
WATER_WORKER
Increases the speed at which a player may mine underwater |
Constructor Summary | |
---|---|
Enchantment(int id)
|
Method Summary | |
---|---|
abstract boolean |
canEnchantItem(ItemStack item)
Checks if this Enchantment may be applied to the given ItemStack . |
abstract boolean |
conflictsWith(Enchantment other)
Check if this enchantment conflicts with another enchantment. |
boolean |
equals(Object obj)
|
static Enchantment |
getById(int id)
Deprecated. Magic value |
static Enchantment |
getByName(String name)
Gets the Enchantment at the specified name |
int |
getId()
Deprecated. Magic value |
abstract EnchantmentTarget |
getItemTarget()
Gets the type of ItemStack that may fit this Enchantment. |
abstract int |
getMaxLevel()
Gets the maximum level that this Enchantment may become. |
abstract String |
getName()
Gets the unique name of this enchantment |
abstract int |
getStartLevel()
Gets the level that this Enchantment should start at |
int |
hashCode()
|
static boolean |
isAcceptingRegistrations()
Checks if this is accepting Enchantment registrations. |
static void |
registerEnchantment(Enchantment enchantment)
Registers an enchantment with the given ID and object. |
static void |
stopAcceptingRegistrations()
Stops accepting any enchantment registrations |
String |
toString()
|
static Enchantment[] |
values()
Gets an array of all the registered Enchantment s |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Field Detail |
---|
public static final Enchantment PROTECTION_ENVIRONMENTAL
public static final Enchantment PROTECTION_FIRE
public static final Enchantment PROTECTION_FALL
public static final Enchantment PROTECTION_EXPLOSIONS
public static final Enchantment PROTECTION_PROJECTILE
public static final Enchantment OXYGEN
public static final Enchantment WATER_WORKER
public static final Enchantment THORNS
public static final Enchantment DAMAGE_ALL
public static final Enchantment DAMAGE_UNDEAD
public static final Enchantment DAMAGE_ARTHROPODS
public static final Enchantment KNOCKBACK
public static final Enchantment FIRE_ASPECT
public static final Enchantment LOOT_BONUS_MOBS
public static final Enchantment DIG_SPEED
public static final Enchantment SILK_TOUCH
public static final Enchantment DURABILITY
public static final Enchantment LOOT_BONUS_BLOCKS
public static final Enchantment ARROW_DAMAGE
public static final Enchantment ARROW_KNOCKBACK
public static final Enchantment ARROW_FIRE
public static final Enchantment ARROW_INFINITE
Constructor Detail |
---|
public Enchantment(int id)
Method Detail |
---|
@Deprecated public int getId()
public abstract String getName()
public abstract int getMaxLevel()
public abstract int getStartLevel()
public abstract EnchantmentTarget getItemTarget()
ItemStack
that may fit this Enchantment.
public abstract boolean conflictsWith(Enchantment other)
other
- The enchantment to check against
public abstract boolean canEnchantItem(ItemStack item)
ItemStack
.
This does not check if it conflicts with any enchantments already applied to the item.
item
- Item to test
public boolean equals(Object obj)
equals
in class Object
public int hashCode()
hashCode
in class Object
public String toString()
toString
in class Object
public static void registerEnchantment(Enchantment enchantment)
Generally not to be used from within a plugin.
enchantment
- Enchantment to registerpublic static boolean isAcceptingRegistrations()
public static void stopAcceptingRegistrations()
@Deprecated public static Enchantment getById(int id)
id
- ID to fetch
public static Enchantment getByName(String name)
name
- Name to fetch
public static Enchantment[] values()
Enchantment
s
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |