SkillPowerupConfig.cs 781 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. // Auto Generated Code By excel2json
  2. // Generate From Excel\skill.xlsx. SheetName: SkillPowerupConfig
  3. using System;
  4. using Fort23.GameData;
  5. namespace Excel2Json
  6. {
  7. [Config(prefab = "SkillPowerupConfig.json")]
  8. public partial class SkillPowerupConfigHolder : ConfigHolder<SkillPowerupConfig> {
  9. }
  10. [Serializable]
  11. public struct SkillPowerupConfig : IConfig {
  12. public int GetID() {return ID;}
  13. /// <summary>
  14. ///等级
  15. /// </summary>
  16. public int ID;
  17. /// <summary>
  18. ///功法对拼标准强度
  19. /// </summary>
  20. public int MainPower;
  21. /// <summary>
  22. ///标准强度固定值
  23. /// </summary>
  24. public int SkillPower1;
  25. /// <summary>
  26. ///标准强度百分比
  27. /// </summary>
  28. public float SkillPower2;
  29. }
  30. }
  31. // End of Auto Generated Code