Examples of calcVuln()


Examples of lineage2.gameserver.model.base.SkillTrait.calcVuln()

        env.value *= debuffMod;
      }
      SkillTrait trait = skill.getTraitType();
      if (trait != null)
      {
        vulnMod = trait.calcVuln(env);
        profMod = trait.calcProf(env);
        final double maxResist = 90 + (profMod * 0.85);
        resMod = (maxResist - vulnMod) / 60.;
      }
      if (resMod != 1)
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.