當前位置: 首頁>>代碼示例>>Java>>正文


Java Potion.hasExtendedDuration方法代碼示例

本文整理匯總了Java中org.bukkit.potion.Potion.hasExtendedDuration方法的典型用法代碼示例。如果您正苦於以下問題:Java Potion.hasExtendedDuration方法的具體用法?Java Potion.hasExtendedDuration怎麽用?Java Potion.hasExtendedDuration使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.bukkit.potion.Potion的用法示例。


在下文中一共展示了Potion.hasExtendedDuration方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: testValidity

import org.bukkit.potion.Potion; //導入方法依賴的package包/類
private boolean testValidity(ItemStack[] contents) {
    for (ItemStack stack : contents) {
        if (stack != null && stack.getType() == Material.POTION && stack.getDurability() != 0) {
            Potion potion = Potion.fromItemStack(stack);

            // Just to be safe, null check this.
            if (potion == null)
                continue;

            PotionType type = potion.getType();

            // Mundane potions etc, can return a null type
            if (type == null)
                continue;

            // is 33s poison, allow
            if (type == PotionType.POISON && !potion.hasExtendedDuration() && potion.getLevel() == 1) {
                continue;
            }

            if (potion.getLevel() > getMaxLevel(type)) {
                return false;
            }
        }
    }
    return true;
}
 
開發者ID:funkemunky,項目名稱:HCFCore,代碼行數:28,代碼來源:PotionLimitListener.java

示例2: isExtendedPotion

import org.bukkit.potion.Potion; //導入方法依賴的package包/類
public static boolean isExtendedPotion(ItemStack itemStack) {
    if (itemStack.getItemMeta() instanceof PotionMeta) {
        if (Utils.getMajorVersion() >= 9) {
            PotionMeta potionMeta = (PotionMeta) itemStack.getItemMeta();
            return potionMeta.getBasePotionData().isExtended();
        } else {
            Potion potion = Potion.fromItemStack(itemStack);
            return potion.hasExtendedDuration();
        }
    }

    return false;
}
 
開發者ID:EpicEricEE,項目名稱:ShopChest,代碼行數:14,代碼來源:ItemUtils.java

示例3: fromPotion

import org.bukkit.potion.Potion; //導入方法依賴的package包/類
/**
    * This parses an Potion into an instance of PotionLayer. This lets you get the potion type, if the potion is strong, if the potion is long, if the potion is lingering, and if the potion is a
    * splash potion.
    * 
    * @param item
    * @return {@link PotionLayer}. If it fails to parse, or the item argument is not a valid potion this will return null.
    * @throws Exception
    */
   @Deprecated
   private static PotionLayer fromPotion(Potion potion) throws Exception {
PotionType type = PotionType.match(potion.getType());
if (type == null) {
    throw new Exception("no enum for " + potion.getType().name());
}
return new PotionLayer(type, potion.getLevel() > 1, potion.hasExtendedDuration(), false, potion.isSplash());
   }
 
開發者ID:AlexMl,項目名稱:ZvP,代碼行數:17,代碼來源:PotionLayer.java


注:本文中的org.bukkit.potion.Potion.hasExtendedDuration方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。