1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- // Auto Generated Code By excel2json
- // Generate From Excel\skill.xlsx. SheetName: SkillPowerupConfig
- using System;
- using Fort23.GameData;
- namespace Excel2Json
- {
- [Config(prefab = "SkillPowerupConfig.json")]
- public partial class SkillPowerupConfigHolder : ConfigHolder<SkillPowerupConfig>
{
- }
- [Serializable]
- public struct SkillPowerupConfig : IConfig
{
- public int GetID() {return ID;}
- /// <summary>
- ///等级
- /// </summary>
- public int ID;
- /// <summary>
- ///功法对拼标准强度
- /// </summary>
- public int MainPower;
- /// <summary>
- ///标准强度固定值
- /// </summary>
- public int SkillPower1;
- /// <summary>
- ///标准强度百分比
- /// </summary>
- public float SkillPower2;
- }
- }
- // End of Auto Generated Code
|