| | |
| | | //-------------------------------------------------------- |
| | | // [Author]: Fish |
| | | // [ Date ]: Wednesday, May 15, 2019 |
| | | // [ Date ]: Monday, June 24, 2019 |
| | | //-------------------------------------------------------- |
| | | |
| | | using System.Collections.Generic; |
| | |
| | | public readonly int id; |
| | | public readonly int lineId; |
| | | public readonly string[] icons; |
| | | public readonly string[] jobIntroduce1; |
| | | public readonly string[] jobIntroduce2; |
| | | public readonly string levelLimit; |
| | | public readonly string name; |
| | | public readonly string description; |
| | |
| | | |
| | | icons = tables[2].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | |
| | | levelLimit = tables[3]; |
| | | jobIntroduce1 = tables[3].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | |
| | | name = tables[4]; |
| | | jobIntroduce2 = tables[4].Trim().Split(StringUtility.splitSeparator,StringSplitOptions.RemoveEmptyEntries); |
| | | |
| | | description = tables[5]; |
| | | levelLimit = tables[5]; |
| | | |
| | | name = tables[6]; |
| | | |
| | | description = tables[7]; |
| | | } |
| | | catch (Exception ex) |
| | | { |