少年修仙传客户端代码仓库
client_Hale
2019-01-22 d7793969f41d19f576ece3ee4db652a4727a7fb3
Core/GameEngine/Model/Config/EquipGSParamConfig.cs
@@ -1,6 +1,6 @@
//--------------------------------------------------------
//    [Author]:         第二世界
//    [  Date ]:         Wednesday, September 26, 2018
//    [  Date ]:         Tuesday, January 22, 2019
//--------------------------------------------------------
using UnityEngine;
@@ -39,7 +39,21 @@
      public int AtkSpeedC { get ; private set ; }
      public int SkillAtkRateReduceC { get ; private set ; }
      public int HitC { get ; private set ; }
      public int MissC { get ; private set ; }
      public int MissC { get ; private set ; }
      public int SkillAddPer1C { get ; private set ; }
      public int SkillAddPer2C { get ; private set ; }
      public int SkillAddPer3C { get ; private set ; }
      public int SkillAddPer4C { get ; private set ; }
      public int SkillAddPer5C { get ; private set ; }
      public int SkillAddPer6C { get ; private set ; }
      public int SkillAddPer7C { get ; private set ; }
      public int SkillReducePer1C { get ; private set ; }
      public int SkillReducePer2C { get ; private set ; }
      public int SkillReducePer3C { get ; private set ; }
      public int SkillReducePer4C { get ; private set ; }
      public int SkillReducePer5C { get ; private set ; }
      public int SkillReducePer6C { get ; private set ; }
      public int SkillReducePer7C { get ; private set ; }
      public override string getKey()
        {
@@ -105,7 +119,35 @@
         
            HitC=IsNumeric(rawContents[27]) ? int.Parse(rawContents[27]):0; 
         
            MissC=IsNumeric(rawContents[28]) ? int.Parse(rawContents[28]):0;
            MissC=IsNumeric(rawContents[28]) ? int.Parse(rawContents[28]):0;
            SkillAddPer1C=IsNumeric(rawContents[29]) ? int.Parse(rawContents[29]):0;
            SkillAddPer2C=IsNumeric(rawContents[30]) ? int.Parse(rawContents[30]):0;
            SkillAddPer3C=IsNumeric(rawContents[31]) ? int.Parse(rawContents[31]):0;
            SkillAddPer4C=IsNumeric(rawContents[32]) ? int.Parse(rawContents[32]):0;
            SkillAddPer5C=IsNumeric(rawContents[33]) ? int.Parse(rawContents[33]):0;
            SkillAddPer6C=IsNumeric(rawContents[34]) ? int.Parse(rawContents[34]):0;
            SkillAddPer7C=IsNumeric(rawContents[35]) ? int.Parse(rawContents[35]):0;
            SkillReducePer1C=IsNumeric(rawContents[36]) ? int.Parse(rawContents[36]):0;
            SkillReducePer2C=IsNumeric(rawContents[37]) ? int.Parse(rawContents[37]):0;
            SkillReducePer3C=IsNumeric(rawContents[38]) ? int.Parse(rawContents[38]):0;
            SkillReducePer4C=IsNumeric(rawContents[39]) ? int.Parse(rawContents[39]):0;
            SkillReducePer5C=IsNumeric(rawContents[40]) ? int.Parse(rawContents[40]):0;
            SkillReducePer6C=IsNumeric(rawContents[41]) ? int.Parse(rawContents[41]):0;
            SkillReducePer7C=IsNumeric(rawContents[42]) ? int.Parse(rawContents[42]):0;
            }
            catch (Exception ex)
            {