| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: YYL
|
| | | // [ Date ]: 2025年8月5日
|
| | | // [ Date ]: 2025年8月20日
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public int ID;
|
| | | public int TreasureType;
|
| | | public int MinLV;
|
| | | public string GridItemInfo;
|
| | | public string GridLibInfo;
|
| | | public string JobItemList;
|
| | | public Dictionary<int, int[]> GridItemInfo;
|
| | | public Dictionary<int, int> GridLibInfo;
|
| | | public int[][] JobItemList;
|
| | | public int[][] GridItemRateList1;
|
| | |
|
| | | public override int LoadKey(string _key)
|
| | |
| | |
|
| | | int.TryParse(tables[2],out MinLV);
|
| | |
|
| | | GridItemInfo = tables[3];
|
| | | GridItemInfo = ConfigParse.ParseIntArrayDict(tables[3]); |
| | |
|
| | | GridLibInfo = tables[4];
|
| | | GridLibInfo = ConfigParse.ParseIntDict(tables[4]); |
| | |
|
| | | JobItemList = tables[5];
|
| | | JobItemList = JsonMapper.ToObject<int[][]>(tables[5].Replace("(", "[").Replace(")", "]")); |
| | |
|
| | | GridItemRateList1 = JsonMapper.ToObject<int[][]>(tables[6].Replace("(", "[").Replace(")", "]"));
|
| | | }
|