1234567891011121314151617181920212223242526272829303132 |
- // Auto Generated Code By excel2json
- // Generate From Excel\PowerSuppress.xlsx. SheetName: PowerSupressLevelConfig
- using System;
- using Fort23.GameData;
- namespace Excel2Json
- {
- [Config(prefab = "PowerSupressLevelConfig.json")]
- public partial class PowerSupressLevelConfigHolder : ConfigHolder<PowerSupressLevelConfig>
{
- }
- [Serializable]
- public struct PowerSupressLevelConfig : IConfig
{
- public int GetID() {return ID;}
- /// <summary>
- ///ID
- /// </summary>
- public int ID;
- /// <summary>
- ///计算出战力压制具体值后,再根据玩家等级做修正 0.8=80%
- /// </summary>
- public float SupressSecondaryCorrectionPara;
- }
- }
- // End of Auto Generated Code
|