1234567891011121314151617181920212223242526272829303132 |
- // Auto Generated Code By excel2json
- // Generate From Excel\LevelSupressConfig.xlsx. SheetName: LevelSupressConfig
- using System;
- using Fort23.GameData;
- namespace Excel2Json
- {
- [Config(prefab = "LevelSupressConfig.json")]
- public partial class LevelSupressConfigHolder : ConfigHolder<LevelSupressConfig>
{
- }
- [Serializable]
- public struct LevelSupressConfig : IConfig
{
- public int GetID() {return ID;}
- /// <summary>
- ///双方修为差
- /// </summary>
- public int ID;
- /// <summary>
- ///破盾速度 20:护盾受到的伤害提升20% 999:护盾瞬间被破除
- /// </summary>
- public int HudunReduceSpeed;
- }
- }
- // End of Auto Generated Code
|