| | |
| | | //-------------------------------------------------------- |
| | | // [Author]: Fish |
| | | // [ Date ]: Saturday, March 02, 2019 |
| | | // [ Date ]: Monday, March 04, 2019 |
| | | //-------------------------------------------------------- |
| | | |
| | | using System.Collections.Generic; |
| | |
| | | public readonly int suiteID; |
| | | public readonly int suiteCnt; |
| | | public readonly int star; |
| | | public readonly Int2 attr; |
| | | public readonly Int2[] attr; |
| | | public readonly int skillID; |
| | | public readonly string description; |
| | | |
| | |
| | | |
| | | int.TryParse(tables[4],out star); |
| | | |
| | | Int2.TryParse(tables[5],out attr); |
| | | string[] attrStringArray = tables[5].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | attr = new Int2[attrStringArray.Length]; |
| | | for (int i=0;i<attrStringArray.Length;i++) |
| | | { |
| | | Int2.TryParse(attrStringArray[i],out attr[i]); |
| | | } |
| | | |
| | | int.TryParse(tables[6],out skillID); |
| | | |