| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: YYL
|
| | | // [ Date ]: 2025年8月20日
|
| | | // [ Date ]: 2025年9月4日
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public Dictionary<int, int> GridLibInfo;
|
| | | public int[][] JobItemList;
|
| | | public int[][] GridItemRateList1;
|
| | | public Dictionary<int, int[][]> LuckyItemRateInfo;
|
| | |
|
| | | public override int LoadKey(string _key)
|
| | | {
|
| | |
| | | JobItemList = JsonMapper.ToObject<int[][]>(tables[5].Replace("(", "[").Replace(")", "]"));
|
| | |
|
| | | GridItemRateList1 = JsonMapper.ToObject<int[][]>(tables[6].Replace("(", "[").Replace(")", "]"));
|
| | |
|
| | | LuckyItemRateInfo = ConfigParse.ParseIntArray2Dict(tables[7].Replace("(", "[").Replace(")", "]")); |
| | | }
|
| | | catch (Exception exception)
|
| | | {
|