| | |
| | | //--------------------------------------------------------
|
| | | // [Author]: YYL
|
| | | // [ Date ]: 2025年9月4日
|
| | | // [ Date ]: Monday, December 29, 2025
|
| | | //--------------------------------------------------------
|
| | |
|
| | | using System.Collections.Generic;
|
| | |
| | | public Dictionary<int, int> GridNumMaxLimitInfo;
|
| | | public int AwardMoneyType;
|
| | | public int AwardMoneyValue;
|
| | | public int WishOpen;
|
| | | public int WishReset;
|
| | | public Dictionary<int, int> WishLibSelect;
|
| | | public Dictionary<int, int> WishLibPubFreeCnt;
|
| | | public Dictionary<int, int> WishLibCard;
|
| | | public string ProbabilityDisplay;
|
| | |
|
| | | public override int LoadKey(string _key)
|
| | |
| | |
|
| | | int.TryParse(tables[14],out AwardMoneyValue);
|
| | |
|
| | | ProbabilityDisplay = tables[15];
|
| | | int.TryParse(tables[15],out WishOpen); |
| | |
|
| | | int.TryParse(tables[16],out WishReset); |
| | |
|
| | | WishLibSelect = ConfigParse.ParseIntDict(tables[17]); |
| | |
|
| | | WishLibPubFreeCnt = ConfigParse.ParseIntDict(tables[18]); |
| | |
|
| | | WishLibCard = ConfigParse.ParseIntDict(tables[19]); |
| | |
|
| | | ProbabilityDisplay = tables[20];
|
| | | }
|
| | | catch (Exception exception)
|
| | | {
|