1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // Auto Generated Code By excel2json
- // Generate From Excel\OpenBox.xlsx. SheetName: OpenBoxConfig
- using System;
- using Fort23.GameData;
- namespace Excel2Json
- {
- [Config(prefab = "OpenBoxConfig.json")]
- public partial class OpenBoxConfigHolder : ConfigHolder<OpenBoxConfig>
{
- }
- [Serializable]
- public struct OpenBoxConfig : IConfig
{
- public int GetID() {return ID;}
- /// <summary>
- ///ID (id段不再区分debuff和buff)
- /// </summary>
- public int ID;
- /// <summary>
- ///单次消耗
- /// </summary>
- public int oneConsume;
- /// <summary>
- ///10次消耗
- /// </summary>
- public int tenConsume;
- /// <summary>
- ///奖励池子
- /// </summary>
- public int reward;
- }
- }
- // End of Auto Generated Code
|