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


Java Potion.getAttributeModifierMap方法代码示例

本文整理汇总了Java中net.minecraft.potion.Potion.getAttributeModifierMap方法的典型用法代码示例。如果您正苦于以下问题:Java Potion.getAttributeModifierMap方法的具体用法?Java Potion.getAttributeModifierMap怎么用?Java Potion.getAttributeModifierMap使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在net.minecraft.potion.Potion的用法示例。


在下文中一共展示了Potion.getAttributeModifierMap方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: addPotionEffectTooltip

import net.minecraft.potion.Potion; //导入方法依赖的package包/类
@SideOnly(Side.CLIENT)
public static void addPotionEffectTooltip(List<PotionEffect> list, List<String> lores, float durationFactor)
{
    List<Tuple<String, AttributeModifier>> attributeModifiers = Lists.newArrayList();

    if (list.isEmpty())
    {
        String s = I18n.translateToLocal("effect.none").trim();
        lores.add(TextFormatting.GRAY + s);
    }
    else
    {
        for (PotionEffect potioneffect : list)
        {
            String s1 = I18n.translateToLocal(potioneffect.getEffectName()).trim();
            Potion potion = potioneffect.getPotion();
            Map<IAttribute, AttributeModifier> map = potion.getAttributeModifierMap();

            if (!map.isEmpty())
            {
                for (Map.Entry<IAttribute, AttributeModifier> entry : map.entrySet())
                {
                    AttributeModifier attributemodifier = entry.getValue();
                    AttributeModifier attributemodifier1 = new AttributeModifier(attributemodifier.getName(), potion.getAttributeModifierAmount(potioneffect.getAmplifier(), attributemodifier), attributemodifier.getOperation());
                    attributeModifiers.add(new Tuple(((IAttribute)entry.getKey()).getName(), attributemodifier1));
                }
            }

            if (potioneffect.getAmplifier() > 0)
            {
                s1 = s1 + " " + I18n.translateToLocal("potion.potency." + potioneffect.getAmplifier()).trim();
            }

            if (potioneffect.getDuration() > 20)
            {
                s1 = s1 + " (" + Potion.getPotionDurationString(potioneffect, durationFactor) + ")";
            }

            if (potion.isBadEffect())
            {
                lores.add(TextFormatting.RED + s1);
            }
            else
            {
                lores.add(TextFormatting.BLUE + s1);
            }
        }
    }

    if (!attributeModifiers.isEmpty())
    {
        lores.add("");
        lores.add(TextFormatting.DARK_PURPLE + I18n.translateToLocal("potion.whenDrank"));

        for (Tuple<String, AttributeModifier> tuple : attributeModifiers)
        {
            AttributeModifier attributemodifier2 = tuple.getSecond();
            double d0 = attributemodifier2.getAmount();
            double d1;

            if (attributemodifier2.getOperation() != 1 && attributemodifier2.getOperation() != 2)
            {
                d1 = attributemodifier2.getAmount();
            }
            else
            {
                d1 = attributemodifier2.getAmount() * 100.0D;
            }

            if (d0 > 0.0D)
            {
                lores.add(TextFormatting.BLUE + I18n.translateToLocalFormatted("attribute.modifier.plus." + attributemodifier2.getOperation(), ItemStack.DECIMALFORMAT.format(d1), I18n.translateToLocal("attribute.name." + (String)tuple.getFirst())));
            }
            else if (d0 < 0.0D)
            {
                d1 = d1 * -1.0D;
                lores.add(TextFormatting.RED + I18n.translateToLocalFormatted("attribute.modifier.take." + attributemodifier2.getOperation(), ItemStack.DECIMALFORMAT.format(d1), I18n.translateToLocal("attribute.name." + (String)tuple.getFirst())));
            }
        }
    }
}
 
开发者ID:DaedalusGame,项目名称:Soot,代码行数:82,代码来源:MiscUtil.java


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