| | |
| | | //-------------------------------------------------------- |
| | | // [Author]: 第二世界 |
| | | // [ Date ]: Wednesday, September 26, 2018 |
| | | // [ Date ]: Tuesday, January 22, 2019 |
| | | //-------------------------------------------------------- |
| | | |
| | | using UnityEngine; |
| | |
| | | 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() |
| | | { |
| | |
| | |
|
| | | 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) |
| | | { |