少年修仙传客户端代码仓库
client_linchunjie
2018-09-14 a0ede150686a218c92b901b1f20aef12a9913890
Core/GameEngine/Model/Config/EquipWashSpecConfig.cs
@@ -9,38 +9,38 @@
namespace TableConfig {
    
   public partial class EquipWashSpecConfig : ConfigBase {
   public partial class EquipWashSpecConfig : ConfigBase {
      public int id { get ; private set ; }
      public int typeNeed { get ; private set ; }
      public int levelNeed { get ; private set ; }
      public string attByLevel { get ; private set; }
      public string attByLevelValue { get ; private set; }
      public int MasterLV { get ; private set ; }
      public int id { get ; private set ; }
      public int typeNeed { get ; private set ; }
      public int levelNeed { get ; private set ; }
      public string attByLevel { get ; private set; }
      public string attByLevelValue { get ; private set; }
      public int MasterLV { get ; private set ; }
      public override string getKey()
        {
            return id.ToString();
      public override string getKey()
        {
            return id.ToString();
        }
      public override void Parse() {
         try
            {
                id=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
            typeNeed=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
            levelNeed=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
            attByLevel = rawContents[3].Trim();
            attByLevelValue = rawContents[4].Trim();
            MasterLV=IsNumeric(rawContents[5]) ? int.Parse(rawContents[5]):0;
            }
            catch (Exception ex)
            {
                DesignDebug.Log(ex);
         try
            {
                id=IsNumeric(rawContents[0]) ? int.Parse(rawContents[0]):0;
            typeNeed=IsNumeric(rawContents[1]) ? int.Parse(rawContents[1]):0;
            levelNeed=IsNumeric(rawContents[2]) ? int.Parse(rawContents[2]):0;
            attByLevel = rawContents[3].Trim();
            attByLevelValue = rawContents[4].Trim();
            MasterLV=IsNumeric(rawContents[5]) ? int.Parse(rawContents[5]):0;
            }
            catch (Exception ex)
            {
                DebugEx.Log(ex);
            }
      }