本文整理匯總了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();
}
}
}