| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: YYL
|
| | | // [ Date ]: Thursday, November 27, 2025
|
| | | // [ Date ]: 2025年12月8日
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public string Name;
|
| | | public string Desc;
|
| | | public string Icon;
|
| | | public Dictionary<int, int[][]> Award;
|
| | | public int PreviewIndex;
|
| | | public int[][] AwardList;
|
| | |
|
| | | public override int LoadKey(string _key)
|
| | | {
|
| | |
| | |
|
| | | Icon = tables[8];
|
| | |
|
| | | Award = ConfigParse.ParseIntArray2Dict(tables[9].Replace("(", "[").Replace(")", "]")); |
| | | int.TryParse(tables[9],out PreviewIndex); |
| | |
|
| | | AwardList = JsonMapper.ToObject<int[][]>(tables[10].Replace("(", "[").Replace(")", "]")); |
| | | }
|
| | | catch (Exception exception)
|
| | | {
|