本文整理汇总了Java中net.minecraft.potion.Potion.getId方法的典型用法代码示例。如果您正苦于以下问题:Java Potion.getId方法的具体用法?Java Potion.getId怎么用?Java Potion.getId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.potion.Potion
的用法示例。
在下文中一共展示了Potion.getId方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getPotionId
import net.minecraft.potion.Potion; //导入方法依赖的package包/类
private static int getPotionId(String p_getPotionId_0_)
{
if (p_getPotionId_0_.equals("potion.water"))
{
return 0;
}
else
{
Potion[] apotion = Potion.potionTypes;
for (int i = 0; i < apotion.length; ++i)
{
Potion potion = apotion[i];
if (potion != null && potion.getName().equals(p_getPotionId_0_))
{
return potion.getId();
}
}
return -1;
}
}
示例2: getPotionNameDamage
import net.minecraft.potion.Potion; //导入方法依赖的package包/类
private static int getPotionNameDamage(String p_getPotionNameDamage_0_)
{
String s = "potion." + p_getPotionNameDamage_0_;
Potion[] apotion = Potion.potionTypes;
for (int i = 0; i < apotion.length; ++i)
{
Potion potion = apotion[i];
if (potion != null)
{
String s1 = potion.getName();
if (s.equals(s1))
{
return potion.getId();
}
}
}
return -1;
}
示例3: setEffect
import net.minecraft.potion.Potion; //导入方法依赖的package包/类
public static ItemStack setEffect(ItemStack stack, Potion potion, int duration) {
stack.setTagCompound(new NBTTagCompound());
NBTTagCompound nbt = new NBTTagCompound();
stack.getTagCompound().setTag("Potion", nbt);
PotionEffect effect = new PotionEffect(potion.getId(), potion.isInstant() ? 1 : duration);
effect.writeCustomPotionEffectToNBT(nbt);
return stack;
}