| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: YYL
|
| | | // [ Date ]: 2025年8月5日
|
| | | // [ Date ]: 2025年11月9日
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public int GainGold;
|
| | | public int GainGoldPaper;
|
| | | public int FirstGoldPaperPrize;
|
| | | public string GainItemList;
|
| | | public int[][] GainItemList;
|
| | | public int[][] SelectItemInfo;
|
| | | public string Icon;
|
| | | public int PayType;
|
| | |
| | |
|
| | | int.TryParse(tables[10],out FirstGoldPaperPrize);
|
| | |
|
| | | GainItemList = tables[11];
|
| | | GainItemList = JsonMapper.ToObject<int[][]>(tables[11].Replace("(", "[").Replace(")", "]")); |
| | |
|
| | | SelectItemInfo = JsonMapper.ToObject<int[][]>(tables[12].Replace("(", "[").Replace(")", "]"));
|
| | |
|