示例#1
0
        protected static float CalcFightItemFactor(int level)
        {
            var fac = FactorCalculator.CalcFromLevel2(level + 1, 4) * 2.3f;

            return(fac);
        }
示例#2
0
 private float GetLevelValue(int level)
 {
     return(level == 0 ? 0 : FactorCalculator.CalcFromLevel2(level + 1) + 1);
 }