跳转至主要内容

物品表达式

Hikari允许您使用字符串来表示或匹配物品。

匹配 Material 名称

直接填写Bukkit的 Material 名称。

- BEDROCK # select items that matches given material name
- GOLDEN_SWORD

您可以在这里 找到所有 Material 名称

匹配 物品引用

在物品引用名称前添加 @ 前缀。

- "@purediamond" # select items that matches with specfics item references

您可参考 物品引用系统

匹配 附魔

info

此功能自 Hikari-4.0.0.0 以来被添加。

在附魔 Namespaced Key 之前添加 % 前缀。

- "%minecraft:sharpness" # select all items with sharpness enchantment
- "%minecraft:sharpness|1|3" # select all items with sharpness enchantment but only the enchantment level between 1 and 3
- "%ecoenchants:soulbound" # it also support 3rd-party enchantments IF they registered into Bukkit enchantments registry...