当前位置: 首页>>代码示例>>Java>>正文


Java Potion.getName方法代码示例

本文整理汇总了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;
}
 
开发者ID:SkidJava,项目名称:BaseClient,代码行数:23,代码来源:CustomItems.java

示例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;
}
 
开发者ID:sudofox,项目名称:Backmemed,代码行数:18,代码来源:CustomItems.java

示例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();
}
 
开发者ID:jm-organization,项目名称:connor41-etfuturum2,代码行数:10,代码来源:TippedArrow.java


注:本文中的net.minecraft.potion.Potion.getName方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。