Package-level declarations

Types

Link copied to clipboard
Link copied to clipboard
data class SimpleEnchantment(val enchantment: Enchantment, val level: Int = 1)

Represents an enchantment

Link copied to clipboard
abstract class UiAction(val player: Player, val type: ClickType, val event: InventoryClickEvent)
Link copied to clipboard
data class UiEntry(val item: ItemStack, val action: (action: UiAction) -> Unit = {})

Functions

Link copied to clipboard
fun ItemStack.addEnchantments(vararg enchantments: Enchantment): ItemStack

Adds the given enchantments to this ItemStack with default level 1

fun ItemStack.addEnchantments(vararg enchantments: SimpleEnchantment): ItemStack

Adds the given enchantments to this ItemStack

Link copied to clipboard
fun ItemStack.addFlags(vararg flags: ItemFlag): ItemStack

Adds the given flags to this ItemStack

Link copied to clipboard
fun ItemStack.amount(amount: Int): ItemStack

Sets the amount of this ItemStack

Link copied to clipboard
fun String.bukkitColor(vararg args: Any): String

Turns this string into a bukkit colored string

Link copied to clipboard

Strips the colors from this string

Link copied to clipboard
fun ItemStack.color(color: Color): ItemStack

Sets the color if the item is leather armor

Link copied to clipboard
fun ItemStack.damage(damage: Int): ItemStack

Sets the damage to this ItemStack

Link copied to clipboard
fun XMaterial.itemStack(): ItemStack
Link copied to clipboard
fun ItemStack.lore(vararg lore: String, append: Boolean = false): ItemStack
fun ItemStack.lore(lore: List<String>, append: Boolean = false): ItemStack

Sets the lore of this ItemStack

Link copied to clipboard
fun ItemStack.loreLine(line: String): ItemStack

Adds a line to the lore of this ItemStack

Link copied to clipboard
fun ItemStack.loreLines(vararg lines: String): ItemStack

Adds the given lines to the lore of this ItemStack

Link copied to clipboard
fun ItemStack.removeEnchantments(vararg enchantments: Enchantment): ItemStack
fun ItemStack.removeEnchantments(vararg enchantments: SimpleEnchantment): ItemStack

Removes the given enchantments from this ItemStack

Link copied to clipboard
fun ItemStack.removeFlags(vararg flags: ItemFlag): ItemStack

Removes the given flags from this ItemStack

Link copied to clipboard
fun ItemStack.setGlowing(glowing: Boolean = true): ItemStack

Sets the glowing effect on this ItemStack. (If true the enchantments will be hidden)

Link copied to clipboard
fun ItemStack.setName(name: String): ItemStack

Sets the name of this ItemStack

Link copied to clipboard
fun ItemStack.toggleEnchantments(vararg enchantments: SimpleEnchantment): ItemStack

Toggles the given enchantments on this ItemStack. If the enchantment is already set, it will be removed.

Link copied to clipboard
fun ItemStack.toggleFlags(vararg flags: ItemFlag): ItemStack

Toggles the given flags on this ItemStack. If the flag is already set, it will be removed.

Properties

Link copied to clipboard
val ItemStack.enchantments: Map<Enchantment, Int>

Gets the enchantments of this ItemStack

Link copied to clipboard
val ItemStack.flags: List<ItemFlag>

Gets the flags of this ItemStack

Link copied to clipboard
val ItemStack.lore: List<String>

Gets the lore of this ItemStack

Link copied to clipboard
val ItemStack.name: String

Gets the name of this ItemStack