| | |
| | | //-------------------------------------------------------- |
| | | // [Author]: 第二世界 |
| | | // [ Date ]: Saturday, September 01, 2018 |
| | | // [ Date ]: Wednesday, September 26, 2018 |
| | | //-------------------------------------------------------- |
| | | |
| | | using UnityEngine; |
| | |
| | | public int SkillAtkRateC { get ; private set ; }
|
| | | public int SpeedPerC { get ; private set ; }
|
| | | public int AtkSpeedC { get ; private set ; }
|
| | | public int SkillAtkRateReduceC { 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() |
| | | { |
| | |
| | |
|
| | | AtkSpeedC=IsNumeric(rawContents[25]) ? int.Parse(rawContents[25]):0;
|
| | |
|
| | | SkillAtkRateReduceC=IsNumeric(rawContents[26]) ? int.Parse(rawContents[26]):0; |
| | | SkillAtkRateReduceC=IsNumeric(rawContents[26]) ? int.Parse(rawContents[26]):0; |
| | | |
| | | HitC=IsNumeric(rawContents[27]) ? int.Parse(rawContents[27]):0; |
| | | |
| | | MissC=IsNumeric(rawContents[28]) ? int.Parse(rawContents[28]):0; |
| | | } |
| | | catch (Exception ex) |
| | | { |