| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: Fish
|
| | | // [ Date ]: Thursday, February 14, 2019
|
| | | // [ Date ]: Wednesday, April 10, 2019
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public readonly int[] HpSkillList;
|
| | | public readonly int[] GainSkillList;
|
| | | public readonly int MoveLimitDist;
|
| | | public readonly int[] RollBreakSkillList;
|
| | |
|
| | | public JobSetupConfig()
|
| | | {
|
| | |
| | | }
|
| | |
|
| | | int.TryParse(tables[22],out MoveLimitDist);
|
| | |
|
| | | string[] RollBreakSkillListStringArray = tables[23].Trim().Split(StringUtility.splitSeparator, StringSplitOptions.RemoveEmptyEntries);
|
| | | RollBreakSkillList = new int[RollBreakSkillListStringArray.Length];
|
| | | for (int i = 0; i < RollBreakSkillListStringArray.Length; i++)
|
| | | {
|
| | | int.TryParse(RollBreakSkillListStringArray[i], out RollBreakSkillList[i]);
|
| | | }
|
| | | }
|
| | | catch (Exception ex)
|
| | | {
|