| 12345678910111213141516171819202122232425262728293031323334353637383940 | 
							- // 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>
 
- #if !COMBAT_SERVER
 
- 		public int ID;
 
- #else
 
- 		public int ID{ set; get; }
 
- #endif
 
- 		
 
- 		/// <summary>
 
- 		///破盾速度 20:护盾受到的伤害提升20% 999:护盾瞬间被破除
 
- 		/// </summary>
 
- #if !COMBAT_SERVER
 
- 		public int HudunReduceSpeed;
 
- #else
 
- 		public int HudunReduceSpeed{ set; get; }
 
- #endif
 
- 		
 
- 	}
 
- }
 
- // End of Auto Generated Code
 
 
  |