inventory

fun inventory(inventory: Inventory, id: String = inventory.toString()): CustomInventory
fun inventory(inventory: Inventory, id: String = inventory.toString(), action: CustomInventory.() -> Unit): CustomInventory

Inventory から CustomInventory を生成する。

Return

CustomInventory

Since

2.3.0

Parameters

inventory

Inventory

id

インベントリの識別子 default: inventory.toString()

fun inventory(display: String, type: InventoryType, id: String = display): CustomInventory

InventoryType から CustomInventory を生成する。

Return

CustomInventory

Since

2.3.0

Parameters

display

インベントリのタイトル

type

インベントリの種類

id

インベントリの識別子 default: display

fun inventory(display: String, type: InventoryType, id: String = display, action: CustomInventoryAction): CustomInventory

InventoryType から CustomInventory を生成する。

Return

CustomInventory

Since

2.3.0

Parameters

display

インベントリのタイトル

type

インベントリの種類

id

インベントリの識別子 default: display

action

インベントリに対して実行する処理

fun inventory(display: String, line: Int = 3, id: String = display): CustomInventory

チェストタイプの CustomInventory を生成する。

Return

CustomInventory

Since

2.3.0

Parameters

display

インベントリのタイトル

line

インベントリの行数 default: 3

id

インベントリの識別子 default: display

fun inventory(display: String, line: Int = 3, id: String = display, action: CustomInventoryAction): CustomInventory

チェストタイプの CustomInventory を生成する。

Return

CustomInventory

Since

2.3.0

Parameters

display

インベントリのタイトル

line

インベントリの行数 default: 3

id

インベントリの識別子 default: display

action

インベントリに対して実行する処理