EnchantmentLevelSetEvent

Link to enchantmentlevelsetevent

Fired when the enchantment level is set for each of the three potential enchantments in the enchanting table. The level is set to the vanilla value and can be modified by this event handler.

The enchantRow is used to determine which enchantment level is being set, 1, 2, or 3. The power is a number from 0-15 and indicates how many bookshelves surround the enchanting table. The itemStack representing the item being enchanted is also available.

The event is not cancelable.

The event does not have a result.

Импорт класса

Link to импорт-класса

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.event.enchanting.EnchantmentLevelSetEvent;

EnchantmentLevelSetEvent extends Event. That means all methods available in Event are also available in EnchantmentLevelSetEvent

Name: getEnchantRow

Gets the row in the Enchanting Table that this event is fired for.

Returns: The row that this event is fired for.
Return Type: int

ZenScript
Copy
// EnchantmentLevelSetEvent.getEnchantRow() as int

myEnchantmentLevelSetEvent.getEnchantRow();

Name: getItem

Gets the ItemStack that is being enchanted.

Returns: The ItemStack that is being enchanted.
Return Type: IItemStack

ZenScript
Copy
// EnchantmentLevelSetEvent.getItem() as IItemStack

myEnchantmentLevelSetEvent.getItem();

Name: getLevel

Gets the current level of the enchantment for this row.

This value can be changed by other mods.

Returns: The current level of the enchantment for this row.
Return Type: int

ZenScript
Copy
// EnchantmentLevelSetEvent.getLevel() as int

myEnchantmentLevelSetEvent.getLevel();

Link to getOriginalLevel

Name: getOriginalLevel

Gets the original level of the enchantment for this row.

Returns: The original level of the enchantment for this row.
Return Type: int

ZenScript
Copy
// EnchantmentLevelSetEvent.getOriginalLevel() as int

myEnchantmentLevelSetEvent.getOriginalLevel();

Name: getPos

Gets the position of the Enchanting Table firing this event.

Returns: The positiong of the Enchanting Table.
Return Type: BlockPos

ZenScript
Copy
// EnchantmentLevelSetEvent.getPos() as BlockPos

myEnchantmentLevelSetEvent.getPos();

Name: getPower

Gets the Enchanting Power of the Enchanting Table.

Returns: The Enchanting Power of the Enchanting Table.
Return Type: int

ZenScript
Copy
// EnchantmentLevelSetEvent.getPower() as int

myEnchantmentLevelSetEvent.getPower();

Name: getWorld

Gets the Level where the Enchanting Table is.

Returns: The Level where the event is fired in.
Return Type: Level

ZenScript
Copy
// EnchantmentLevelSetEvent.getWorld() as Level

myEnchantmentLevelSetEvent.getWorld();

Name: setLevel

Sets the level of the enchantment for this row.

Setting this to 0 will make this row not have an enchantment.

Return Type: void

ZenScript
Copy
// EnchantmentLevelSetEvent.setLevel(level as int) as void

myEnchantmentLevelSetEvent.setLevel(5);
ПараметрТипОписание
Параметр
level
Тип
int
Описание
The new enchantment level.

Свойства

Link to свойства

НазваниеТипИмеет GetterИмеет SetterОписание
Название
enchantRow
Тип
int
Имеет Getter
true
Имеет Setter
false
Описание
Gets the row in the Enchanting Table that this event is fired for.
Название
item
Тип
IItemStack
Имеет Getter
true
Имеет Setter
false
Описание
Gets the ItemStack that is being enchanted.
Название
level
Тип
int
Имеет Getter
true
Имеет Setter
true
Описание
Gets the current level of the enchantment for this row.

This value can be changed by other mods.
Название
originalLevel
Тип
int
Имеет Getter
true
Имеет Setter
false
Описание
Gets the original level of the enchantment for this row.
Название
pos
Тип
BlockPos
Имеет Getter
true
Имеет Setter
false
Описание
Gets the position of the Enchanting Table firing this event.
Название
power
Тип
int
Имеет Getter
true
Имеет Setter
false
Описание
Gets the Enchanting Power of the Enchanting Table.
Название
world
Тип
Level
Имеет Getter
true
Имеет Setter
false
Описание
Gets the Level where the Enchanting Table is.