// Auto Generated Code By excel2json // Generate From Excel\HeroPowerUp.xlsx. SheetName: AttConfig using System; using Fort23.GameData; namespace Excel2Json { [Config(prefab = "AttConfig.json")] public partial class AttConfigHolder : ConfigHolder { } [Serializable] public struct AttConfig : IConfig { public int GetID() {return ID;} /// ///属性ID /// public int ID; /// ///1主要属性 2次级属性 3特效属性 /// public int AttType; /// ///数值类型 1绝对值 2百分比 /// public int ValueType; /// ///显示类型 1默认显示 2当不为0时显示 /// public int ShowType; /// ///属性名称 /// public int AttName; /// ///属性描述 /// public int AttEffectDes; /// ///最大值 -1为无穷大 如果为绝对值则10=10% /// public int MaxValue; /// ///战斗中最大值 -1为无穷大 如果为绝对值则10=10% /// public int MaxCombatValue; /// ///显示时,保留几位小数 /// public int PointValue; } } // End of Auto Generated Code