| | |
| | | //-------------------------------------------------------- |
| | | // [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 ; }
|
| | |
| | | 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;
|
| | |
| | |
|
| | | 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);
|
| | | }
|
| | | }
|
| | | |
| | | }
|
| | |
|
| | | }
|
| | |
|
| | |
|
| | |
|
| | |
|