| | |
| | | //-------------------------------------------------------- |
| | | // [Author]: YYL |
| | | // [ Date ]: Thursday, January 8, 2026 |
| | | // [ Date ]: Tuesday, January 20, 2026 |
| | | //-------------------------------------------------------- |
| | | |
| | | using System.Collections.Generic; |
| | |
| | | public int[][] AwardList; |
| | | public int[] LineupIDList; |
| | | public long FightPower; |
| | | public int NPCID; |
| | | public int[] SkillIDExList; |
| | | |
| | | public override int LoadKey(string _key) |
| | | { |
| | |
| | | } |
| | | |
| | | long.TryParse(tables[6],out FightPower); |
| | | |
| | | int.TryParse(tables[7],out NPCID); |
| | | |
| | | if (tables[8].Contains("[")) |
| | | { |
| | | SkillIDExList = JsonMapper.ToObject<int[]>(tables[8]); |
| | | } |
| | | else |
| | | { |
| | | string[] SkillIDExListStringArray = tables[8].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | SkillIDExList = new int[SkillIDExListStringArray.Length]; |
| | | for (int i=0;i<SkillIDExListStringArray.Length;i++) |
| | | { |
| | | int.TryParse(SkillIDExListStringArray[i],out SkillIDExList[i]); |
| | | } |
| | | } |
| | | } |
| | | catch (Exception exception) |
| | | { |