本文整理汇总了Java中net.minecraft.potion.Potion.getName方法的典型用法代码示例。如果您正苦于以下问题:Java Potion.getName方法的具体用法?Java Potion.getName怎么用?Java Potion.getName使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类net.minecraft.potion.Potion
的用法示例。
在下文中一共展示了Potion.getName方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: 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;
}
示例2: getPotionNameDamage
import net.minecraft.potion.Potion; //导入方法依赖的package包/类
private static int getPotionNameDamage(String p_getPotionNameDamage_0_)
{
String s = "effect." + p_getPotionNameDamage_0_;
for (ResourceLocation resourcelocation : Potion.REGISTRY.getKeys())
{
Potion potion = (Potion)Potion.REGISTRY.getObject(resourcelocation);
String s1 = potion.getName();
if (s.equals(s1))
{
return Potion.getIdFromPotion(potion);
}
}
return -1;
}
示例3: getUnlocalizedName
import net.minecraft.potion.Potion; //导入方法依赖的package包/类
@Override
public String getUnlocalizedName(ItemStack stack) {
PotionEffect effect = getEffect(stack);
if (effect == null || effect.getPotionID() < 0 || effect.getPotionID() >= Potion.potionTypes.length)
return super.getUnlocalizedName(stack);
Potion potion = Potion.potionTypes[effect.getPotionID()];
return "tipped_arrow." + potion.getName();
}