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