少年修仙传客户端代码仓库
client_Wu Xijin
2019-01-22 c249639c00811edb11d537d0dd55cf552cc5b2d0
Core/GameEngine/Model/Config/EquipGSParamConfig.cs
@@ -1,16 +1,16 @@
//--------------------------------------------------------
//    [Author]:         第二世界
//    [  Date ]:         Wednesday, September 26, 2018
//--------------------------------------------------------
using UnityEngine;
using System;
namespace TableConfig {
   public partial class EquipGSParamConfig : ConfigBase {
//--------------------------------------------------------
//    [Author]:         第二世界
//    [  Date ]:         Wednesday, September 26, 2018
//--------------------------------------------------------
using UnityEngine;
using System;
namespace TableConfig {
   public partial class EquipGSParamConfig : ConfigBase {
      public int ID { get ; private set ; }
      public int EquipClass { get ; private set ; }
      public int EquipColor { get ; private set ; }
@@ -39,16 +39,16 @@
      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 override string getKey()
        {
            return ID.ToString();
        }
      public override void Parse() {
         try
            {
      public int MissC { get ; private set ; }
      public override string getKey()
        {
            return ID.ToString();
        }
      public override void Parse() {
         try
            {
                ID=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0; 
         
            EquipClass=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0; 
@@ -105,18 +105,18 @@
         
            HitC=IsNumeric(rawContents[27]) ? int.Parse(rawContents[27]):0; 
         
            MissC=IsNumeric(rawContents[28]) ? int.Parse(rawContents[28]):0;
            }
            catch (Exception ex)
            {
                DebugEx.Log(ex);
            }
      }
   }
}
            MissC=IsNumeric(rawContents[28]) ? int.Parse(rawContents[28]):0;
            }
            catch (Exception ex)
            {
                DebugEx.Log(ex);
            }
      }
   }
}