本文整理汇总了Java中org.bukkit.inventory.meta.ItemMeta.hasEnchants方法的典型用法代码示例。如果您正苦于以下问题:Java ItemMeta.hasEnchants方法的具体用法?Java ItemMeta.hasEnchants怎么用?Java ItemMeta.hasEnchants使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.bukkit.inventory.meta.ItemMeta
的用法示例。
在下文中一共展示了ItemMeta.hasEnchants方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: serializeForMenu
import org.bukkit.inventory.meta.ItemMeta; //导入方法依赖的package包/类
private static String serializeForMenu(ItemStack item) {
StringBuilder sb = new StringBuilder();
sb.append(item.getType());
sb.append('$');
sb.append(item.getAmount());
if (item.hasItemMeta()) {
ItemMeta im = item.getItemMeta();
if (im.hasDisplayName()) {
sb.append('#');
sb.append(im.getDisplayName());
}
if (im.hasLore()) {
sb.append('#');
sb.append(im.getLore().toString());
}
if (im.hasEnchants()) {
sb.append('#');
sb.append(im.getEnchants().toString());
}
}
return sb.toString();
}
示例2: addLootItem
import org.bukkit.inventory.meta.ItemMeta; //导入方法依赖的package包/类
/**
* Add a loot item to the random loot collection
*
* @param item the item to add
* @param weight the generation weight of the item
* @param updateFile whether to update the dragon file or not
*/
@SuppressWarnings("deprecation")
public void addLootItem(ItemStack item, double weight, boolean updateFile) {
Validate.notNull(item, "Cannot add null ItemStack to loot");
if (weight < 0) weight = 0;
this.loot.add(weight, item);
if (updateFile && template.configFile != null) {
FileConfiguration config = template.configFile;
int itemID = loot.size();
config.set("loot." + itemID + ".weight", weight);
config.set("loot." + itemID + ".type", item.getType().name());
if (item.getData().getData() != 0) config.set("loot." + itemID + ".data", item.getData().getData());
if (item.getDurability() != 0) config.set("loot." + itemID + ".damage", item.getDurability());
config.set("loot." + itemID + ".amount", item.getAmount());
if (item.hasItemMeta()) {
ItemMeta meta = item.getItemMeta();
if (meta.hasDisplayName()) config.set("loot." + itemID + ".display-name", meta.getDisplayName());
if (meta.hasLore()) config.set("loot." + itemID + ".lore", meta.getLore());
if (meta.hasEnchants()) {
for (Enchantment enchant : meta.getEnchants().keySet()) {
config.set("loot." + itemID + ".enchantments." + enchant.getName(), meta.getEnchantLevel(enchant));
}
}
}
try {
config.save(template.file);
} catch (IOException e) {
e.printStackTrace();
}
}
}