From 835f1bd4d0dffb5e0889a65e8a4c671ca93e2c4d Mon Sep 17 00:00:00 2001 From: zhangaotian <8474238@qq.com> Date: Tue, 10 Jun 2025 12:27:49 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../CharacterCfg/DataCharacterAwaking.cs | 58 +- .../CharacterCfg/DataCharacterBreak.cs | 64 +- .../GenCode/Luban/DataTable/ConditionType.cs | 12 + .../Luban/DataTable/FightCfg/DataBattery.cs | 58 +- .../Localize/CN/stringcfg_stringconfig.json | 28 +- .../Data/charactercfg_characterawaking.json | 6240 ++++++++--------- .../Data/charactercfg_characterbreak.json | 2970 ++++---- .../Config/Data/fightcfg_batteryconfig.json | 646 +- .../Assets/Config/Data/levelcfg_level.json | 155 +- .../Config/Data/levelcfg_leveltask.json | 24 + .../Config/Data/monstercfg_monster.json | 160 + .../Config/Data/monstercfg_monsterclass.json | 10 +- .../Config/Data/stringcfg_stringconfig.json | 28 +- .../Config/Maps/MapData_Maps00_Plain_10.json | 114 +- 14 files changed, 5532 insertions(+), 5035 deletions(-) diff --git a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/CharacterCfg/DataCharacterAwaking.cs b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/CharacterCfg/DataCharacterAwaking.cs index cad1fabdbec..d8ff8f68266 100644 --- a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/CharacterCfg/DataCharacterAwaking.cs +++ b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/CharacterCfg/DataCharacterAwaking.cs @@ -22,9 +22,6 @@ public sealed partial class DataCharacterAwaking : Luban.BeanBase cacheJsonNode = _buf; { if(!_buf["RoleID"].IsNumber) { throw new SerializationException(); } RoleID = _buf["RoleID"]; } { if(!_buf["AwakingLevel"].IsNumber) { throw new SerializationException(); } AwakingLevel = _buf["AwakingLevel"]; } - { if(!_buf["IconDarkPath"].IsString) { throw new SerializationException(); } IconDarkPath = _buf["IconDarkPath"]; } - { if(!_buf["IconLightPath"].IsString) { throw new SerializationException(); } IconLightPath = _buf["IconLightPath"]; } - { if(!_buf["Name"].IsString) { throw new SerializationException(); } Name = _buf["Name"]; } { var __json0 = _buf["AttributeGroup"]; if(!__json0.IsArray) { throw new SerializationException(); } AttributeGroup = new System.Collections.Generic.Dictionary(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { ActorCfg.AttributeType _k0; { if(!__e0[0].IsNumber) { throw new SerializationException(); } _k0 = (ActorCfg.AttributeType)__e0[0].AsInt; } float _v0; { if(!__e0[1].IsNumber) { throw new SerializationException(); } _v0 = __e0[1]; } AttributeGroup.Add(_k0, _v0); } } { if(!_buf["Defence"].IsNumber) { throw new SerializationException(); } Defence = _buf["Defence"]; } { if(!_buf["Hp"].IsNumber) { throw new SerializationException(); } Hp = _buf["Hp"]; } @@ -34,20 +31,20 @@ public sealed partial class DataCharacterAwaking : Luban.BeanBase { if(!_buf["CorrageRecover"].IsNumber) { throw new SerializationException(); } CorrageRecover = _buf["CorrageRecover"]; } { if(!_buf["CriticalRatio"].IsNumber) { throw new SerializationException(); } CriticalRatio = _buf["CriticalRatio"]; } { if(!_buf["CriticalDamage"].IsNumber) { throw new SerializationException(); } CriticalDamage = _buf["CriticalDamage"]; } + { var __json0 = _buf["SkillPropModifyList"]; if(!__json0.IsArray) { throw new SerializationException(); } SkillPropModifyList = new System.Collections.Generic.List(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { int __v0; { if(!__e0.IsNumber) { throw new SerializationException(); } __v0 = __e0; } SkillPropModifyList.Add(__v0); } } { if(!_buf["PassiveSkillID"].IsNumber) { throw new SerializationException(); } PassiveSkillID = _buf["PassiveSkillID"]; } { if(!_buf["WeaponGrasp"].IsNumber) { throw new SerializationException(); } WeaponGrasp = _buf["WeaponGrasp"]; } { var __json0 = _buf["CostItems"]; if(!__json0.IsArray) { throw new SerializationException(); } CostItems = new System.Collections.Generic.List(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { item.ItemCounts __v0; { if(!__e0.IsObject) { throw new SerializationException(); } __v0 = global::cfg.item.ItemCounts.DeserializeItemCounts(__e0); } CostItems.Add(__v0); } } - { var __json0 = _buf["SkillPropModifyList"]; if(!__json0.IsArray) { throw new SerializationException(); } SkillPropModifyList = new System.Collections.Generic.List(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { int __v0; { if(!__e0.IsNumber) { throw new SerializationException(); } __v0 = __e0; } SkillPropModifyList.Add(__v0); } } { if(!_buf["SkillModifyDesc"].IsString) { throw new SerializationException(); } SkillModifyDesc = _buf["SkillModifyDesc"]; } + { if(!_buf["Name"].IsString) { throw new SerializationException(); } Name = _buf["Name"]; } + { if(!_buf["IconDarkPath"].IsString) { throw new SerializationException(); } IconDarkPath = _buf["IconDarkPath"]; } + { if(!_buf["IconLightPath"].IsString) { throw new SerializationException(); } IconLightPath = _buf["IconLightPath"]; } } - public DataCharacterAwaking(int RoleID, int AwakingLevel, string IconDarkPath, string IconLightPath, string Name, System.Collections.Generic.Dictionary AttributeGroup, int Defence, int Hp, int Shield, float Speed, float Corrage, float CorrageRecover, float CriticalRatio, float CriticalDamage, int PassiveSkillID, float WeaponGrasp, System.Collections.Generic.List CostItems, System.Collections.Generic.List SkillPropModifyList, string SkillModifyDesc ) + public DataCharacterAwaking(int RoleID, int AwakingLevel, System.Collections.Generic.Dictionary AttributeGroup, int Defence, int Hp, int Shield, float Speed, float Corrage, float CorrageRecover, float CriticalRatio, float CriticalDamage, System.Collections.Generic.List SkillPropModifyList, int PassiveSkillID, float WeaponGrasp, System.Collections.Generic.List CostItems, string SkillModifyDesc, string Name, string IconDarkPath, string IconLightPath ) { this.RoleID = RoleID; this.AwakingLevel = AwakingLevel; - this.IconDarkPath = IconDarkPath; - this.IconLightPath = IconLightPath; - this.Name = Name; this.AttributeGroup = AttributeGroup; this.Defence = Defence; this.Hp = Hp; @@ -57,11 +54,14 @@ public sealed partial class DataCharacterAwaking : Luban.BeanBase this.CorrageRecover = CorrageRecover; this.CriticalRatio = CriticalRatio; this.CriticalDamage = CriticalDamage; + this.SkillPropModifyList = SkillPropModifyList; this.PassiveSkillID = PassiveSkillID; this.WeaponGrasp = WeaponGrasp; this.CostItems = CostItems; - this.SkillPropModifyList = SkillPropModifyList; this.SkillModifyDesc = SkillModifyDesc; + this.Name = Name; + this.IconDarkPath = IconDarkPath; + this.IconLightPath = IconLightPath; } @@ -78,18 +78,6 @@ public sealed partial class DataCharacterAwaking : Luban.BeanBase /// 觉醒等级 /// public int AwakingLevel { get; private set; } - /// - /// 图标路径(“Assets/Art/UI/Texture/UI_Pic_Main/UI_Pic_AdvanceUp/”) - /// - public string IconDarkPath { get; private set; } - /// - /// 图标路径(“Assets/Art/UI/Texture/UI_Pic_Main/UI_Pic_AdvanceUp/”) - /// - public string IconLightPath { get; private set; } - /// - /// 觉醒名称 - /// - public string Name { get; private set; } public System.Collections.Generic.Dictionary AttributeGroup { get; private set; } /// /// 防御力 @@ -124,6 +112,10 @@ public sealed partial class DataCharacterAwaking : Luban.BeanBase /// public float CriticalDamage { get; private set; } /// + /// 技能变动 + /// + public System.Collections.Generic.List SkillPropModifyList { get; private set; } + /// /// 被动技能ID /// public int PassiveSkillID { get; private set; } @@ -136,13 +128,21 @@ public sealed partial class DataCharacterAwaking : Luban.BeanBase /// public System.Collections.Generic.List CostItems { get; private set; } /// - /// 技能变动 - /// - public System.Collections.Generic.List SkillPropModifyList { get; private set; } - /// /// 技能变动描述 /// public string SkillModifyDesc { get; private set; } + /// + /// 觉醒名称 + /// + public string Name { get; private set; } + /// + /// 图标路径(“Assets/Art/UI/Texture/UI_Pic_Main/UI_Pic_AdvanceUp/”) + /// + public string IconDarkPath { get; private set; } + /// + /// 图标路径(“Assets/Art/UI/Texture/UI_Pic_Main/UI_Pic_AdvanceUp/”) + /// + public string IconLightPath { get; private set; } public const int __ID__ = 1506279670; public override int GetTypeId() => __ID__; @@ -157,9 +157,6 @@ public sealed partial class DataCharacterAwaking : Luban.BeanBase return "{ " + "RoleID:" + RoleID + "," + "AwakingLevel:" + AwakingLevel + "," - + "IconDarkPath:" + IconDarkPath + "," - + "IconLightPath:" + IconLightPath + "," - + "Name:" + Name + "," + "AttributeGroup:" + Luban.StringUtil.CollectionToString(AttributeGroup) + "," + "Defence:" + Defence + "," + "Hp:" + Hp + "," @@ -169,11 +166,14 @@ public sealed partial class DataCharacterAwaking : Luban.BeanBase + "CorrageRecover:" + CorrageRecover + "," + "CriticalRatio:" + CriticalRatio + "," + "CriticalDamage:" + CriticalDamage + "," + + "SkillPropModifyList:" + Luban.StringUtil.CollectionToString(SkillPropModifyList) + "," + "PassiveSkillID:" + PassiveSkillID + "," + "WeaponGrasp:" + WeaponGrasp + "," + "CostItems:" + Luban.StringUtil.CollectionToString(CostItems) + "," - + "SkillPropModifyList:" + Luban.StringUtil.CollectionToString(SkillPropModifyList) + "," + "SkillModifyDesc:" + SkillModifyDesc + "," + + "Name:" + Name + "," + + "IconDarkPath:" + IconDarkPath + "," + + "IconLightPath:" + IconLightPath + "," + "}"; } } diff --git a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/CharacterCfg/DataCharacterBreak.cs b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/CharacterCfg/DataCharacterBreak.cs index bb028fc8599..4a79e416bc9 100644 --- a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/CharacterCfg/DataCharacterBreak.cs +++ b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/CharacterCfg/DataCharacterBreak.cs @@ -22,9 +22,8 @@ public sealed partial class DataCharacterBreak : Luban.BeanBase cacheJsonNode = _buf; { if(!_buf["RoleID"].IsNumber) { throw new SerializationException(); } RoleID = _buf["RoleID"]; } { if(!_buf["BreakLevel"].IsNumber) { throw new SerializationException(); } BreakLevel = _buf["BreakLevel"]; } - { if(!_buf["IconPathLight"].IsString) { throw new SerializationException(); } IconPathLight = _buf["IconPathLight"]; } - { if(!_buf["Name"].IsString) { throw new SerializationException(); } Name = _buf["Name"]; } { if(!_buf["WeaponId"].IsNumber) { throw new SerializationException(); } WeaponId = _buf["WeaponId"]; } + { if(!_buf["SpendLeadership"].IsNumber) { throw new SerializationException(); } SpendLeadership = _buf["SpendLeadership"]; } { var __json0 = _buf["AttributeGroup"]; if(!__json0.IsArray) { throw new SerializationException(); } AttributeGroup = new System.Collections.Generic.Dictionary(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { ActorCfg.AttributeType _k0; { if(!__e0[0].IsNumber) { throw new SerializationException(); } _k0 = (ActorCfg.AttributeType)__e0[0].AsInt; } float _v0; { if(!__e0[1].IsNumber) { throw new SerializationException(); } _v0 = __e0[1]; } AttributeGroup.Add(_k0, _v0); } } { if(!_buf["Defence"].IsNumber) { throw new SerializationException(); } Defence = _buf["Defence"]; } { if(!_buf["Hp"].IsNumber) { throw new SerializationException(); } Hp = _buf["Hp"]; } @@ -34,20 +33,20 @@ public sealed partial class DataCharacterBreak : Luban.BeanBase { if(!_buf["CriticalRatio"].IsNumber) { throw new SerializationException(); } CriticalRatio = _buf["CriticalRatio"]; } { if(!_buf["CriticalDamage"].IsNumber) { throw new SerializationException(); } CriticalDamage = _buf["CriticalDamage"]; } { if(!_buf["LevelLimit"].IsNumber) { throw new SerializationException(); } LevelLimit = _buf["LevelLimit"]; } - { if(!_buf["PassiveSkillID"].IsNumber) { throw new SerializationException(); } PassiveSkillID = _buf["PassiveSkillID"]; } - { if(!_buf["SpendLeadership"].IsNumber) { throw new SerializationException(); } SpendLeadership = _buf["SpendLeadership"]; } - { var __json0 = _buf["CostItems"]; if(!__json0.IsArray) { throw new SerializationException(); } CostItems = new System.Collections.Generic.List(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { item.ItemCounts __v0; { if(!__e0.IsObject) { throw new SerializationException(); } __v0 = global::cfg.item.ItemCounts.DeserializeItemCounts(__e0); } CostItems.Add(__v0); } } { var __json0 = _buf["SkillPropModifyList"]; if(!__json0.IsArray) { throw new SerializationException(); } SkillPropModifyList = new System.Collections.Generic.List(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { int __v0; { if(!__e0.IsNumber) { throw new SerializationException(); } __v0 = __e0; } SkillPropModifyList.Add(__v0); } } + { if(!_buf["PassiveSkillID"].IsNumber) { throw new SerializationException(); } PassiveSkillID = _buf["PassiveSkillID"]; } + { var __json0 = _buf["CostItems"]; if(!__json0.IsArray) { throw new SerializationException(); } CostItems = new System.Collections.Generic.List(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { item.ItemCounts __v0; { if(!__e0.IsObject) { throw new SerializationException(); } __v0 = global::cfg.item.ItemCounts.DeserializeItemCounts(__e0); } CostItems.Add(__v0); } } { if(!_buf["SkillModifyDesc"].IsString) { throw new SerializationException(); } SkillModifyDesc = _buf["SkillModifyDesc"]; } + { if(!_buf["Name"].IsString) { throw new SerializationException(); } Name = _buf["Name"]; } + { if(!_buf["IconPathLight"].IsString) { throw new SerializationException(); } IconPathLight = _buf["IconPathLight"]; } } - public DataCharacterBreak(int RoleID, int BreakLevel, string IconPathLight, string Name, int WeaponId, System.Collections.Generic.Dictionary AttributeGroup, int Defence, int Hp, int Shield, float Speed, float Corrage, float CriticalRatio, float CriticalDamage, int LevelLimit, int PassiveSkillID, int SpendLeadership, System.Collections.Generic.List CostItems, System.Collections.Generic.List SkillPropModifyList, string SkillModifyDesc ) + public DataCharacterBreak(int RoleID, int BreakLevel, int WeaponId, int SpendLeadership, System.Collections.Generic.Dictionary AttributeGroup, int Defence, int Hp, int Shield, float Speed, float Corrage, float CriticalRatio, float CriticalDamage, int LevelLimit, System.Collections.Generic.List SkillPropModifyList, int PassiveSkillID, System.Collections.Generic.List CostItems, string SkillModifyDesc, string Name, string IconPathLight ) { this.RoleID = RoleID; this.BreakLevel = BreakLevel; - this.IconPathLight = IconPathLight; - this.Name = Name; this.WeaponId = WeaponId; + this.SpendLeadership = SpendLeadership; this.AttributeGroup = AttributeGroup; this.Defence = Defence; this.Hp = Hp; @@ -57,11 +56,12 @@ public sealed partial class DataCharacterBreak : Luban.BeanBase this.CriticalRatio = CriticalRatio; this.CriticalDamage = CriticalDamage; this.LevelLimit = LevelLimit; - this.PassiveSkillID = PassiveSkillID; - this.SpendLeadership = SpendLeadership; - this.CostItems = CostItems; this.SkillPropModifyList = SkillPropModifyList; + this.PassiveSkillID = PassiveSkillID; + this.CostItems = CostItems; this.SkillModifyDesc = SkillModifyDesc; + this.Name = Name; + this.IconPathLight = IconPathLight; } @@ -79,17 +79,13 @@ public sealed partial class DataCharacterBreak : Luban.BeanBase /// public int BreakLevel { get; private set; } /// - /// 图片路径(“Assets/Art/UI/Texture/UI_Pic_Main/UI_Pic_RankUp”) - /// - public string IconPathLight { get; private set; } - /// - /// 名字 - /// - public string Name { get; private set; } - /// /// 武器id /// public int WeaponId { get; private set; } + /// + /// 花费领导力 + /// + public int SpendLeadership { get; private set; } public System.Collections.Generic.Dictionary AttributeGroup { get; private set; } /// /// 防御力 @@ -124,25 +120,29 @@ public sealed partial class DataCharacterBreak : Luban.BeanBase /// public int LevelLimit { get; private set; } /// + /// 技能变动 + /// + public System.Collections.Generic.List SkillPropModifyList { get; private set; } + /// /// 被动技能ID /// public int PassiveSkillID { get; private set; } /// - /// 花费领导力 - /// - public int SpendLeadership { get; private set; } - /// /// 消耗道具 /// public System.Collections.Generic.List CostItems { get; private set; } /// - /// 技能变动 - /// - public System.Collections.Generic.List SkillPropModifyList { get; private set; } - /// /// 技能变动描述 /// public string SkillModifyDesc { get; private set; } + /// + /// 名字 + /// + public string Name { get; private set; } + /// + /// 图片路径(“Assets/Art/UI/Texture/UI_Pic_Main/UI_Pic_RankUp”) + /// + public string IconPathLight { get; private set; } public const int __ID__ = -1329496589; public override int GetTypeId() => __ID__; @@ -157,9 +157,8 @@ public sealed partial class DataCharacterBreak : Luban.BeanBase return "{ " + "RoleID:" + RoleID + "," + "BreakLevel:" + BreakLevel + "," - + "IconPathLight:" + IconPathLight + "," - + "Name:" + Name + "," + "WeaponId:" + WeaponId + "," + + "SpendLeadership:" + SpendLeadership + "," + "AttributeGroup:" + Luban.StringUtil.CollectionToString(AttributeGroup) + "," + "Defence:" + Defence + "," + "Hp:" + Hp + "," @@ -169,11 +168,12 @@ public sealed partial class DataCharacterBreak : Luban.BeanBase + "CriticalRatio:" + CriticalRatio + "," + "CriticalDamage:" + CriticalDamage + "," + "LevelLimit:" + LevelLimit + "," - + "PassiveSkillID:" + PassiveSkillID + "," - + "SpendLeadership:" + SpendLeadership + "," - + "CostItems:" + Luban.StringUtil.CollectionToString(CostItems) + "," + "SkillPropModifyList:" + Luban.StringUtil.CollectionToString(SkillPropModifyList) + "," + + "PassiveSkillID:" + PassiveSkillID + "," + + "CostItems:" + Luban.StringUtil.CollectionToString(CostItems) + "," + "SkillModifyDesc:" + SkillModifyDesc + "," + + "Name:" + Name + "," + + "IconPathLight:" + IconPathLight + "," + "}"; } } diff --git a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ConditionType.cs b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ConditionType.cs index 568aee8b9c4..cac71a0d5b3 100644 --- a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ConditionType.cs +++ b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ConditionType.cs @@ -150,6 +150,18 @@ namespace cfg /// CombatDefault = 504, /// + /// (战斗)指定一个角色上载具 + /// + CombatInVehicleByCharacterId = 505, + /// + /// (战斗)指定一个职业上载具 + /// + CombatInVehicleByJob = 506, + /// + /// (战斗)指定任意个单位上载具 + /// + CombatInVehicleByCount = 507, + /// /// (新手引导)引导通过 /// GuidePass = 1000, diff --git a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/FightCfg/DataBattery.cs b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/FightCfg/DataBattery.cs index 2074629bd76..3215e733c60 100644 --- a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/FightCfg/DataBattery.cs +++ b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/FightCfg/DataBattery.cs @@ -22,7 +22,9 @@ public sealed partial class DataBattery : Luban.BeanBase cacheJsonNode = _buf; { if(!_buf["ID"].IsNumber) { throw new SerializationException(); } ID = _buf["ID"]; } { if(!_buf["NameRead"].IsString) { throw new SerializationException(); } NameRead = _buf["NameRead"]; } + { if(!_buf["CanAttack"].IsBoolean) { throw new SerializationException(); } CanAttack = _buf["CanAttack"]; } { if(!_buf["DamagePower"].IsNumber) { throw new SerializationException(); } DamagePower = _buf["DamagePower"]; } + { if(!_buf["MoraleDamage"].IsNumber) { throw new SerializationException(); } MoraleDamage = _buf["MoraleDamage"]; } { if(!_buf["MaxBulletCount"].IsNumber) { throw new SerializationException(); } MaxBulletCount = _buf["MaxBulletCount"]; } { if(!_buf["AttackPowerLevel"].IsNumber) { throw new SerializationException(); } AttackPowerLevel = _buf["AttackPowerLevel"]; } { if(!_buf["AttackDistance"].IsNumber) { throw new SerializationException(); } AttackDistance = _buf["AttackDistance"]; } @@ -37,24 +39,24 @@ public sealed partial class DataBattery : Luban.BeanBase { if(!_buf["ScaleForVehicle"].IsNumber) { throw new SerializationException(); } ScaleForVehicle = _buf["ScaleForVehicle"]; } { if(!_buf["ScaleForHuman"].IsNumber) { throw new SerializationException(); } ScaleForHuman = _buf["ScaleForHuman"]; } { if(!_buf["ScaleForBuilding"].IsNumber) { throw new SerializationException(); } ScaleForBuilding = _buf["ScaleForBuilding"]; } - { if(!_buf["MoraleDamage"].IsNumber) { throw new SerializationException(); } MoraleDamage = _buf["MoraleDamage"]; } { if(!_buf["AttackShiledScale"].IsNumber) { throw new SerializationException(); } AttackShiledScale = _buf["AttackShiledScale"]; } { if(!_buf["AttackHpScale"].IsNumber) { throw new SerializationException(); } AttackHpScale = _buf["AttackHpScale"]; } - { if(!_buf["CanAttack"].IsBoolean) { throw new SerializationException(); } CanAttack = _buf["CanAttack"]; } - { if(!_buf["ModelPath"].IsString) { throw new SerializationException(); } ModelPath = _buf["ModelPath"]; } - { var __json0 = _buf["FireAudioId"]; if(!__json0.IsArray) { throw new SerializationException(); } FireAudioId = new System.Collections.Generic.List(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { string __v0; { if(!__e0.IsString) { throw new SerializationException(); } __v0 = __e0; } FireAudioId.Add(__v0); } } { if(!_buf["FireEffectId"].IsNumber) { throw new SerializationException(); } FireEffectId = _buf["FireEffectId"]; } { if(!_buf["HitEffectId"].IsNumber) { throw new SerializationException(); } HitEffectId = _buf["HitEffectId"]; } { if(!_buf["CriticalHitEffectId"].IsNumber) { throw new SerializationException(); } CriticalHitEffectId = _buf["CriticalHitEffectId"]; } { if(!_buf["MissHitGroundEffectId"].IsNumber) { throw new SerializationException(); } MissHitGroundEffectId = _buf["MissHitGroundEffectId"]; } { if(!_buf["FlyEffectId"].IsNumber) { throw new SerializationException(); } FlyEffectId = _buf["FlyEffectId"]; } + { var __json0 = _buf["FireAudioId"]; if(!__json0.IsArray) { throw new SerializationException(); } FireAudioId = new System.Collections.Generic.List(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { string __v0; { if(!__e0.IsString) { throw new SerializationException(); } __v0 = __e0; } FireAudioId.Add(__v0); } } + { if(!_buf["ModelPath"].IsString) { throw new SerializationException(); } ModelPath = _buf["ModelPath"]; } } - public DataBattery(long ID, string NameRead, int DamagePower, int MaxBulletCount, int AttackPowerLevel, int AttackDistance, float FireRate, float BulletFlySpeed, System.Collections.Generic.List ShootDistanceScale, float TurnSpeed, int AttackLoopCount, float AttackSplitTime, float ReloadTime, bool AttackIgnoreBlock, float ScaleForVehicle, float ScaleForHuman, float ScaleForBuilding, int MoraleDamage, float AttackShiledScale, float AttackHpScale, bool CanAttack, string ModelPath, System.Collections.Generic.List FireAudioId, int FireEffectId, int HitEffectId, int CriticalHitEffectId, int MissHitGroundEffectId, int FlyEffectId ) + public DataBattery(long ID, string NameRead, bool CanAttack, int DamagePower, int MoraleDamage, int MaxBulletCount, int AttackPowerLevel, int AttackDistance, float FireRate, float BulletFlySpeed, System.Collections.Generic.List ShootDistanceScale, float TurnSpeed, int AttackLoopCount, float AttackSplitTime, float ReloadTime, bool AttackIgnoreBlock, float ScaleForVehicle, float ScaleForHuman, float ScaleForBuilding, float AttackShiledScale, float AttackHpScale, int FireEffectId, int HitEffectId, int CriticalHitEffectId, int MissHitGroundEffectId, int FlyEffectId, System.Collections.Generic.List FireAudioId, string ModelPath ) { this.ID = ID; this.NameRead = NameRead; + this.CanAttack = CanAttack; this.DamagePower = DamagePower; + this.MoraleDamage = MoraleDamage; this.MaxBulletCount = MaxBulletCount; this.AttackPowerLevel = AttackPowerLevel; this.AttackDistance = AttackDistance; @@ -69,17 +71,15 @@ public sealed partial class DataBattery : Luban.BeanBase this.ScaleForVehicle = ScaleForVehicle; this.ScaleForHuman = ScaleForHuman; this.ScaleForBuilding = ScaleForBuilding; - this.MoraleDamage = MoraleDamage; this.AttackShiledScale = AttackShiledScale; this.AttackHpScale = AttackHpScale; - this.CanAttack = CanAttack; - this.ModelPath = ModelPath; - this.FireAudioId = FireAudioId; this.FireEffectId = FireEffectId; this.HitEffectId = HitEffectId; this.CriticalHitEffectId = CriticalHitEffectId; this.MissHitGroundEffectId = MissHitGroundEffectId; this.FlyEffectId = FlyEffectId; + this.FireAudioId = FireAudioId; + this.ModelPath = ModelPath; } @@ -97,10 +97,18 @@ public sealed partial class DataBattery : Luban.BeanBase /// public string NameRead { get; private set; } /// + /// 是否可以攻击 + /// + public bool CanAttack { get; private set; } + /// /// 单发伤害 /// public int DamagePower { get; private set; } /// + /// 士气伤害 + /// + public int MoraleDamage { get; private set; } + /// /// 弹夹容量 /// public int MaxBulletCount { get; private set; } @@ -157,10 +165,6 @@ public sealed partial class DataBattery : Luban.BeanBase /// public float ScaleForBuilding { get; private set; } /// - /// 士气伤害 - /// - public int MoraleDamage { get; private set; } - /// /// 穿甲系数 /// public float AttackShiledScale { get; private set; } @@ -169,18 +173,6 @@ public sealed partial class DataBattery : Luban.BeanBase /// public float AttackHpScale { get; private set; } /// - /// 是否可以攻击 - /// - public bool CanAttack { get; private set; } - /// - /// 武器模型路径 - /// - public string ModelPath { get; private set; } - /// - /// 开火音效 - /// - public System.Collections.Generic.List FireAudioId { get; private set; } - /// /// 武器使用的开枪特效id /// public int FireEffectId { get; private set; } @@ -200,6 +192,14 @@ public sealed partial class DataBattery : Luban.BeanBase /// 武器使用的弹道特效id /// public int FlyEffectId { get; private set; } + /// + /// 开火音效 + /// + public System.Collections.Generic.List FireAudioId { get; private set; } + /// + /// 武器模型路径 + /// + public string ModelPath { get; private set; } public const int __ID__ = -1782591927; public override int GetTypeId() => __ID__; @@ -213,7 +213,9 @@ public sealed partial class DataBattery : Luban.BeanBase return "{ " + "ID:" + ID + "," + "NameRead:" + NameRead + "," + + "CanAttack:" + CanAttack + "," + "DamagePower:" + DamagePower + "," + + "MoraleDamage:" + MoraleDamage + "," + "MaxBulletCount:" + MaxBulletCount + "," + "AttackPowerLevel:" + AttackPowerLevel + "," + "AttackDistance:" + AttackDistance + "," @@ -228,17 +230,15 @@ public sealed partial class DataBattery : Luban.BeanBase + "ScaleForVehicle:" + ScaleForVehicle + "," + "ScaleForHuman:" + ScaleForHuman + "," + "ScaleForBuilding:" + ScaleForBuilding + "," - + "MoraleDamage:" + MoraleDamage + "," + "AttackShiledScale:" + AttackShiledScale + "," + "AttackHpScale:" + AttackHpScale + "," - + "CanAttack:" + CanAttack + "," - + "ModelPath:" + ModelPath + "," - + "FireAudioId:" + Luban.StringUtil.CollectionToString(FireAudioId) + "," + "FireEffectId:" + FireEffectId + "," + "HitEffectId:" + HitEffectId + "," + "CriticalHitEffectId:" + CriticalHitEffectId + "," + "MissHitGroundEffectId:" + MissHitGroundEffectId + "," + "FlyEffectId:" + FlyEffectId + "," + + "FireAudioId:" + Luban.StringUtil.CollectionToString(FireAudioId) + "," + + "ModelPath:" + ModelPath + "," + "}"; } } diff --git a/ProjectNLD/Assets/Config/Data/Localize/CN/stringcfg_stringconfig.json b/ProjectNLD/Assets/Config/Data/Localize/CN/stringcfg_stringconfig.json index 2a8cf4ce169..5b663f65cb4 100644 --- a/ProjectNLD/Assets/Config/Data/Localize/CN/stringcfg_stringconfig.json +++ b/ProjectNLD/Assets/Config/Data/Localize/CN/stringcfg_stringconfig.json @@ -25115,6 +25115,32 @@ "OutCalculate": [], "CalculateType": 0 }, + { + "Key": "condition_defense_wave", + "Name": "condition_defense_wave", + "value": "防守{0}/{1}波", + "Desc": "防守{0}/{1}波", + "Notes": "", + "Param0": "", + "Param1": "", + "Param2": "", + "InnerCalculate": false, + "OutCalculate": [], + "CalculateType": 0 + }, + { + "Key": "condition_defense_time", + "Name": "condition_defense_time", + "value": "坚持{0}", + "Desc": "坚持{0}", + "Notes": "", + "Param0": "", + "Param1": "", + "Param2": "", + "InnerCalculate": false, + "OutCalculate": [], + "CalculateType": 0 + }, { "Key": "weapon_1", "Name": "weapon_1", @@ -160203,7 +160229,7 @@ { "Key": "Guide_816", "Name": "Guide_816", - "value": "敌人正在后撤,快上车追上他!", + "value": "有些敌人会后撤,需要快速移动追击", "Desc": "", "Notes": "", "Param0": "", diff --git a/ProjectNLD/Assets/Config/Data/charactercfg_characterawaking.json b/ProjectNLD/Assets/Config/Data/charactercfg_characterawaking.json index 729935a3b1c..4ef23313341 100644 --- a/ProjectNLD/Assets/Config/Data/charactercfg_characterawaking.json +++ b/ProjectNLD/Assets/Config/Data/charactercfg_characterawaking.json @@ -2,9 +2,6 @@ { "RoleID": 100001, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14,20 +11,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200011, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200011 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200011, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100001, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -37,6 +34,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200011 + ], "PassiveSkillID": 200012, "WeaponGrasp": 0.90625, "CostItems": [ @@ -45,17 +45,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100001, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -65,6 +62,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200011 + ], "PassiveSkillID": 200013, "WeaponGrasp": 0.8125, "CostItems": [ @@ -73,17 +73,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100001, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -93,6 +90,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200011 + ], "PassiveSkillID": 200014, "WeaponGrasp": 0.71875, "CostItems": [ @@ -101,17 +101,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100001, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -121,6 +118,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200011 + ], "PassiveSkillID": 200015, "WeaponGrasp": 0.625, "CostItems": [ @@ -129,17 +129,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100002, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -149,20 +146,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200021, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200021 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200021, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100002, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -172,6 +169,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200021 + ], "PassiveSkillID": 200022, "WeaponGrasp": 0.90625, "CostItems": [ @@ -180,17 +180,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100002, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -200,6 +197,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200021 + ], "PassiveSkillID": 200023, "WeaponGrasp": 0.8125, "CostItems": [ @@ -208,17 +208,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100002, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -228,6 +225,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200021 + ], "PassiveSkillID": 200024, "WeaponGrasp": 0.71875, "CostItems": [ @@ -236,17 +236,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100002, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -256,6 +253,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200021 + ], "PassiveSkillID": 200025, "WeaponGrasp": 0.625, "CostItems": [ @@ -264,17 +264,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100003, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -284,20 +281,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200031, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200031 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200031, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100003, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -307,6 +304,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200031 + ], "PassiveSkillID": 200032, "WeaponGrasp": 0.90625, "CostItems": [ @@ -315,17 +315,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100003, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -335,6 +332,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200031 + ], "PassiveSkillID": 200033, "WeaponGrasp": 0.8125, "CostItems": [ @@ -343,17 +343,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100003, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -363,6 +360,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200031 + ], "PassiveSkillID": 200034, "WeaponGrasp": 0.71875, "CostItems": [ @@ -371,17 +371,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100003, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -391,6 +388,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200031 + ], "PassiveSkillID": 200035, "WeaponGrasp": 0.625, "CostItems": [ @@ -399,17 +399,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100004, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -419,20 +416,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200041, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200041 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200041, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100004, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -442,6 +439,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200041 + ], "PassiveSkillID": 200042, "WeaponGrasp": 0.90625, "CostItems": [ @@ -450,17 +450,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100004, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -470,6 +467,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200041 + ], "PassiveSkillID": 200043, "WeaponGrasp": 0.8125, "CostItems": [ @@ -478,17 +478,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100004, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -498,6 +495,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200041 + ], "PassiveSkillID": 200044, "WeaponGrasp": 0.71875, "CostItems": [ @@ -506,17 +506,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100004, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -526,6 +523,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200041 + ], "PassiveSkillID": 200045, "WeaponGrasp": 0.625, "CostItems": [ @@ -534,17 +534,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100005, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -554,20 +551,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200051, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200051 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200051, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100005, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -577,6 +574,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200051 + ], "PassiveSkillID": 200052, "WeaponGrasp": 0.90625, "CostItems": [ @@ -585,17 +585,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100005, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -605,6 +602,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200051 + ], "PassiveSkillID": 200053, "WeaponGrasp": 0.8125, "CostItems": [ @@ -613,17 +613,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100005, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -633,6 +630,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200051 + ], "PassiveSkillID": 200054, "WeaponGrasp": 0.71875, "CostItems": [ @@ -641,17 +641,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100005, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -661,6 +658,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200051 + ], "PassiveSkillID": 200055, "WeaponGrasp": 0.625, "CostItems": [ @@ -669,17 +669,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100006, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -689,20 +686,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200061, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200061 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200061, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100006, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -712,6 +709,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200061 + ], "PassiveSkillID": 200062, "WeaponGrasp": 0.90625, "CostItems": [ @@ -720,17 +720,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200061 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100006, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -740,6 +737,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200061 + ], "PassiveSkillID": 200063, "WeaponGrasp": 0.8125, "CostItems": [ @@ -748,17 +748,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200061 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100006, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -768,6 +765,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200061 + ], "PassiveSkillID": 200064, "WeaponGrasp": 0.71875, "CostItems": [ @@ -776,17 +776,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200061 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100006, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -796,6 +793,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200061 + ], "PassiveSkillID": 200065, "WeaponGrasp": 0.625, "CostItems": [ @@ -804,17 +804,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200061 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100007, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -824,20 +821,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200071, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200071 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200071, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100007, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -847,6 +844,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200071 + ], "PassiveSkillID": 200072, "WeaponGrasp": 0.90625, "CostItems": [ @@ -855,17 +855,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200071 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100007, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -875,6 +872,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200071 + ], "PassiveSkillID": 200073, "WeaponGrasp": 0.8125, "CostItems": [ @@ -883,17 +883,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200071 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100007, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -903,6 +900,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200071 + ], "PassiveSkillID": 200074, "WeaponGrasp": 0.71875, "CostItems": [ @@ -911,17 +911,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200071 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100007, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -931,6 +928,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200071 + ], "PassiveSkillID": 200075, "WeaponGrasp": 0.625, "CostItems": [ @@ -939,17 +939,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200071 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100008, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -959,20 +956,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200081, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200081 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200081, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100008, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -982,6 +979,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200081 + ], "PassiveSkillID": 200082, "WeaponGrasp": 0.90625, "CostItems": [ @@ -990,17 +990,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200081 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100008, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1010,6 +1007,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200081 + ], "PassiveSkillID": 200083, "WeaponGrasp": 0.8125, "CostItems": [ @@ -1018,17 +1018,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200081 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100008, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1038,6 +1035,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200081 + ], "PassiveSkillID": 200084, "WeaponGrasp": 0.71875, "CostItems": [ @@ -1046,17 +1046,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200081 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100008, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1066,6 +1063,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200081 + ], "PassiveSkillID": 200085, "WeaponGrasp": 0.625, "CostItems": [ @@ -1074,17 +1074,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200081 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100009, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1094,20 +1091,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200091, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200091 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200091, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100009, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1117,6 +1114,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200091 + ], "PassiveSkillID": 200092, "WeaponGrasp": 0.90625, "CostItems": [ @@ -1125,17 +1125,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200091 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100009, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1145,6 +1142,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200091 + ], "PassiveSkillID": 200093, "WeaponGrasp": 0.8125, "CostItems": [ @@ -1153,17 +1153,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200091 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100009, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1173,6 +1170,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200091 + ], "PassiveSkillID": 200094, "WeaponGrasp": 0.71875, "CostItems": [ @@ -1181,17 +1181,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200091 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100009, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1201,6 +1198,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200091 + ], "PassiveSkillID": 200095, "WeaponGrasp": 0.625, "CostItems": [ @@ -1209,17 +1209,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200091 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100010, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1229,20 +1226,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200101, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200101 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200101, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100010, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1252,6 +1249,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200101 + ], "PassiveSkillID": 200102, "WeaponGrasp": 0.90625, "CostItems": [ @@ -1260,17 +1260,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200101 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100010, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1280,6 +1277,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200101 + ], "PassiveSkillID": 200103, "WeaponGrasp": 0.8125, "CostItems": [ @@ -1288,17 +1288,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200101 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100010, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1308,6 +1305,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200101 + ], "PassiveSkillID": 200104, "WeaponGrasp": 0.71875, "CostItems": [ @@ -1316,17 +1316,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200101 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100010, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1336,6 +1333,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200101 + ], "PassiveSkillID": 200105, "WeaponGrasp": 0.625, "CostItems": [ @@ -1344,17 +1344,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200101 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100011, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1364,20 +1361,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200111, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200111 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200111, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100011, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1387,6 +1384,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200111 + ], "PassiveSkillID": 200112, "WeaponGrasp": 0.90625, "CostItems": [ @@ -1395,17 +1395,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200111 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100011, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1415,6 +1412,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200111 + ], "PassiveSkillID": 200113, "WeaponGrasp": 0.8125, "CostItems": [ @@ -1423,17 +1423,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200111 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100011, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1443,6 +1440,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200111 + ], "PassiveSkillID": 200114, "WeaponGrasp": 0.71875, "CostItems": [ @@ -1451,17 +1451,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200111 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100011, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1471,6 +1468,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200111 + ], "PassiveSkillID": 200115, "WeaponGrasp": 0.625, "CostItems": [ @@ -1479,17 +1479,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200111 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100012, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1499,20 +1496,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200121, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200121 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200121, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100012, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1522,6 +1519,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200121 + ], "PassiveSkillID": 200122, "WeaponGrasp": 0.90625, "CostItems": [ @@ -1530,17 +1530,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200121 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100012, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1550,6 +1547,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200121 + ], "PassiveSkillID": 200123, "WeaponGrasp": 0.8125, "CostItems": [ @@ -1558,17 +1558,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200121 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100012, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1578,6 +1575,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200121 + ], "PassiveSkillID": 200124, "WeaponGrasp": 0.71875, "CostItems": [ @@ -1586,17 +1586,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200121 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100012, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1606,6 +1603,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200121 + ], "PassiveSkillID": 200125, "WeaponGrasp": 0.625, "CostItems": [ @@ -1614,17 +1614,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200121 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100013, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1634,20 +1631,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200131, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200131 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200131, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100013, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1657,6 +1654,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200131 + ], "PassiveSkillID": 200132, "WeaponGrasp": 0.90625, "CostItems": [ @@ -1665,17 +1665,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200131 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100013, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1685,6 +1682,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200131 + ], "PassiveSkillID": 200133, "WeaponGrasp": 0.8125, "CostItems": [ @@ -1693,17 +1693,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200131 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100013, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1713,6 +1710,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200131 + ], "PassiveSkillID": 200134, "WeaponGrasp": 0.71875, "CostItems": [ @@ -1721,17 +1721,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200131 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100013, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1741,6 +1738,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200131 + ], "PassiveSkillID": 200135, "WeaponGrasp": 0.625, "CostItems": [ @@ -1749,17 +1749,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200131 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100014, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1769,20 +1766,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200141, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200141 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200141, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100014, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1792,6 +1789,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200141 + ], "PassiveSkillID": 200142, "WeaponGrasp": 0.90625, "CostItems": [ @@ -1800,17 +1800,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200141 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100014, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1820,6 +1817,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200141 + ], "PassiveSkillID": 200143, "WeaponGrasp": 0.8125, "CostItems": [ @@ -1828,17 +1828,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200141 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100014, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1848,6 +1845,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200141 + ], "PassiveSkillID": 200144, "WeaponGrasp": 0.71875, "CostItems": [ @@ -1856,17 +1856,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200141 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100014, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1876,6 +1873,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200141 + ], "PassiveSkillID": 200145, "WeaponGrasp": 0.625, "CostItems": [ @@ -1884,17 +1884,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200141 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100015, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1904,20 +1901,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200151, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200151 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200151, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100015, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1927,6 +1924,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200151 + ], "PassiveSkillID": 200152, "WeaponGrasp": 0.90625, "CostItems": [ @@ -1935,17 +1935,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200151 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100015, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1955,6 +1952,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200151 + ], "PassiveSkillID": 200153, "WeaponGrasp": 0.8125, "CostItems": [ @@ -1963,17 +1963,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200151 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100015, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1983,6 +1980,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200151 + ], "PassiveSkillID": 200154, "WeaponGrasp": 0.71875, "CostItems": [ @@ -1991,17 +1991,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200151 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100015, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2011,6 +2008,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200151 + ], "PassiveSkillID": 200155, "WeaponGrasp": 0.625, "CostItems": [ @@ -2019,17 +2019,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200151 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100016, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2039,20 +2036,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200161, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200161 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200161, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100016, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2062,6 +2059,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200161 + ], "PassiveSkillID": 200162, "WeaponGrasp": 0.90625, "CostItems": [ @@ -2070,17 +2070,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200161 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100016, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2090,6 +2087,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200161 + ], "PassiveSkillID": 200163, "WeaponGrasp": 0.8125, "CostItems": [ @@ -2098,17 +2098,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200161 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100016, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2118,6 +2115,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200161 + ], "PassiveSkillID": 200164, "WeaponGrasp": 0.71875, "CostItems": [ @@ -2126,17 +2126,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200161 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100016, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2146,6 +2143,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200161 + ], "PassiveSkillID": 200165, "WeaponGrasp": 0.625, "CostItems": [ @@ -2154,17 +2154,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200161 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100017, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2174,18 +2171,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100017, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2195,6 +2192,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200171, "WeaponGrasp": 0.90625, "CostItems": [ @@ -2203,15 +2201,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100017, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2221,6 +2218,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200172, "WeaponGrasp": 0.8125, "CostItems": [ @@ -2229,15 +2227,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100017, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2247,6 +2244,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200173, "WeaponGrasp": 0.71875, "CostItems": [ @@ -2255,15 +2253,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100017, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2273,6 +2270,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200174, "WeaponGrasp": 0.625, "CostItems": [ @@ -2281,15 +2279,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100018, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2299,18 +2296,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100018, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2320,6 +2317,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200181, "WeaponGrasp": 0.90625, "CostItems": [ @@ -2328,15 +2326,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100018, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2346,6 +2343,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200182, "WeaponGrasp": 0.8125, "CostItems": [ @@ -2354,15 +2352,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100018, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2372,6 +2369,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200183, "WeaponGrasp": 0.71875, "CostItems": [ @@ -2380,15 +2378,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100018, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2398,6 +2395,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200184, "WeaponGrasp": 0.625, "CostItems": [ @@ -2406,15 +2404,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100019, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2424,18 +2421,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100019, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2445,6 +2442,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200191, "WeaponGrasp": 0.90625, "CostItems": [ @@ -2453,15 +2451,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100019, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2471,6 +2468,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200192, "WeaponGrasp": 0.8125, "CostItems": [ @@ -2479,15 +2477,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100019, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2497,6 +2494,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200193, "WeaponGrasp": 0.71875, "CostItems": [ @@ -2505,15 +2503,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100019, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2523,6 +2520,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200194, "WeaponGrasp": 0.625, "CostItems": [ @@ -2531,15 +2529,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100020, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2549,18 +2546,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100020, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2570,6 +2567,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200201, "WeaponGrasp": 0.90625, "CostItems": [ @@ -2578,15 +2576,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100020, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2596,6 +2593,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200202, "WeaponGrasp": 0.8125, "CostItems": [ @@ -2604,15 +2602,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100020, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2622,6 +2619,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200203, "WeaponGrasp": 0.71875, "CostItems": [ @@ -2630,15 +2628,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100020, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2648,6 +2645,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200204, "WeaponGrasp": 0.625, "CostItems": [ @@ -2656,15 +2654,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100021, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2674,18 +2671,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100021, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2695,6 +2692,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200211, "WeaponGrasp": 0.90625, "CostItems": [ @@ -2703,15 +2701,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100021, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2721,6 +2718,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200212, "WeaponGrasp": 0.8125, "CostItems": [ @@ -2729,15 +2727,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100021, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2747,6 +2744,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200213, "WeaponGrasp": 0.71875, "CostItems": [ @@ -2755,15 +2753,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100021, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2773,6 +2770,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200214, "WeaponGrasp": 0.625, "CostItems": [ @@ -2781,15 +2779,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100022, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2799,20 +2796,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200221, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200221 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200221, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100022, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2822,6 +2819,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200221 + ], "PassiveSkillID": 200222, "WeaponGrasp": 0.90625, "CostItems": [ @@ -2830,17 +2830,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200221 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100022, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2850,6 +2847,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200221 + ], "PassiveSkillID": 200223, "WeaponGrasp": 0.8125, "CostItems": [ @@ -2858,17 +2858,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200221 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100022, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2878,6 +2875,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200221 + ], "PassiveSkillID": 200224, "WeaponGrasp": 0.71875, "CostItems": [ @@ -2886,17 +2886,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200221 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100022, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2906,6 +2903,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200221 + ], "PassiveSkillID": 200225, "WeaponGrasp": 0.625, "CostItems": [ @@ -2914,17 +2914,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200221 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100023, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2934,18 +2931,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100023, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2955,6 +2952,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200231, "WeaponGrasp": 0.90625, "CostItems": [ @@ -2963,15 +2961,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100023, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2981,6 +2978,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200232, "WeaponGrasp": 0.8125, "CostItems": [ @@ -2989,15 +2987,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100023, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3007,6 +3004,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200233, "WeaponGrasp": 0.71875, "CostItems": [ @@ -3015,15 +3013,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100023, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3033,6 +3030,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200234, "WeaponGrasp": 0.625, "CostItems": [ @@ -3041,15 +3039,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100024, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3059,20 +3056,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200241, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200241 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200241, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100024, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3082,6 +3079,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200241 + ], "PassiveSkillID": 200242, "WeaponGrasp": 0.90625, "CostItems": [ @@ -3090,17 +3090,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200241 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100024, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3110,6 +3107,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200241 + ], "PassiveSkillID": 200243, "WeaponGrasp": 0.8125, "CostItems": [ @@ -3118,17 +3118,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200241 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100024, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3138,6 +3135,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200241 + ], "PassiveSkillID": 200244, "WeaponGrasp": 0.71875, "CostItems": [ @@ -3146,17 +3146,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200241 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100024, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3166,6 +3163,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200241 + ], "PassiveSkillID": 200245, "WeaponGrasp": 0.625, "CostItems": [ @@ -3174,17 +3174,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200241 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100025, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3194,20 +3191,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200251, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200251 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200251, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100025, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3217,6 +3214,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200251 + ], "PassiveSkillID": 200252, "WeaponGrasp": 0.90625, "CostItems": [ @@ -3225,17 +3225,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200251 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100025, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3245,6 +3242,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200251 + ], "PassiveSkillID": 200253, "WeaponGrasp": 0.8125, "CostItems": [ @@ -3253,17 +3253,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200251 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100025, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3273,6 +3270,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200251 + ], "PassiveSkillID": 200254, "WeaponGrasp": 0.71875, "CostItems": [ @@ -3281,17 +3281,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200251 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100025, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3301,6 +3298,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200251 + ], "PassiveSkillID": 200255, "WeaponGrasp": 0.625, "CostItems": [ @@ -3309,17 +3309,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200251 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100026, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3329,20 +3326,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200261, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200261 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200261, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100026, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3352,6 +3349,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200261 + ], "PassiveSkillID": 200262, "WeaponGrasp": 0.90625, "CostItems": [ @@ -3360,17 +3360,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200261 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100026, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3380,6 +3377,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200261 + ], "PassiveSkillID": 200263, "WeaponGrasp": 0.8125, "CostItems": [ @@ -3388,17 +3388,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200261 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100026, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3408,6 +3405,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200261 + ], "PassiveSkillID": 200264, "WeaponGrasp": 0.71875, "CostItems": [ @@ -3416,17 +3416,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200261 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100026, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3436,6 +3433,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200261 + ], "PassiveSkillID": 200265, "WeaponGrasp": 0.625, "CostItems": [ @@ -3444,17 +3444,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200261 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100027, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3464,20 +3461,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200271, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200271 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200271, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100027, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3487,6 +3484,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200271 + ], "PassiveSkillID": 200272, "WeaponGrasp": 0.90625, "CostItems": [ @@ -3495,17 +3495,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200271 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100027, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3515,6 +3512,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200271 + ], "PassiveSkillID": 200273, "WeaponGrasp": 0.8125, "CostItems": [ @@ -3523,17 +3523,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200271 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100027, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3543,6 +3540,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200271 + ], "PassiveSkillID": 200274, "WeaponGrasp": 0.71875, "CostItems": [ @@ -3551,17 +3551,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200271 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100027, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3571,6 +3568,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200271 + ], "PassiveSkillID": 200275, "WeaponGrasp": 0.625, "CostItems": [ @@ -3579,17 +3579,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200271 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100028, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3599,20 +3596,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200281, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200281 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200281, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100028, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3622,6 +3619,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200281 + ], "PassiveSkillID": 200282, "WeaponGrasp": 0.90625, "CostItems": [ @@ -3630,17 +3630,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200281 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100028, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3650,6 +3647,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200281 + ], "PassiveSkillID": 200283, "WeaponGrasp": 0.8125, "CostItems": [ @@ -3658,17 +3658,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200281 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100028, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3678,6 +3675,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200281 + ], "PassiveSkillID": 200284, "WeaponGrasp": 0.71875, "CostItems": [ @@ -3686,17 +3686,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200281 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100028, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3706,6 +3703,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200281 + ], "PassiveSkillID": 200285, "WeaponGrasp": 0.625, "CostItems": [ @@ -3714,17 +3714,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200281 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100029, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3734,20 +3731,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200291, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200291 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200291, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100029, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3757,6 +3754,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200291 + ], "PassiveSkillID": 200292, "WeaponGrasp": 0.90625, "CostItems": [ @@ -3765,17 +3765,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200291 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100029, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3785,6 +3782,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200291 + ], "PassiveSkillID": 200293, "WeaponGrasp": 0.8125, "CostItems": [ @@ -3793,17 +3793,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200291 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100029, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3813,6 +3810,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200291 + ], "PassiveSkillID": 200294, "WeaponGrasp": 0.71875, "CostItems": [ @@ -3821,17 +3821,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200291 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100029, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3841,6 +3838,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200291 + ], "PassiveSkillID": 200295, "WeaponGrasp": 0.625, "CostItems": [ @@ -3849,17 +3849,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200291 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100030, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3869,20 +3866,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200301, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200301 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200301, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100030, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3892,6 +3889,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200301 + ], "PassiveSkillID": 200302, "WeaponGrasp": 0.90625, "CostItems": [ @@ -3900,17 +3900,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200301 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100030, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3920,6 +3917,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200301 + ], "PassiveSkillID": 200303, "WeaponGrasp": 0.8125, "CostItems": [ @@ -3928,17 +3928,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200301 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100030, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3948,6 +3945,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200301 + ], "PassiveSkillID": 200304, "WeaponGrasp": 0.71875, "CostItems": [ @@ -3956,17 +3956,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200301 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100030, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3976,6 +3973,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200301 + ], "PassiveSkillID": 200305, "WeaponGrasp": 0.625, "CostItems": [ @@ -3984,17 +3984,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200301 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100031, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4004,20 +4001,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200311, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200311 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200311, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100031, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4027,6 +4024,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200311 + ], "PassiveSkillID": 200312, "WeaponGrasp": 0.90625, "CostItems": [ @@ -4035,17 +4035,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200311 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100031, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4055,6 +4052,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200311 + ], "PassiveSkillID": 200313, "WeaponGrasp": 0.8125, "CostItems": [ @@ -4063,17 +4063,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200311 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100031, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4083,6 +4080,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200311 + ], "PassiveSkillID": 200314, "WeaponGrasp": 0.71875, "CostItems": [ @@ -4091,17 +4091,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200311 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100031, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4111,6 +4108,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200311 + ], "PassiveSkillID": 200315, "WeaponGrasp": 0.625, "CostItems": [ @@ -4119,17 +4119,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200311 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100032, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4139,20 +4136,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200321, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200321 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200321, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100032, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4162,6 +4159,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200321 + ], "PassiveSkillID": 200322, "WeaponGrasp": 0.90625, "CostItems": [ @@ -4170,17 +4170,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200321 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100032, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4190,6 +4187,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200321 + ], "PassiveSkillID": 200323, "WeaponGrasp": 0.8125, "CostItems": [ @@ -4198,17 +4198,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200321 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100032, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4218,6 +4215,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200321 + ], "PassiveSkillID": 200324, "WeaponGrasp": 0.71875, "CostItems": [ @@ -4226,17 +4226,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200321 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100032, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4246,6 +4243,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200321 + ], "PassiveSkillID": 200325, "WeaponGrasp": 0.625, "CostItems": [ @@ -4254,17 +4254,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200321 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100033, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4274,20 +4271,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200331, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200331 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200331, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100033, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4297,6 +4294,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200331 + ], "PassiveSkillID": 200332, "WeaponGrasp": 0.90625, "CostItems": [ @@ -4305,17 +4305,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200331 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100033, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4325,6 +4322,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200331 + ], "PassiveSkillID": 200333, "WeaponGrasp": 0.8125, "CostItems": [ @@ -4333,17 +4333,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200331 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100033, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4353,6 +4350,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200331 + ], "PassiveSkillID": 200334, "WeaponGrasp": 0.71875, "CostItems": [ @@ -4361,17 +4361,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200331 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100033, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4381,6 +4378,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200331 + ], "PassiveSkillID": 200335, "WeaponGrasp": 0.625, "CostItems": [ @@ -4389,17 +4389,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200331 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100034, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4409,20 +4406,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200341, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200341 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200341, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100034, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4432,6 +4429,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200341 + ], "PassiveSkillID": 200342, "WeaponGrasp": 0.90625, "CostItems": [ @@ -4440,17 +4440,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200341 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100034, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4460,6 +4457,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200341 + ], "PassiveSkillID": 200343, "WeaponGrasp": 0.8125, "CostItems": [ @@ -4468,17 +4468,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200341 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100034, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4488,6 +4485,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200341 + ], "PassiveSkillID": 200344, "WeaponGrasp": 0.71875, "CostItems": [ @@ -4496,17 +4496,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200341 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100034, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4516,6 +4513,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200341 + ], "PassiveSkillID": 200345, "WeaponGrasp": 0.625, "CostItems": [ @@ -4524,17 +4524,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200341 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100035, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4544,20 +4541,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200351, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200351 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200351, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100035, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4567,6 +4564,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200351 + ], "PassiveSkillID": 200352, "WeaponGrasp": 0.90625, "CostItems": [ @@ -4575,17 +4575,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200351 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100035, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4595,6 +4592,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200351 + ], "PassiveSkillID": 200353, "WeaponGrasp": 0.8125, "CostItems": [ @@ -4603,17 +4603,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200351 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100035, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4623,6 +4620,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200351 + ], "PassiveSkillID": 200354, "WeaponGrasp": 0.71875, "CostItems": [ @@ -4631,17 +4631,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200351 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100035, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4651,6 +4648,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200351 + ], "PassiveSkillID": 200355, "WeaponGrasp": 0.625, "CostItems": [ @@ -4659,17 +4659,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200351 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100036, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4679,18 +4676,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100036, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4700,6 +4697,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200361, "WeaponGrasp": 0.90625, "CostItems": [ @@ -4708,15 +4706,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100036, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4726,6 +4723,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200362, "WeaponGrasp": 0.8125, "CostItems": [ @@ -4734,15 +4732,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100036, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4752,6 +4749,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200363, "WeaponGrasp": 0.71875, "CostItems": [ @@ -4760,15 +4758,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100036, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4778,6 +4775,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200364, "WeaponGrasp": 0.625, "CostItems": [ @@ -4786,15 +4784,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100037, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4804,18 +4801,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100037, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4825,6 +4822,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200371, "WeaponGrasp": 0.90625, "CostItems": [ @@ -4833,15 +4831,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100037, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4851,6 +4848,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200372, "WeaponGrasp": 0.8125, "CostItems": [ @@ -4859,15 +4857,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100037, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4877,6 +4874,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200373, "WeaponGrasp": 0.71875, "CostItems": [ @@ -4885,15 +4883,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100037, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4903,6 +4900,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200374, "WeaponGrasp": 0.625, "CostItems": [ @@ -4911,15 +4909,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100038, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4929,18 +4926,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100038, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4950,6 +4947,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200381, "WeaponGrasp": 0.90625, "CostItems": [ @@ -4958,15 +4956,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100038, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4976,6 +4973,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200382, "WeaponGrasp": 0.8125, "CostItems": [ @@ -4984,15 +4982,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100038, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5002,6 +4999,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200383, "WeaponGrasp": 0.71875, "CostItems": [ @@ -5010,15 +5008,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100038, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5028,6 +5025,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200384, "WeaponGrasp": 0.625, "CostItems": [ @@ -5036,15 +5034,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100039, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5054,18 +5051,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100039, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5075,6 +5072,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200391, "WeaponGrasp": 0.90625, "CostItems": [ @@ -5083,15 +5081,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100039, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5101,6 +5098,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200392, "WeaponGrasp": 0.8125, "CostItems": [ @@ -5109,15 +5107,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100039, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5127,6 +5124,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200393, "WeaponGrasp": 0.71875, "CostItems": [ @@ -5135,15 +5133,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100039, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5153,6 +5150,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200394, "WeaponGrasp": 0.625, "CostItems": [ @@ -5161,15 +5159,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100040, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5179,18 +5176,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100040, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5200,6 +5197,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200401, "WeaponGrasp": 0.90625, "CostItems": [ @@ -5208,15 +5206,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100040, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5226,6 +5223,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200402, "WeaponGrasp": 0.8125, "CostItems": [ @@ -5234,15 +5232,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100040, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5252,6 +5249,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200403, "WeaponGrasp": 0.71875, "CostItems": [ @@ -5260,15 +5258,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100040, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5278,6 +5275,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200404, "WeaponGrasp": 0.625, "CostItems": [ @@ -5286,15 +5284,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100041, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5304,18 +5301,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100041, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5325,6 +5322,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200411, "WeaponGrasp": 0.90625, "CostItems": [ @@ -5333,15 +5331,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100041, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5351,6 +5348,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200412, "WeaponGrasp": 0.8125, "CostItems": [ @@ -5359,15 +5357,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100041, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5377,6 +5374,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200413, "WeaponGrasp": 0.71875, "CostItems": [ @@ -5385,15 +5383,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100041, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5403,6 +5400,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200414, "WeaponGrasp": 0.625, "CostItems": [ @@ -5411,15 +5409,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100042, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5429,18 +5426,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100042, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5450,6 +5447,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200421, "WeaponGrasp": 0.90625, "CostItems": [ @@ -5458,15 +5456,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100042, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5476,6 +5473,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200422, "WeaponGrasp": 0.8125, "CostItems": [ @@ -5484,15 +5482,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100042, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5502,6 +5499,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200423, "WeaponGrasp": 0.71875, "CostItems": [ @@ -5510,15 +5508,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100042, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5528,6 +5525,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200424, "WeaponGrasp": 0.625, "CostItems": [ @@ -5536,15 +5534,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100043, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5554,18 +5551,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100043, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5575,6 +5572,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200431, "WeaponGrasp": 0.90625, "CostItems": [ @@ -5583,15 +5581,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100043, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5601,6 +5598,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200432, "WeaponGrasp": 0.8125, "CostItems": [ @@ -5609,15 +5607,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100043, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5627,6 +5624,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200433, "WeaponGrasp": 0.71875, "CostItems": [ @@ -5635,15 +5633,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100043, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5653,6 +5650,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200434, "WeaponGrasp": 0.625, "CostItems": [ @@ -5661,15 +5659,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100044, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5679,18 +5676,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100044, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5700,6 +5697,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200441, "WeaponGrasp": 0.90625, "CostItems": [ @@ -5708,15 +5706,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100044, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5726,6 +5723,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200442, "WeaponGrasp": 0.8125, "CostItems": [ @@ -5734,15 +5732,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100044, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5752,6 +5749,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200443, "WeaponGrasp": 0.71875, "CostItems": [ @@ -5760,15 +5758,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100044, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5778,6 +5775,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200444, "WeaponGrasp": 0.625, "CostItems": [ @@ -5786,15 +5784,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100045, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5804,18 +5801,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100045, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5825,6 +5822,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200451, "WeaponGrasp": 0.90625, "CostItems": [ @@ -5833,15 +5831,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100045, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5851,6 +5848,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200452, "WeaponGrasp": 0.8125, "CostItems": [ @@ -5859,15 +5857,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100045, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5877,6 +5874,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200453, "WeaponGrasp": 0.71875, "CostItems": [ @@ -5885,15 +5883,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100045, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5903,6 +5900,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200454, "WeaponGrasp": 0.625, "CostItems": [ @@ -5911,15 +5909,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100046, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5929,18 +5926,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100046, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5950,6 +5947,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200461, "WeaponGrasp": 0.90625, "CostItems": [ @@ -5958,15 +5956,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100046, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5976,6 +5973,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200462, "WeaponGrasp": 0.8125, "CostItems": [ @@ -5984,15 +5982,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100046, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6002,6 +5999,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200463, "WeaponGrasp": 0.71875, "CostItems": [ @@ -6010,15 +6008,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100046, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6028,6 +6025,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200464, "WeaponGrasp": 0.625, "CostItems": [ @@ -6036,15 +6034,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100047, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6054,18 +6051,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100047, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6075,6 +6072,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200471, "WeaponGrasp": 0.90625, "CostItems": [ @@ -6083,15 +6081,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100047, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6101,6 +6098,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200472, "WeaponGrasp": 0.8125, "CostItems": [ @@ -6109,15 +6107,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100047, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6127,6 +6124,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200473, "WeaponGrasp": 0.71875, "CostItems": [ @@ -6135,15 +6133,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100047, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6153,6 +6150,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200474, "WeaponGrasp": 0.625, "CostItems": [ @@ -6161,15 +6159,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100048, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6179,18 +6176,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100048, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6200,6 +6197,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200481, "WeaponGrasp": 0.90625, "CostItems": [ @@ -6208,15 +6206,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100048, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6226,6 +6223,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200482, "WeaponGrasp": 0.8125, "CostItems": [ @@ -6234,15 +6232,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100048, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6252,6 +6249,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200483, "WeaponGrasp": 0.71875, "CostItems": [ @@ -6260,15 +6258,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100048, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6278,6 +6275,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200484, "WeaponGrasp": 0.625, "CostItems": [ @@ -6286,15 +6284,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100049, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6304,18 +6301,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100049, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6325,6 +6322,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200491, "WeaponGrasp": 0.90625, "CostItems": [ @@ -6333,15 +6331,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100049, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6351,6 +6348,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200492, "WeaponGrasp": 0.8125, "CostItems": [ @@ -6359,15 +6357,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100049, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6377,6 +6374,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200493, "WeaponGrasp": 0.71875, "CostItems": [ @@ -6385,15 +6383,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100049, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6403,6 +6400,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200494, "WeaponGrasp": 0.625, "CostItems": [ @@ -6411,15 +6409,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100050, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6429,18 +6426,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100050, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6450,6 +6447,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200501, "WeaponGrasp": 0.90625, "CostItems": [ @@ -6458,15 +6456,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100050, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6476,6 +6473,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200502, "WeaponGrasp": 0.8125, "CostItems": [ @@ -6484,15 +6482,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100050, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6502,6 +6499,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200503, "WeaponGrasp": 0.71875, "CostItems": [ @@ -6510,15 +6508,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100050, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6528,6 +6525,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200504, "WeaponGrasp": 0.625, "CostItems": [ @@ -6536,15 +6534,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100051, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6554,18 +6551,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100051, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6575,6 +6572,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200511, "WeaponGrasp": 0.90625, "CostItems": [ @@ -6583,15 +6581,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100051, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6601,6 +6598,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200512, "WeaponGrasp": 0.8125, "CostItems": [ @@ -6609,15 +6607,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100051, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6627,6 +6624,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200513, "WeaponGrasp": 0.71875, "CostItems": [ @@ -6635,15 +6633,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100051, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6653,6 +6650,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200514, "WeaponGrasp": 0.625, "CostItems": [ @@ -6661,15 +6659,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100052, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6679,18 +6676,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100052, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6700,6 +6697,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200521, "WeaponGrasp": 0.90625, "CostItems": [ @@ -6708,15 +6706,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100052, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6726,6 +6723,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200522, "WeaponGrasp": 0.8125, "CostItems": [ @@ -6734,15 +6732,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100052, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6752,6 +6749,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200523, "WeaponGrasp": 0.71875, "CostItems": [ @@ -6760,15 +6758,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100052, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6778,6 +6775,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200524, "WeaponGrasp": 0.625, "CostItems": [ @@ -6786,15 +6784,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100053, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6804,18 +6801,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100053, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6825,6 +6822,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200531, "WeaponGrasp": 0.90625, "CostItems": [ @@ -6833,15 +6831,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100053, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6851,6 +6848,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200532, "WeaponGrasp": 0.8125, "CostItems": [ @@ -6859,15 +6857,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100053, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6877,6 +6874,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200533, "WeaponGrasp": 0.71875, "CostItems": [ @@ -6885,15 +6883,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100053, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6903,6 +6900,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200534, "WeaponGrasp": 0.625, "CostItems": [ @@ -6911,15 +6909,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100054, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6929,18 +6926,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100054, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6950,6 +6947,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200541, "WeaponGrasp": 0.90625, "CostItems": [ @@ -6958,15 +6956,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100054, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -6976,6 +6973,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200542, "WeaponGrasp": 0.8125, "CostItems": [ @@ -6984,15 +6982,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100054, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7002,6 +6999,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200543, "WeaponGrasp": 0.71875, "CostItems": [ @@ -7010,15 +7008,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100054, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7028,6 +7025,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200544, "WeaponGrasp": 0.625, "CostItems": [ @@ -7036,15 +7034,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100055, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7054,18 +7051,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100055, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7075,6 +7072,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200551, "WeaponGrasp": 0.90625, "CostItems": [ @@ -7083,15 +7081,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100055, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7101,6 +7098,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200552, "WeaponGrasp": 0.8125, "CostItems": [ @@ -7109,15 +7107,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100055, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7127,6 +7124,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200553, "WeaponGrasp": 0.71875, "CostItems": [ @@ -7135,15 +7133,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100055, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7153,6 +7150,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200554, "WeaponGrasp": 0.625, "CostItems": [ @@ -7161,15 +7159,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100056, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7179,18 +7176,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100056, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7200,6 +7197,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200561, "WeaponGrasp": 0.90625, "CostItems": [ @@ -7208,15 +7206,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100056, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7226,6 +7223,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200562, "WeaponGrasp": 0.8125, "CostItems": [ @@ -7234,15 +7232,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100056, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7252,6 +7249,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200563, "WeaponGrasp": 0.71875, "CostItems": [ @@ -7260,15 +7258,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100056, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7278,6 +7275,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200564, "WeaponGrasp": 0.625, "CostItems": [ @@ -7286,15 +7284,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100057, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7304,18 +7301,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100057, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7325,6 +7322,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200571, "WeaponGrasp": 0.90625, "CostItems": [ @@ -7333,15 +7331,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100057, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7351,6 +7348,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200572, "WeaponGrasp": 0.8125, "CostItems": [ @@ -7359,15 +7357,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100057, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7377,6 +7374,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200573, "WeaponGrasp": 0.71875, "CostItems": [ @@ -7385,15 +7383,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100057, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7403,6 +7400,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200574, "WeaponGrasp": 0.625, "CostItems": [ @@ -7411,15 +7409,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100058, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7429,18 +7426,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100058, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7450,6 +7447,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200581, "WeaponGrasp": 0.90625, "CostItems": [ @@ -7458,15 +7456,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100058, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7476,6 +7473,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200582, "WeaponGrasp": 0.8125, "CostItems": [ @@ -7484,15 +7482,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100058, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7502,6 +7499,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200583, "WeaponGrasp": 0.71875, "CostItems": [ @@ -7510,15 +7508,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100058, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7528,6 +7525,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200584, "WeaponGrasp": 0.625, "CostItems": [ @@ -7536,15 +7534,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100059, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7554,18 +7551,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100059, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7575,6 +7572,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200591, "WeaponGrasp": 0.90625, "CostItems": [ @@ -7583,15 +7581,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100059, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7601,6 +7598,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200592, "WeaponGrasp": 0.8125, "CostItems": [ @@ -7609,15 +7607,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100059, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7627,6 +7624,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200593, "WeaponGrasp": 0.71875, "CostItems": [ @@ -7635,15 +7633,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100059, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7653,6 +7650,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200594, "WeaponGrasp": 0.625, "CostItems": [ @@ -7661,15 +7659,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100060, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7679,18 +7676,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100060, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7700,6 +7697,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200601, "WeaponGrasp": 0.90625, "CostItems": [ @@ -7708,15 +7706,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100060, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7726,6 +7723,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200602, "WeaponGrasp": 0.8125, "CostItems": [ @@ -7734,15 +7732,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100060, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7752,6 +7749,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200603, "WeaponGrasp": 0.71875, "CostItems": [ @@ -7760,15 +7758,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100060, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7778,6 +7775,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200604, "WeaponGrasp": 0.625, "CostItems": [ @@ -7786,15 +7784,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100061, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7804,18 +7801,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100061, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7825,6 +7822,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200611, "WeaponGrasp": 0.90625, "CostItems": [ @@ -7833,15 +7831,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100061, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7851,6 +7848,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200612, "WeaponGrasp": 0.8125, "CostItems": [ @@ -7859,15 +7857,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100061, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7877,6 +7874,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200613, "WeaponGrasp": 0.71875, "CostItems": [ @@ -7885,15 +7883,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100061, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7903,6 +7900,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200614, "WeaponGrasp": 0.625, "CostItems": [ @@ -7911,15 +7909,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100062, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7929,18 +7926,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100062, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7950,6 +7947,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200621, "WeaponGrasp": 0.90625, "CostItems": [ @@ -7958,15 +7956,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100062, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -7976,6 +7973,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200622, "WeaponGrasp": 0.8125, "CostItems": [ @@ -7984,15 +7982,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100062, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8002,6 +7999,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200623, "WeaponGrasp": 0.71875, "CostItems": [ @@ -8010,15 +8008,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100062, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8028,6 +8025,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200624, "WeaponGrasp": 0.625, "CostItems": [ @@ -8036,15 +8034,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100063, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8054,18 +8051,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100063, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8075,6 +8072,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200631, "WeaponGrasp": 0.90625, "CostItems": [ @@ -8083,15 +8081,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100063, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8101,6 +8098,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200632, "WeaponGrasp": 0.8125, "CostItems": [ @@ -8109,15 +8107,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100063, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8127,6 +8124,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200633, "WeaponGrasp": 0.71875, "CostItems": [ @@ -8135,15 +8133,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100063, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8153,6 +8150,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200634, "WeaponGrasp": 0.625, "CostItems": [ @@ -8161,15 +8159,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100064, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8179,18 +8176,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100064, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8200,6 +8197,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200641, "WeaponGrasp": 0.90625, "CostItems": [ @@ -8208,15 +8206,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100064, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8226,6 +8223,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200642, "WeaponGrasp": 0.8125, "CostItems": [ @@ -8234,15 +8232,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100064, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8252,6 +8249,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200643, "WeaponGrasp": 0.71875, "CostItems": [ @@ -8260,15 +8258,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100064, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8278,6 +8275,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200644, "WeaponGrasp": 0.625, "CostItems": [ @@ -8286,15 +8284,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100065, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8304,18 +8301,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100065, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8325,6 +8322,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200651, "WeaponGrasp": 0.90625, "CostItems": [ @@ -8333,15 +8331,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100065, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8351,6 +8348,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200652, "WeaponGrasp": 0.8125, "CostItems": [ @@ -8359,15 +8357,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100065, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8377,6 +8374,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200653, "WeaponGrasp": 0.71875, "CostItems": [ @@ -8385,15 +8383,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100065, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8403,6 +8400,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200654, "WeaponGrasp": 0.625, "CostItems": [ @@ -8411,15 +8409,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100066, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8429,18 +8426,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100066, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8450,6 +8447,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200661, "WeaponGrasp": 0.90625, "CostItems": [ @@ -8458,15 +8456,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100066, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8476,6 +8473,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200662, "WeaponGrasp": 0.8125, "CostItems": [ @@ -8484,15 +8482,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100066, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8502,6 +8499,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200663, "WeaponGrasp": 0.71875, "CostItems": [ @@ -8510,15 +8508,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100066, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8528,6 +8525,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200664, "WeaponGrasp": 0.625, "CostItems": [ @@ -8536,15 +8534,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100067, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8554,18 +8551,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100067, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8575,6 +8572,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200671, "WeaponGrasp": 0.90625, "CostItems": [ @@ -8583,15 +8581,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100067, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8601,6 +8598,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200672, "WeaponGrasp": 0.8125, "CostItems": [ @@ -8609,15 +8607,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100067, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8627,6 +8624,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200673, "WeaponGrasp": 0.71875, "CostItems": [ @@ -8635,15 +8633,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100067, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8653,6 +8650,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200674, "WeaponGrasp": 0.625, "CostItems": [ @@ -8661,15 +8659,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100068, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8679,18 +8676,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100068, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8700,6 +8697,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200681, "WeaponGrasp": 0.90625, "CostItems": [ @@ -8708,15 +8706,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100068, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8726,6 +8723,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200682, "WeaponGrasp": 0.8125, "CostItems": [ @@ -8734,15 +8732,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100068, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8752,6 +8749,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200683, "WeaponGrasp": 0.71875, "CostItems": [ @@ -8760,15 +8758,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100068, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8778,6 +8775,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200684, "WeaponGrasp": 0.625, "CostItems": [ @@ -8786,15 +8784,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100069, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8804,18 +8801,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100069, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8825,6 +8822,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200691, "WeaponGrasp": 0.90625, "CostItems": [ @@ -8833,15 +8831,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100069, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8851,6 +8848,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200692, "WeaponGrasp": 0.8125, "CostItems": [ @@ -8859,15 +8857,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100069, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8877,6 +8874,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200693, "WeaponGrasp": 0.71875, "CostItems": [ @@ -8885,15 +8883,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100069, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8903,6 +8900,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200694, "WeaponGrasp": 0.625, "CostItems": [ @@ -8911,15 +8909,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100070, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8929,18 +8926,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100070, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8950,6 +8947,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200701, "WeaponGrasp": 0.90625, "CostItems": [ @@ -8958,15 +8956,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100070, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -8976,6 +8973,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200702, "WeaponGrasp": 0.8125, "CostItems": [ @@ -8984,15 +8982,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100070, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9002,6 +8999,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200703, "WeaponGrasp": 0.71875, "CostItems": [ @@ -9010,15 +9008,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100070, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9028,6 +9025,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200704, "WeaponGrasp": 0.625, "CostItems": [ @@ -9036,15 +9034,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100071, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9054,18 +9051,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100071, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9075,6 +9072,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200711, "WeaponGrasp": 0.90625, "CostItems": [ @@ -9083,15 +9081,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100071, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9101,6 +9098,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200712, "WeaponGrasp": 0.8125, "CostItems": [ @@ -9109,15 +9107,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100071, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9127,6 +9124,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200713, "WeaponGrasp": 0.71875, "CostItems": [ @@ -9135,15 +9133,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100071, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9153,6 +9150,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200714, "WeaponGrasp": 0.625, "CostItems": [ @@ -9161,15 +9159,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100072, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9179,18 +9176,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100072, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9200,6 +9197,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200721, "WeaponGrasp": 0.90625, "CostItems": [ @@ -9208,15 +9206,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100072, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9226,6 +9223,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200722, "WeaponGrasp": 0.8125, "CostItems": [ @@ -9234,15 +9232,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100072, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9252,6 +9249,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200723, "WeaponGrasp": 0.71875, "CostItems": [ @@ -9260,15 +9258,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100072, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9278,6 +9275,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200724, "WeaponGrasp": 0.625, "CostItems": [ @@ -9286,15 +9284,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100073, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9304,18 +9301,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100073, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9325,6 +9322,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200731, "WeaponGrasp": 0.90625, "CostItems": [ @@ -9333,15 +9331,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100073, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9351,6 +9348,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200732, "WeaponGrasp": 0.8125, "CostItems": [ @@ -9359,15 +9357,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100073, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9377,6 +9374,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200733, "WeaponGrasp": 0.71875, "CostItems": [ @@ -9385,15 +9383,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100073, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9403,6 +9400,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200734, "WeaponGrasp": 0.625, "CostItems": [ @@ -9411,15 +9409,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100074, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9429,18 +9426,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100074, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9450,6 +9447,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200741, "WeaponGrasp": 0.90625, "CostItems": [ @@ -9458,15 +9456,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100074, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9476,6 +9473,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200742, "WeaponGrasp": 0.8125, "CostItems": [ @@ -9484,15 +9482,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100074, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9502,6 +9499,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200743, "WeaponGrasp": 0.71875, "CostItems": [ @@ -9510,15 +9508,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100074, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9528,6 +9525,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200744, "WeaponGrasp": 0.625, "CostItems": [ @@ -9536,15 +9534,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100075, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9554,18 +9551,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100075, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9575,6 +9572,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200751, "WeaponGrasp": 0.90625, "CostItems": [ @@ -9583,15 +9581,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100075, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9601,6 +9598,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200752, "WeaponGrasp": 0.8125, "CostItems": [ @@ -9609,15 +9607,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100075, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9627,6 +9624,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200753, "WeaponGrasp": 0.71875, "CostItems": [ @@ -9635,15 +9633,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100075, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9653,6 +9650,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200754, "WeaponGrasp": 0.625, "CostItems": [ @@ -9661,15 +9659,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100076, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9679,18 +9676,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100076, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9700,6 +9697,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200761, "WeaponGrasp": 0.90625, "CostItems": [ @@ -9708,15 +9706,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100076, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9726,6 +9723,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200762, "WeaponGrasp": 0.8125, "CostItems": [ @@ -9734,15 +9732,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100076, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9752,6 +9749,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200763, "WeaponGrasp": 0.71875, "CostItems": [ @@ -9760,15 +9758,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100076, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9778,6 +9775,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200764, "WeaponGrasp": 0.625, "CostItems": [ @@ -9786,15 +9784,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100077, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9804,18 +9801,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100077, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9825,6 +9822,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200771, "WeaponGrasp": 0.90625, "CostItems": [ @@ -9833,15 +9831,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100077, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9851,6 +9848,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200772, "WeaponGrasp": 0.8125, "CostItems": [ @@ -9859,15 +9857,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100077, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9877,6 +9874,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200773, "WeaponGrasp": 0.71875, "CostItems": [ @@ -9885,15 +9883,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100077, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9903,6 +9900,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200774, "WeaponGrasp": 0.625, "CostItems": [ @@ -9911,15 +9909,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100078, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9929,18 +9926,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100078, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9950,6 +9947,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200781, "WeaponGrasp": 0.90625, "CostItems": [ @@ -9958,15 +9956,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100078, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -9976,6 +9973,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200782, "WeaponGrasp": 0.8125, "CostItems": [ @@ -9984,15 +9982,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100078, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10002,6 +9999,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200783, "WeaponGrasp": 0.71875, "CostItems": [ @@ -10010,15 +10008,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100078, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10028,6 +10025,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200784, "WeaponGrasp": 0.625, "CostItems": [ @@ -10036,15 +10034,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100079, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10054,18 +10051,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100079, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10075,6 +10072,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200791, "WeaponGrasp": 0.90625, "CostItems": [ @@ -10083,15 +10081,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100079, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10101,6 +10098,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200792, "WeaponGrasp": 0.8125, "CostItems": [ @@ -10109,15 +10107,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100079, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10127,6 +10124,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200793, "WeaponGrasp": 0.71875, "CostItems": [ @@ -10135,15 +10133,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100079, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10153,6 +10150,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200794, "WeaponGrasp": 0.625, "CostItems": [ @@ -10161,15 +10159,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100080, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10179,18 +10176,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100080, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10200,6 +10197,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200801, "WeaponGrasp": 0.90625, "CostItems": [ @@ -10208,15 +10206,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100080, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10226,6 +10223,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200802, "WeaponGrasp": 0.8125, "CostItems": [ @@ -10234,15 +10232,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100080, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10252,6 +10249,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200803, "WeaponGrasp": 0.71875, "CostItems": [ @@ -10260,15 +10258,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100080, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10278,6 +10275,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200804, "WeaponGrasp": 0.625, "CostItems": [ @@ -10286,15 +10284,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100081, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10304,18 +10301,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100081, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10325,6 +10322,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200811, "WeaponGrasp": 0.90625, "CostItems": [ @@ -10333,15 +10331,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100081, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10351,6 +10348,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200812, "WeaponGrasp": 0.8125, "CostItems": [ @@ -10359,15 +10357,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100081, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10377,6 +10374,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200813, "WeaponGrasp": 0.71875, "CostItems": [ @@ -10385,15 +10383,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100081, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10403,6 +10400,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200814, "WeaponGrasp": 0.625, "CostItems": [ @@ -10411,15 +10409,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100082, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10429,18 +10426,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100082, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10450,6 +10447,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200821, "WeaponGrasp": 0.90625, "CostItems": [ @@ -10458,15 +10456,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100082, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10476,6 +10473,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200822, "WeaponGrasp": 0.8125, "CostItems": [ @@ -10484,15 +10482,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100082, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10502,6 +10499,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200823, "WeaponGrasp": 0.71875, "CostItems": [ @@ -10510,15 +10508,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100082, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10528,6 +10525,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200824, "WeaponGrasp": 0.625, "CostItems": [ @@ -10536,15 +10534,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100083, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10554,18 +10551,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100083, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10575,6 +10572,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200831, "WeaponGrasp": 0.90625, "CostItems": [ @@ -10583,15 +10581,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100083, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10601,6 +10598,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200832, "WeaponGrasp": 0.8125, "CostItems": [ @@ -10609,15 +10607,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100083, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10627,6 +10624,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200833, "WeaponGrasp": 0.71875, "CostItems": [ @@ -10635,15 +10633,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100083, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10653,6 +10650,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200834, "WeaponGrasp": 0.625, "CostItems": [ @@ -10661,15 +10659,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100084, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10679,18 +10676,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100084, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10700,6 +10697,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200841, "WeaponGrasp": 0.90625, "CostItems": [ @@ -10708,15 +10706,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100084, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10726,6 +10723,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200842, "WeaponGrasp": 0.8125, "CostItems": [ @@ -10734,15 +10732,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100084, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10752,6 +10749,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200843, "WeaponGrasp": 0.71875, "CostItems": [ @@ -10760,15 +10758,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100084, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10778,6 +10775,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200844, "WeaponGrasp": 0.625, "CostItems": [ @@ -10786,15 +10784,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100085, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10804,18 +10801,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100085, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10825,6 +10822,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200851, "WeaponGrasp": 0.90625, "CostItems": [ @@ -10833,15 +10831,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100085, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10851,6 +10848,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200852, "WeaponGrasp": 0.8125, "CostItems": [ @@ -10859,15 +10857,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100085, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10877,6 +10874,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200853, "WeaponGrasp": 0.71875, "CostItems": [ @@ -10885,15 +10883,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100085, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10903,6 +10900,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200854, "WeaponGrasp": 0.625, "CostItems": [ @@ -10911,15 +10909,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100086, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10929,18 +10926,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100086, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10950,6 +10947,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200861, "WeaponGrasp": 0.90625, "CostItems": [ @@ -10958,15 +10956,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100086, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -10976,6 +10973,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200862, "WeaponGrasp": 0.8125, "CostItems": [ @@ -10984,15 +10982,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100086, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11002,6 +10999,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200863, "WeaponGrasp": 0.71875, "CostItems": [ @@ -11010,15 +11008,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100086, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11028,6 +11025,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200864, "WeaponGrasp": 0.625, "CostItems": [ @@ -11036,15 +11034,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100087, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11054,18 +11051,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100087, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11075,6 +11072,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200871, "WeaponGrasp": 0.90625, "CostItems": [ @@ -11083,15 +11081,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100087, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11101,6 +11098,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200872, "WeaponGrasp": 0.8125, "CostItems": [ @@ -11109,15 +11107,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100087, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11127,6 +11124,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200873, "WeaponGrasp": 0.71875, "CostItems": [ @@ -11135,15 +11133,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100087, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11153,6 +11150,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200874, "WeaponGrasp": 0.625, "CostItems": [ @@ -11161,15 +11159,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100088, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11179,18 +11176,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100088, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11200,6 +11197,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200881, "WeaponGrasp": 0.90625, "CostItems": [ @@ -11208,15 +11206,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100088, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11226,6 +11223,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200882, "WeaponGrasp": 0.8125, "CostItems": [ @@ -11234,15 +11232,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100088, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11252,6 +11249,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200883, "WeaponGrasp": 0.71875, "CostItems": [ @@ -11260,15 +11258,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100088, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11278,6 +11275,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200884, "WeaponGrasp": 0.625, "CostItems": [ @@ -11286,15 +11284,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100089, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11304,18 +11301,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100089, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11325,6 +11322,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200891, "WeaponGrasp": 0.90625, "CostItems": [ @@ -11333,15 +11331,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100089, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11351,6 +11348,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200892, "WeaponGrasp": 0.8125, "CostItems": [ @@ -11359,15 +11357,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100089, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11377,6 +11374,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200893, "WeaponGrasp": 0.71875, "CostItems": [ @@ -11385,15 +11383,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100089, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11403,6 +11400,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200894, "WeaponGrasp": 0.625, "CostItems": [ @@ -11411,15 +11409,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100090, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11429,18 +11426,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100090, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11450,6 +11447,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200901, "WeaponGrasp": 0.90625, "CostItems": [ @@ -11458,15 +11456,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100090, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11476,6 +11473,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200902, "WeaponGrasp": 0.8125, "CostItems": [ @@ -11484,15 +11482,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100090, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11502,6 +11499,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200903, "WeaponGrasp": 0.71875, "CostItems": [ @@ -11510,15 +11508,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100090, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11528,6 +11525,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200904, "WeaponGrasp": 0.625, "CostItems": [ @@ -11536,15 +11534,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100091, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11554,18 +11551,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100091, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11575,6 +11572,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200911, "WeaponGrasp": 0.90625, "CostItems": [ @@ -11583,15 +11581,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100091, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11601,6 +11598,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200912, "WeaponGrasp": 0.8125, "CostItems": [ @@ -11609,15 +11607,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100091, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11627,6 +11624,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200913, "WeaponGrasp": 0.71875, "CostItems": [ @@ -11635,15 +11633,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100091, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11653,6 +11650,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200914, "WeaponGrasp": 0.625, "CostItems": [ @@ -11661,15 +11659,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100092, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11679,18 +11676,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100092, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11700,6 +11697,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200921, "WeaponGrasp": 0.90625, "CostItems": [ @@ -11708,15 +11706,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100092, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11726,6 +11723,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200922, "WeaponGrasp": 0.8125, "CostItems": [ @@ -11734,15 +11732,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100092, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11752,6 +11749,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200923, "WeaponGrasp": 0.71875, "CostItems": [ @@ -11760,15 +11758,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100092, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11778,6 +11775,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200924, "WeaponGrasp": 0.625, "CostItems": [ @@ -11786,15 +11784,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100093, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11804,18 +11801,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100093, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11825,6 +11822,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200931, "WeaponGrasp": 0.90625, "CostItems": [ @@ -11833,15 +11831,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100093, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11851,6 +11848,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200932, "WeaponGrasp": 0.8125, "CostItems": [ @@ -11859,15 +11857,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100093, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11877,6 +11874,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200933, "WeaponGrasp": 0.71875, "CostItems": [ @@ -11885,15 +11883,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100093, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11903,6 +11900,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200934, "WeaponGrasp": 0.625, "CostItems": [ @@ -11911,15 +11909,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100094, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11929,20 +11926,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200941, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200941 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200941, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100094, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11952,6 +11949,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200941 + ], "PassiveSkillID": 200942, "WeaponGrasp": 0.90625, "CostItems": [ @@ -11960,17 +11960,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200941 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100094, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -11980,6 +11977,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200941 + ], "PassiveSkillID": 200943, "WeaponGrasp": 0.8125, "CostItems": [ @@ -11988,17 +11988,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200941 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100094, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12008,6 +12005,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200941 + ], "PassiveSkillID": 200944, "WeaponGrasp": 0.71875, "CostItems": [ @@ -12016,17 +12016,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200941 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100094, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12036,6 +12033,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200941 + ], "PassiveSkillID": 200945, "WeaponGrasp": 0.625, "CostItems": [ @@ -12044,17 +12044,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200941 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100095, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12064,20 +12061,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200951, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200951 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200951, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100095, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12087,6 +12084,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200951 + ], "PassiveSkillID": 200952, "WeaponGrasp": 0.90625, "CostItems": [ @@ -12095,17 +12095,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200951 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100095, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12115,6 +12112,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200951 + ], "PassiveSkillID": 200953, "WeaponGrasp": 0.8125, "CostItems": [ @@ -12123,17 +12123,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200951 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100095, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12143,6 +12140,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200951 + ], "PassiveSkillID": 200954, "WeaponGrasp": 0.71875, "CostItems": [ @@ -12151,17 +12151,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200951 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100095, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12171,6 +12168,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200951 + ], "PassiveSkillID": 200955, "WeaponGrasp": 0.625, "CostItems": [ @@ -12179,17 +12179,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200951 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100096, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12199,20 +12196,20 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, - "PassiveSkillID": 200961, - "WeaponGrasp": 1, - "CostItems": [], "SkillPropModifyList": [ 200961 ], - "SkillModifyDesc": "" + "PassiveSkillID": 200961, + "WeaponGrasp": 1, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100096, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12222,6 +12219,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200961 + ], "PassiveSkillID": 200962, "WeaponGrasp": 0.90625, "CostItems": [ @@ -12230,17 +12230,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200961 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100096, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12250,6 +12247,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200961 + ], "PassiveSkillID": 200963, "WeaponGrasp": 0.8125, "CostItems": [ @@ -12258,17 +12258,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200961 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100096, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12278,6 +12275,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200961 + ], "PassiveSkillID": 200964, "WeaponGrasp": 0.71875, "CostItems": [ @@ -12286,17 +12286,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200961 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100096, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12306,6 +12303,9 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [ + 200961 + ], "PassiveSkillID": 200965, "WeaponGrasp": 0.625, "CostItems": [ @@ -12314,17 +12314,14 @@ "Count": 1 } ], - "SkillPropModifyList": [ - 200961 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100097, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12334,18 +12331,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100097, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12355,6 +12352,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200971, "WeaponGrasp": 0.90625, "CostItems": [ @@ -12363,15 +12361,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100097, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12381,6 +12378,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200972, "WeaponGrasp": 0.8125, "CostItems": [ @@ -12389,15 +12387,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100097, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12407,6 +12404,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200973, "WeaponGrasp": 0.71875, "CostItems": [ @@ -12415,15 +12413,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100097, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12433,6 +12430,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200974, "WeaponGrasp": 0.625, "CostItems": [ @@ -12441,15 +12439,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100098, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12459,18 +12456,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100098, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12480,6 +12477,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200981, "WeaponGrasp": 0.90625, "CostItems": [ @@ -12488,15 +12486,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100098, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12506,6 +12503,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200982, "WeaponGrasp": 0.8125, "CostItems": [ @@ -12514,15 +12512,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100098, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12532,6 +12529,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200983, "WeaponGrasp": 0.71875, "CostItems": [ @@ -12540,15 +12538,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100098, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12558,6 +12555,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200984, "WeaponGrasp": 0.625, "CostItems": [ @@ -12566,15 +12564,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100099, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12584,18 +12581,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100099, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12605,6 +12602,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200991, "WeaponGrasp": 0.90625, "CostItems": [ @@ -12613,15 +12611,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100099, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12631,6 +12628,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200992, "WeaponGrasp": 0.8125, "CostItems": [ @@ -12639,15 +12637,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100099, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12657,6 +12654,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200993, "WeaponGrasp": 0.71875, "CostItems": [ @@ -12665,15 +12663,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100099, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12683,6 +12680,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 200994, "WeaponGrasp": 0.625, "CostItems": [ @@ -12691,15 +12689,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100100, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12709,18 +12706,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100100, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12730,6 +12727,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201001, "WeaponGrasp": 0.90625, "CostItems": [ @@ -12738,15 +12736,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100100, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12756,6 +12753,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201002, "WeaponGrasp": 0.8125, "CostItems": [ @@ -12764,15 +12762,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100100, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12782,6 +12779,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201003, "WeaponGrasp": 0.71875, "CostItems": [ @@ -12790,15 +12788,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100100, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12808,6 +12805,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201004, "WeaponGrasp": 0.625, "CostItems": [ @@ -12816,15 +12814,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100101, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12834,18 +12831,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100101, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12855,6 +12852,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201011, "WeaponGrasp": 0.90625, "CostItems": [ @@ -12863,15 +12861,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100101, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12881,6 +12878,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201012, "WeaponGrasp": 0.8125, "CostItems": [ @@ -12889,15 +12887,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100101, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12907,6 +12904,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201013, "WeaponGrasp": 0.71875, "CostItems": [ @@ -12915,15 +12913,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100101, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12933,6 +12930,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201014, "WeaponGrasp": 0.625, "CostItems": [ @@ -12941,15 +12939,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100102, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12959,18 +12956,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100102, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -12980,6 +12977,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201021, "WeaponGrasp": 0.90625, "CostItems": [ @@ -12988,15 +12986,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100102, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13006,6 +13003,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201022, "WeaponGrasp": 0.8125, "CostItems": [ @@ -13014,15 +13012,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100102, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13032,6 +13029,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201023, "WeaponGrasp": 0.71875, "CostItems": [ @@ -13040,15 +13038,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100102, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13058,6 +13055,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201024, "WeaponGrasp": 0.625, "CostItems": [ @@ -13066,15 +13064,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100103, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13084,18 +13081,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100103, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13105,6 +13102,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201031, "WeaponGrasp": 0.90625, "CostItems": [ @@ -13113,15 +13111,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100103, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13131,6 +13128,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201032, "WeaponGrasp": 0.8125, "CostItems": [ @@ -13139,15 +13137,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100103, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13157,6 +13154,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201033, "WeaponGrasp": 0.71875, "CostItems": [ @@ -13165,15 +13163,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100103, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13183,6 +13180,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201034, "WeaponGrasp": 0.625, "CostItems": [ @@ -13191,15 +13189,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100104, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13209,18 +13206,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100104, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13230,6 +13227,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201041, "WeaponGrasp": 0.90625, "CostItems": [ @@ -13238,15 +13236,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100104, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13256,6 +13253,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201042, "WeaponGrasp": 0.8125, "CostItems": [ @@ -13264,15 +13262,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100104, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13282,6 +13279,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201043, "WeaponGrasp": 0.71875, "CostItems": [ @@ -13290,15 +13288,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100104, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13308,6 +13305,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201044, "WeaponGrasp": 0.625, "CostItems": [ @@ -13316,15 +13314,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100105, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13334,18 +13331,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100105, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13355,6 +13352,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201051, "WeaponGrasp": 0.90625, "CostItems": [ @@ -13363,15 +13361,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100105, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13381,6 +13378,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201052, "WeaponGrasp": 0.8125, "CostItems": [ @@ -13389,15 +13387,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100105, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13407,6 +13404,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201053, "WeaponGrasp": 0.71875, "CostItems": [ @@ -13415,15 +13413,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100105, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13433,6 +13430,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201054, "WeaponGrasp": 0.625, "CostItems": [ @@ -13441,15 +13439,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100106, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13459,18 +13456,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100106, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13480,6 +13477,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201061, "WeaponGrasp": 0.90625, "CostItems": [ @@ -13488,15 +13486,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100106, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13506,6 +13503,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201062, "WeaponGrasp": 0.8125, "CostItems": [ @@ -13514,15 +13512,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100106, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13532,6 +13529,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201063, "WeaponGrasp": 0.71875, "CostItems": [ @@ -13540,15 +13538,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100106, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13558,6 +13555,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201064, "WeaponGrasp": 0.625, "CostItems": [ @@ -13566,15 +13564,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100107, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13584,18 +13581,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100107, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13605,6 +13602,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201071, "WeaponGrasp": 0.90625, "CostItems": [ @@ -13613,15 +13611,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100107, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13631,6 +13628,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201072, "WeaponGrasp": 0.8125, "CostItems": [ @@ -13639,15 +13637,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100107, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13657,6 +13654,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201073, "WeaponGrasp": 0.71875, "CostItems": [ @@ -13665,15 +13663,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100107, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13683,6 +13680,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201074, "WeaponGrasp": 0.625, "CostItems": [ @@ -13691,15 +13689,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100108, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13709,18 +13706,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100108, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13730,6 +13727,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201081, "WeaponGrasp": 0.90625, "CostItems": [ @@ -13738,15 +13736,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100108, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13756,6 +13753,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201082, "WeaponGrasp": 0.8125, "CostItems": [ @@ -13764,15 +13762,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100108, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13782,6 +13779,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201083, "WeaponGrasp": 0.71875, "CostItems": [ @@ -13790,15 +13788,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100108, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13808,6 +13805,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201084, "WeaponGrasp": 0.625, "CostItems": [ @@ -13816,15 +13814,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100109, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13834,18 +13831,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100109, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13855,6 +13852,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201091, "WeaponGrasp": 0.90625, "CostItems": [ @@ -13863,15 +13861,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100109, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13881,6 +13878,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201092, "WeaponGrasp": 0.8125, "CostItems": [ @@ -13889,15 +13887,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100109, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13907,6 +13904,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201093, "WeaponGrasp": 0.71875, "CostItems": [ @@ -13915,15 +13913,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100109, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13933,6 +13930,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201094, "WeaponGrasp": 0.625, "CostItems": [ @@ -13941,15 +13939,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100110, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13959,18 +13956,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100110, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -13980,6 +13977,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201101, "WeaponGrasp": 0.90625, "CostItems": [ @@ -13988,15 +13986,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100110, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14006,6 +14003,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201102, "WeaponGrasp": 0.8125, "CostItems": [ @@ -14014,15 +14012,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100110, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14032,6 +14029,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201103, "WeaponGrasp": 0.71875, "CostItems": [ @@ -14040,15 +14038,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100110, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14058,6 +14055,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 201104, "WeaponGrasp": 0.625, "CostItems": [ @@ -14066,15 +14064,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100407, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14084,18 +14081,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100407, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14105,6 +14102,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 204071, "WeaponGrasp": 0.90625, "CostItems": [ @@ -14113,15 +14111,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100407, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14131,6 +14128,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 204072, "WeaponGrasp": 0.8125, "CostItems": [ @@ -14139,15 +14137,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100407, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14157,6 +14154,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 204073, "WeaponGrasp": 0.71875, "CostItems": [ @@ -14165,15 +14163,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100407, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14183,6 +14180,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 204074, "WeaponGrasp": 0.625, "CostItems": [ @@ -14191,15 +14189,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" }, { "RoleID": 100408, "AwakingLevel": 0, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name0", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14209,18 +14206,18 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 1, "WeaponGrasp": 1, "CostItems": [], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name0", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100408, "AwakingLevel": 1, - "IconDarkPath": "UI_D_Adv_01.png", - "IconLightPath": "UI_Adv_01.png", - "Name": "awaking_name1", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14230,6 +14227,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 204081, "WeaponGrasp": 0.90625, "CostItems": [ @@ -14238,15 +14236,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name1", + "IconDarkPath": "UI_D_Adv_01.png", + "IconLightPath": "UI_Adv_01.png" }, { "RoleID": 100408, "AwakingLevel": 2, - "IconDarkPath": "UI_D_Adv_02.png", - "IconLightPath": "UI_Adv_02.png", - "Name": "awaking_name2", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14256,6 +14253,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 204082, "WeaponGrasp": 0.8125, "CostItems": [ @@ -14264,15 +14262,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name2", + "IconDarkPath": "UI_D_Adv_02.png", + "IconLightPath": "UI_Adv_02.png" }, { "RoleID": 100408, "AwakingLevel": 3, - "IconDarkPath": "UI_D_Adv_03.png", - "IconLightPath": "UI_Adv_03.png", - "Name": "awaking_name3", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14282,6 +14279,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 204083, "WeaponGrasp": 0.71875, "CostItems": [ @@ -14290,15 +14288,14 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name3", + "IconDarkPath": "UI_D_Adv_03.png", + "IconLightPath": "UI_Adv_03.png" }, { "RoleID": 100408, "AwakingLevel": 4, - "IconDarkPath": "UI_D_Adv_04.png", - "IconLightPath": "UI_Adv_04.png", - "Name": "awaking_name4", "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14308,6 +14305,7 @@ "CorrageRecover": 0, "CriticalRatio": 0, "CriticalDamage": 0, + "SkillPropModifyList": [], "PassiveSkillID": 204084, "WeaponGrasp": 0.625, "CostItems": [ @@ -14316,7 +14314,9 @@ "Count": 1 } ], - "SkillPropModifyList": [], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "awaking_name4", + "IconDarkPath": "UI_D_Adv_04.png", + "IconLightPath": "UI_Adv_04.png" } ] \ No newline at end of file diff --git a/ProjectNLD/Assets/Config/Data/charactercfg_characterbreak.json b/ProjectNLD/Assets/Config/Data/charactercfg_characterbreak.json index a90ba90f1f2..14878b67826 100644 --- a/ProjectNLD/Assets/Config/Data/charactercfg_characterbreak.json +++ b/ProjectNLD/Assets/Config/Data/charactercfg_characterbreak.json @@ -2,9 +2,8 @@ { "RoleID": 100001, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 1, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -14,20 +13,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 5011, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 5011 ], - "SkillModifyDesc": "" + "PassiveSkillID": 5011, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100001, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1001, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -37,8 +36,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 5011 + ], "PassiveSkillID": 5012, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -49,17 +50,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100001, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2001, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -69,8 +68,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 5011 + ], "PassiveSkillID": 5013, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -85,17 +86,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 5011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100001, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3001, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -105,8 +104,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 5011 + ], "PassiveSkillID": 5014, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -121,17 +122,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100001, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4001, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -141,8 +140,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, + "SkillPropModifyList": [ + 5011 + ], "PassiveSkillID": 5015, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -157,17 +158,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 5011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100002, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 3, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -177,20 +176,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 5021 + ], "PassiveSkillID": 5021, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 5021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100002, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1003, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -200,8 +199,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 30, + "SkillPropModifyList": [ + 5021 + ], "PassiveSkillID": 5022, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -212,17 +213,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100002, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2003, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -232,8 +231,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 40, + "SkillPropModifyList": [ + 5021 + ], "PassiveSkillID": 5023, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -248,17 +249,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 5021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100002, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3003, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -268,8 +267,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 50, + "SkillPropModifyList": [ + 5021 + ], "PassiveSkillID": 5024, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -284,17 +285,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100002, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4003, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -304,33 +303,33 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 60, - "PassiveSkillID": 5025, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102012, - "Count": 22 - }, - { - "Id": 102013, - "Count": 18 - } - ], "SkillPropModifyList": [ 5021 ], - "SkillModifyDesc": "" + "PassiveSkillID": 5025, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102012, + "Count": 22 + }, + { + "Id": 102013, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100003, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 4, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -340,20 +339,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 5031, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 5031 ], - "SkillModifyDesc": "" + "PassiveSkillID": 5031, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100003, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1004, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -363,8 +362,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 30, + "SkillPropModifyList": [ + 5031 + ], "PassiveSkillID": 5032, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -375,17 +376,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100003, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2004, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -395,8 +394,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 40, + "SkillPropModifyList": [ + 5031 + ], "PassiveSkillID": 5033, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -411,17 +412,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 5031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100003, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3004, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -431,8 +430,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 50, + "SkillPropModifyList": [ + 5031 + ], "PassiveSkillID": 5034, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -447,17 +448,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100003, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4004, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -467,8 +466,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 60, + "SkillPropModifyList": [ + 5031 + ], "PassiveSkillID": 5035, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -483,17 +484,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 5031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100004, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 5, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -503,20 +502,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 5041, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 5041 ], - "SkillModifyDesc": "" + "PassiveSkillID": 5041, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100004, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1005, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -526,8 +525,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 5041 + ], "PassiveSkillID": 5042, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -538,17 +539,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100004, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2005, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -558,8 +557,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 5041 + ], "PassiveSkillID": 5043, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -574,17 +575,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 5041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100004, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3005, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -594,8 +593,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 5041 + ], "PassiveSkillID": 5044, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -610,17 +611,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100004, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4005, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -630,8 +629,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, + "SkillPropModifyList": [ + 5041 + ], "PassiveSkillID": 5045, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -646,17 +647,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 5041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100005, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 6, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -666,20 +665,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 5041, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 5041 ], - "SkillModifyDesc": "" + "PassiveSkillID": 5041, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100005, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1006, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -689,8 +688,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 30, + "SkillPropModifyList": [ + 5041 + ], "PassiveSkillID": 5042, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -701,17 +702,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100005, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2006, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -721,8 +720,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 40, + "SkillPropModifyList": [ + 5041 + ], "PassiveSkillID": 5043, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -737,17 +738,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 5041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100005, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3006, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -757,8 +756,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 50, + "SkillPropModifyList": [ + 5041 + ], "PassiveSkillID": 5044, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -773,17 +774,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100005, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4006, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -793,8 +792,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 60, + "SkillPropModifyList": [ + 5041 + ], "PassiveSkillID": 5045, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -809,17 +810,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 5041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100006, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 26, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -829,20 +828,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 5011 + ], "PassiveSkillID": 5011, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 5011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100006, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1026, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -852,8 +851,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 5011 + ], "PassiveSkillID": 5012, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -864,17 +865,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100006, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2026, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -884,8 +883,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 5011 + ], "PassiveSkillID": 5013, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -900,17 +901,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 5011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100006, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3026, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -920,8 +919,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 5011 + ], "PassiveSkillID": 5014, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -936,17 +937,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100006, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4026, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -956,33 +955,33 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, - "PassiveSkillID": 5015, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102012, - "Count": 22 - }, - { - "Id": 102013, - "Count": 18 - } - ], "SkillPropModifyList": [ 5011 ], - "SkillModifyDesc": "" + "PassiveSkillID": 5015, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102012, + "Count": 22 + }, + { + "Id": 102013, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100008, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 32, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -992,20 +991,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 1041, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 1041 ], - "SkillModifyDesc": "" + "PassiveSkillID": 1041, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100008, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1032, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1015,8 +1014,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 30, + "SkillPropModifyList": [ + 1041 + ], "PassiveSkillID": 1042, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -1027,17 +1028,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100008, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2032, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1047,8 +1046,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 40, + "SkillPropModifyList": [ + 1041 + ], "PassiveSkillID": 1043, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -1063,17 +1064,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 1041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100008, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3032, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1083,8 +1082,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 50, + "SkillPropModifyList": [ + 1041 + ], "PassiveSkillID": 1044, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -1099,17 +1100,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100008, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4032, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1119,8 +1118,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 60, + "SkillPropModifyList": [ + 1041 + ], "PassiveSkillID": 1045, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -1135,17 +1136,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 1041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100009, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 41, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1155,20 +1154,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 5051 + ], "PassiveSkillID": 5051, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 5051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100009, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1041, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1178,8 +1177,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 30, + "SkillPropModifyList": [ + 5051 + ], "PassiveSkillID": 5052, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -1190,17 +1191,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100009, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2041, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1210,8 +1209,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 40, + "SkillPropModifyList": [ + 5051 + ], "PassiveSkillID": 5053, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -1226,17 +1227,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 5051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100009, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3041, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1246,8 +1245,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 50, + "SkillPropModifyList": [ + 5051 + ], "PassiveSkillID": 5054, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -1262,17 +1263,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100009, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4041, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1282,33 +1281,33 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 60, - "PassiveSkillID": 5055, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102012, - "Count": 22 - }, - { - "Id": 102013, - "Count": 18 - } - ], "SkillPropModifyList": [ 5051 ], - "SkillModifyDesc": "" + "PassiveSkillID": 5055, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102012, + "Count": 22 + }, + { + "Id": 102013, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100010, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 37, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1318,20 +1317,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 1021, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 1021 ], - "SkillModifyDesc": "" + "PassiveSkillID": 1021, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100010, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1037, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1341,8 +1340,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 1021 + ], "PassiveSkillID": 1022, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -1353,17 +1354,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100010, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2037, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1373,8 +1372,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 1021 + ], "PassiveSkillID": 1023, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -1389,17 +1390,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 1021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100010, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3037, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1409,8 +1408,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 1021 + ], "PassiveSkillID": 1024, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -1425,17 +1426,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100010, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4037, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1445,8 +1444,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, + "SkillPropModifyList": [ + 1021 + ], "PassiveSkillID": 1025, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -1461,17 +1462,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 1021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100011, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 26, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1481,20 +1480,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 1011 + ], "PassiveSkillID": 1011, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 1011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100011, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1026, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1504,8 +1503,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 1011 + ], "PassiveSkillID": 1012, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -1516,17 +1517,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100011, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2026, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1536,8 +1535,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 1011 + ], "PassiveSkillID": 1013, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -1552,17 +1553,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 1011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100011, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3026, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1572,8 +1571,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 1011 + ], "PassiveSkillID": 1014, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -1588,17 +1589,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100011, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4026, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1608,33 +1607,33 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, - "PassiveSkillID": 1015, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102012, - "Count": 22 - }, - { - "Id": 102013, - "Count": 18 - } - ], "SkillPropModifyList": [ 1011 ], - "SkillModifyDesc": "" + "PassiveSkillID": 1015, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102012, + "Count": 22 + }, + { + "Id": 102013, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100012, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 14, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1644,20 +1643,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 3031 + ], "PassiveSkillID": 3031, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 3031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100012, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1014, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1667,8 +1666,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 3031 + ], "PassiveSkillID": 3032, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -1679,17 +1680,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 3031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100012, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2014, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1699,8 +1698,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 3031 + ], "PassiveSkillID": 3033, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -1715,17 +1716,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 3031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100012, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3014, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1735,8 +1734,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 3031 + ], "PassiveSkillID": 3034, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -1751,17 +1752,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 3031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100012, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4014, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1771,33 +1770,33 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, - "PassiveSkillID": 3035, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102012, - "Count": 22 - }, - { - "Id": 102013, - "Count": 18 - } - ], "SkillPropModifyList": [ 3031 ], - "SkillModifyDesc": "" + "PassiveSkillID": 3035, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102012, + "Count": 22 + }, + { + "Id": 102013, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100013, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 30, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1807,20 +1806,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 3021, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 3021 ], - "SkillModifyDesc": "" + "PassiveSkillID": 3021, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100013, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1030, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1830,8 +1829,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 3021 + ], "PassiveSkillID": 3022, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -1842,17 +1843,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 3021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100013, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2030, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1862,8 +1861,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 3021 + ], "PassiveSkillID": 3023, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -1878,17 +1879,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 3021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100013, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3030, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1898,8 +1897,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 3021 + ], "PassiveSkillID": 3024, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -1914,17 +1915,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 3021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100013, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4030, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1934,8 +1933,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, + "SkillPropModifyList": [ + 3021 + ], "PassiveSkillID": 3025, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -1950,17 +1951,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 3021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100014, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 27, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1970,20 +1969,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 3051 + ], "PassiveSkillID": 3051, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 3051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100014, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1027, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -1993,8 +1992,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 3051 + ], "PassiveSkillID": 3052, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -2005,17 +2006,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 3051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100014, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2027, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2025,8 +2024,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 3051 + ], "PassiveSkillID": 3053, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -2041,17 +2042,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 3051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100014, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3027, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2061,8 +2060,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 3051 + ], "PassiveSkillID": 3054, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -2077,17 +2078,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 3051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100014, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4027, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2097,33 +2096,33 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, - "PassiveSkillID": 3055, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102012, - "Count": 22 - }, - { - "Id": 102013, - "Count": 18 - } - ], "SkillPropModifyList": [ 3051 ], - "SkillModifyDesc": "" + "PassiveSkillID": 3055, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102012, + "Count": 22 + }, + { + "Id": 102013, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100015, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 12, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2133,20 +2132,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 3041 + ], "PassiveSkillID": 3041, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 3041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100015, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1012, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2156,8 +2155,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 3041 + ], "PassiveSkillID": 3042, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -2168,17 +2169,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 3041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100015, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2012, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2188,8 +2187,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 3041 + ], "PassiveSkillID": 3043, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -2204,17 +2205,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 3041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100015, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3012, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2224,8 +2223,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 3041 + ], "PassiveSkillID": 3044, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -2240,17 +2241,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 3041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100015, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4012, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2260,33 +2259,33 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, - "PassiveSkillID": 3045, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102012, - "Count": 22 - }, - { - "Id": 102013, - "Count": 18 - } - ], "SkillPropModifyList": [ 3041 ], - "SkillModifyDesc": "" + "PassiveSkillID": 3045, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102012, + "Count": 22 + }, + { + "Id": 102013, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100022, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 54, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2296,20 +2295,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 1021 + ], "PassiveSkillID": 1021, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 1021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100022, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1054, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2319,8 +2318,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 1021 + ], "PassiveSkillID": 1022, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -2331,17 +2332,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100022, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2054, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2351,8 +2350,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 1021 + ], "PassiveSkillID": 1023, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -2367,17 +2368,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 1021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100022, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3054, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2387,8 +2386,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 1021 + ], "PassiveSkillID": 1024, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -2403,17 +2404,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100022, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4054, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2423,33 +2422,33 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, - "PassiveSkillID": 1025, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102022, - "Count": 22 - }, - { - "Id": 102023, - "Count": 18 - } - ], "SkillPropModifyList": [ 1021 ], - "SkillModifyDesc": "" + "PassiveSkillID": 1025, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102022, + "Count": 22 + }, + { + "Id": 102023, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100024, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 57, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2459,20 +2458,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 1051, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 1051 ], - "SkillModifyDesc": "" + "PassiveSkillID": 1051, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100024, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1057, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2482,8 +2481,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 1051 + ], "PassiveSkillID": 1052, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -2494,17 +2495,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100024, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2057, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2514,8 +2513,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 1051 + ], "PassiveSkillID": 1053, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -2530,17 +2531,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 1051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100024, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3057, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2550,8 +2549,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 1051 + ], "PassiveSkillID": 1054, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -2566,17 +2567,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100024, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4057, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2586,8 +2585,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, + "SkillPropModifyList": [ + 1051 + ], "PassiveSkillID": 1055, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -2602,17 +2603,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 1051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100025, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 31, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2622,20 +2621,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 4011 + ], "PassiveSkillID": 4011, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 4011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100025, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1031, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2645,8 +2644,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 4011 + ], "PassiveSkillID": 4012, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -2657,17 +2658,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 4011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100025, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2031, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2677,8 +2676,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 4011 + ], "PassiveSkillID": 4013, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -2693,17 +2694,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 4011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100025, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3031, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2713,8 +2712,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 4011 + ], "PassiveSkillID": 4014, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -2729,17 +2730,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 4011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100025, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4031, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2749,33 +2748,33 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, - "PassiveSkillID": 4015, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102022, - "Count": 22 - }, - { - "Id": 102023, - "Count": 18 - } - ], "SkillPropModifyList": [ 4011 ], - "SkillModifyDesc": "" + "PassiveSkillID": 4015, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102022, + "Count": 22 + }, + { + "Id": 102023, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100027, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 64, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2785,20 +2784,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 4031 + ], "PassiveSkillID": 4031, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 4031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100027, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1064, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2808,8 +2807,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 30, + "SkillPropModifyList": [ + 4031 + ], "PassiveSkillID": 4032, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -2820,17 +2821,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 4031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100027, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2064, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2840,8 +2839,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 40, + "SkillPropModifyList": [ + 4031 + ], "PassiveSkillID": 4033, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -2856,17 +2857,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 4031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100027, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3064, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2876,8 +2875,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 50, + "SkillPropModifyList": [ + 4031 + ], "PassiveSkillID": 4034, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -2892,17 +2893,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 4031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100027, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4064, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2912,33 +2911,33 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 60, - "PassiveSkillID": 4035, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102022, - "Count": 22 - }, - { - "Id": 102023, - "Count": 18 - } - ], "SkillPropModifyList": [ 4031 ], - "SkillModifyDesc": "" + "PassiveSkillID": 4035, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102022, + "Count": 22 + }, + { + "Id": 102023, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100028, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 63, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2948,20 +2947,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 4041 + ], "PassiveSkillID": 4041, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 4041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100028, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1063, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -2971,8 +2970,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 4041 + ], "PassiveSkillID": 4042, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -2983,17 +2984,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 4041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100028, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2063, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3003,8 +3002,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 4041 + ], "PassiveSkillID": 4043, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -3019,17 +3020,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 4041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100028, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3063, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3039,8 +3038,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 4041 + ], "PassiveSkillID": 4044, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -3055,17 +3056,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 4041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100028, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4063, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3075,33 +3074,33 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, - "PassiveSkillID": 4045, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102022, - "Count": 22 - }, - { - "Id": 102023, - "Count": 18 - } - ], "SkillPropModifyList": [ 4041 ], - "SkillModifyDesc": "" + "PassiveSkillID": 4045, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102022, + "Count": 22 + }, + { + "Id": 102023, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100030, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 58, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3111,20 +3110,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 4061 + ], "PassiveSkillID": 4061, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 4061 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100030, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1058, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3134,8 +3133,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 30, + "SkillPropModifyList": [ + 4061 + ], "PassiveSkillID": 4062, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -3146,17 +3147,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 4061 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100030, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2058, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3166,8 +3165,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 40, + "SkillPropModifyList": [ + 4061 + ], "PassiveSkillID": 4063, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -3182,17 +3183,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 4061 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100030, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3058, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3202,8 +3201,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 50, + "SkillPropModifyList": [ + 4061 + ], "PassiveSkillID": 4064, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -3218,17 +3219,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 4061 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100030, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4058, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3238,33 +3237,33 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 60, - "PassiveSkillID": 4065, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102022, - "Count": 22 - }, - { - "Id": 102023, - "Count": 18 - } - ], "SkillPropModifyList": [ 4061 ], - "SkillModifyDesc": "" + "PassiveSkillID": 4065, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102022, + "Count": 22 + }, + { + "Id": 102023, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100032, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 24, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3274,20 +3273,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 2011 + ], "PassiveSkillID": 2011, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 2011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100032, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1024, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3297,8 +3296,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 30, + "SkillPropModifyList": [ + 2011 + ], "PassiveSkillID": 2012, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -3309,17 +3310,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 2011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100032, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2024, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3329,8 +3328,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 40, + "SkillPropModifyList": [ + 2011 + ], "PassiveSkillID": 2013, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -3345,17 +3346,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 2011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100032, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3024, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3365,8 +3364,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 50, + "SkillPropModifyList": [ + 2011 + ], "PassiveSkillID": 2014, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -3381,17 +3382,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 2011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100032, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4024, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3401,33 +3400,33 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 60, - "PassiveSkillID": 2015, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102042, - "Count": 22 - }, - { - "Id": 102043, - "Count": 18 - } - ], "SkillPropModifyList": [ 2011 ], - "SkillModifyDesc": "" + "PassiveSkillID": 2015, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102042, + "Count": 22 + }, + { + "Id": 102043, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100033, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 23, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3437,20 +3436,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 2041, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 2041 ], - "SkillModifyDesc": "" + "PassiveSkillID": 2041, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100033, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1023, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3460,8 +3459,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 30, + "SkillPropModifyList": [ + 2041 + ], "PassiveSkillID": 2042, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -3472,17 +3473,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 2041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100033, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2023, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3492,8 +3491,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 40, + "SkillPropModifyList": [ + 2041 + ], "PassiveSkillID": 2043, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -3508,17 +3509,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 2041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100033, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3023, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3528,8 +3527,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 50, + "SkillPropModifyList": [ + 2041 + ], "PassiveSkillID": 2044, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -3544,17 +3545,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 2041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100033, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4023, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3564,8 +3563,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 60, + "SkillPropModifyList": [ + 2041 + ], "PassiveSkillID": 2045, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -3580,17 +3581,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 2041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100035, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 41, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3600,20 +3599,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 2051 + ], "PassiveSkillID": 2051, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 2051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100035, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1041, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3623,8 +3622,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 30, + "SkillPropModifyList": [ + 2051 + ], "PassiveSkillID": 2052, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -3635,17 +3636,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 2051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100035, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2041, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3655,8 +3654,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 40, + "SkillPropModifyList": [ + 2051 + ], "PassiveSkillID": 2053, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -3671,17 +3672,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 2051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100035, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3041, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3691,8 +3690,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 50, + "SkillPropModifyList": [ + 2051 + ], "PassiveSkillID": 2054, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -3707,17 +3708,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 2051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100035, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4041, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3727,8 +3726,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 60, + "SkillPropModifyList": [ + 2051 + ], "PassiveSkillID": 2055, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -3743,17 +3744,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 2051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100051, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 67, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3763,20 +3762,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 3011 + ], "PassiveSkillID": 3011, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 3011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100051, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1067, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3786,8 +3785,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 3011 + ], "PassiveSkillID": 3012, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -3798,17 +3799,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 3011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100051, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2067, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3818,8 +3817,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 3011 + ], "PassiveSkillID": 3013, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -3834,17 +3835,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 3011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100051, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3067, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3854,8 +3853,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 3011 + ], "PassiveSkillID": 3014, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -3870,17 +3871,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 3011 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100051, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4067, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3890,33 +3889,33 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, - "PassiveSkillID": 3015, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102022, - "Count": 22 - }, - { - "Id": 102023, - "Count": 18 - } - ], "SkillPropModifyList": [ 3011 ], - "SkillModifyDesc": "" + "PassiveSkillID": 3015, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102022, + "Count": 22 + }, + { + "Id": 102023, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100053, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 49, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3926,20 +3925,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 3021 + ], "PassiveSkillID": 3021, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 3021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100053, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1049, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3949,8 +3948,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 30, + "SkillPropModifyList": [ + 3021 + ], "PassiveSkillID": 3022, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -3961,17 +3962,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 3021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100053, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2049, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -3981,8 +3980,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 40, + "SkillPropModifyList": [ + 3021 + ], "PassiveSkillID": 3023, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -3997,17 +3998,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 3021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100053, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3049, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4017,8 +4016,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 50, + "SkillPropModifyList": [ + 3021 + ], "PassiveSkillID": 3024, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -4033,17 +4034,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 3021 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100053, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4049, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4053,33 +4052,33 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 60, - "PassiveSkillID": 3025, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102022, - "Count": 22 - }, - { - "Id": 102023, - "Count": 18 - } - ], "SkillPropModifyList": [ 3021 ], - "SkillModifyDesc": "" + "PassiveSkillID": 3025, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102022, + "Count": 22 + }, + { + "Id": 102023, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100054, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 65, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4089,20 +4088,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 5031, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 5031 ], - "SkillModifyDesc": "" + "PassiveSkillID": 5031, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100054, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1065, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4112,8 +4111,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 30, + "SkillPropModifyList": [ + 5031 + ], "PassiveSkillID": 5032, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -4124,17 +4125,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100054, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2065, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4144,8 +4143,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 40, + "SkillPropModifyList": [ + 5031 + ], "PassiveSkillID": 5033, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -4160,17 +4161,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 5031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100054, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3065, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4180,8 +4179,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 50, + "SkillPropModifyList": [ + 5031 + ], "PassiveSkillID": 5034, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -4196,17 +4197,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100054, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4065, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4216,8 +4215,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 60, + "SkillPropModifyList": [ + 5031 + ], "PassiveSkillID": 5035, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -4232,17 +4233,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 5031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100061, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 14, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4252,20 +4251,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 1051, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 1051 ], - "SkillModifyDesc": "" + "PassiveSkillID": 1051, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100061, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1014, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4275,8 +4274,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 30, + "SkillPropModifyList": [ + 1051 + ], "PassiveSkillID": 1052, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -4287,17 +4288,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100061, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2014, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4307,8 +4306,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 40, + "SkillPropModifyList": [ + 1051 + ], "PassiveSkillID": 1053, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -4323,17 +4324,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 1051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100061, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3014, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4343,8 +4342,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 50, + "SkillPropModifyList": [ + 1051 + ], "PassiveSkillID": 1054, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -4359,17 +4360,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100061, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4014, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4379,8 +4378,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 60, + "SkillPropModifyList": [ + 1051 + ], "PassiveSkillID": 1055, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -4395,17 +4396,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 1051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100062, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 41, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4415,20 +4414,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 1041, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 1041 ], - "SkillModifyDesc": "" + "PassiveSkillID": 1041, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100062, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1041, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4438,8 +4437,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 30, + "SkillPropModifyList": [ + 1041 + ], "PassiveSkillID": 1042, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -4450,17 +4451,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100062, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2041, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4470,8 +4469,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 40, + "SkillPropModifyList": [ + 1041 + ], "PassiveSkillID": 1043, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -4486,17 +4487,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 1041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100062, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3041, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4506,8 +4505,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 50, + "SkillPropModifyList": [ + 1041 + ], "PassiveSkillID": 1044, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -4522,17 +4523,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100062, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4041, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4542,8 +4541,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 60, + "SkillPropModifyList": [ + 1041 + ], "PassiveSkillID": 1045, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -4558,17 +4559,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 1041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100081, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 34, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4578,20 +4577,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 2061 + ], "PassiveSkillID": 2061, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 2061 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100081, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1034, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4601,8 +4600,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 2061 + ], "PassiveSkillID": 2062, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -4613,17 +4614,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 2061 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100081, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2034, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4633,8 +4632,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 2061 + ], "PassiveSkillID": 2063, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -4649,17 +4650,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 2061 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100081, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3034, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4669,8 +4668,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 2061 + ], "PassiveSkillID": 2064, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -4685,17 +4686,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 2061 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100081, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4034, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4705,33 +4704,33 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, - "PassiveSkillID": 2065, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102052, - "Count": 22 - }, - { - "Id": 102053, - "Count": 18 - } - ], "SkillPropModifyList": [ 2061 ], - "SkillModifyDesc": "" + "PassiveSkillID": 2065, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102052, + "Count": 22 + }, + { + "Id": 102053, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100083, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 33, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4741,20 +4740,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 2041, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 2041 ], - "SkillModifyDesc": "" + "PassiveSkillID": 2041, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100083, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1033, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4764,8 +4763,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 2041 + ], "PassiveSkillID": 2042, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -4776,17 +4777,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 2041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100083, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2033, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4796,8 +4795,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 2041 + ], "PassiveSkillID": 2043, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -4812,17 +4813,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 2041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100083, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3033, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4832,8 +4831,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 2041 + ], "PassiveSkillID": 2044, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -4848,17 +4849,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 2041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100083, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4033, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4868,8 +4867,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, + "SkillPropModifyList": [ + 2041 + ], "PassiveSkillID": 2045, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -4884,17 +4885,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 2041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100087, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 18, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4904,20 +4903,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 1041 + ], "PassiveSkillID": 1041, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 1041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100087, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1018, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4927,8 +4926,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 30, + "SkillPropModifyList": [ + 1041 + ], "PassiveSkillID": 1042, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -4939,17 +4940,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100087, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2018, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4959,8 +4958,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 40, + "SkillPropModifyList": [ + 1041 + ], "PassiveSkillID": 1043, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -4975,17 +4976,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 1041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100087, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3018, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -4995,8 +4994,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 50, + "SkillPropModifyList": [ + 1041 + ], "PassiveSkillID": 1044, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -5011,17 +5012,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100087, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4018, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5031,33 +5030,33 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 60, - "PassiveSkillID": 1045, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102012, - "Count": 22 - }, - { - "Id": 102013, - "Count": 18 - } - ], "SkillPropModifyList": [ 1041 ], - "SkillModifyDesc": "" + "PassiveSkillID": 1045, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102012, + "Count": 22 + }, + { + "Id": 102013, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100088, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 11, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5067,20 +5066,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 1051 + ], "PassiveSkillID": 1051, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 1051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100088, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1011, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5090,8 +5089,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 30, + "SkillPropModifyList": [ + 1051 + ], "PassiveSkillID": 1052, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -5102,17 +5103,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100088, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2011, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5122,8 +5121,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 40, + "SkillPropModifyList": [ + 1051 + ], "PassiveSkillID": 1053, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -5138,17 +5139,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 1051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100088, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3011, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5158,8 +5157,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 50, + "SkillPropModifyList": [ + 1051 + ], "PassiveSkillID": 1054, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -5174,17 +5175,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1051 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100088, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4011, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5194,33 +5193,33 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 60, - "PassiveSkillID": 1055, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102012, - "Count": 22 - }, - { - "Id": 102013, - "Count": 18 - } - ], "SkillPropModifyList": [ 1051 ], - "SkillModifyDesc": "" + "PassiveSkillID": 1055, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102012, + "Count": 22 + }, + { + "Id": 102013, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100093, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 66, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5230,20 +5229,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 5041 + ], "PassiveSkillID": 5041, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 5041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100093, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1066, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5253,8 +5252,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 5041 + ], "PassiveSkillID": 5042, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -5265,17 +5266,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100093, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2066, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5285,8 +5284,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 5041 + ], "PassiveSkillID": 5043, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -5301,17 +5302,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 5041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100093, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3066, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5321,8 +5320,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 5041 + ], "PassiveSkillID": 5044, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -5337,17 +5338,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100093, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4066, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5357,33 +5356,33 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, - "PassiveSkillID": 5045, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102052, - "Count": 22 - }, - { - "Id": 102053, - "Count": 18 - } - ], "SkillPropModifyList": [ 5041 ], - "SkillModifyDesc": "" + "PassiveSkillID": 5045, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102052, + "Count": 22 + }, + { + "Id": 102053, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100094, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 46, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5393,20 +5392,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, + "SkillPropModifyList": [ + 1031 + ], "PassiveSkillID": 1031, - "SpendLeadership": 10, "CostItems": [], - "SkillPropModifyList": [ - 1031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100094, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1046, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5416,8 +5415,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 30, + "SkillPropModifyList": [ + 1031 + ], "PassiveSkillID": 1032, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -5428,17 +5429,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100094, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2046, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5448,8 +5447,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 40, + "SkillPropModifyList": [ + 1031 + ], "PassiveSkillID": 1033, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -5464,17 +5465,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 1031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100094, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3046, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5484,8 +5483,10 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 50, + "SkillPropModifyList": [ + 1031 + ], "PassiveSkillID": 1034, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -5500,17 +5501,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 1031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100094, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4046, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5520,33 +5519,33 @@ "CriticalRatio": 0.1, "CriticalDamage": 0.27, "LevelLimit": 60, - "PassiveSkillID": 1035, - "SpendLeadership": 50, - "CostItems": [ - { - "Id": 1, - "Count": 32000 - }, - { - "Id": 102052, - "Count": 22 - }, - { - "Id": 102053, - "Count": 18 - } - ], "SkillPropModifyList": [ 1031 ], - "SkillModifyDesc": "" + "PassiveSkillID": 1035, + "CostItems": [ + { + "Id": 1, + "Count": 32000 + }, + { + "Id": 102052, + "Count": 22 + }, + { + "Id": 102053, + "Count": 18 + } + ], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100096, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 35, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5556,20 +5555,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 5031, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 5031 ], - "SkillModifyDesc": "" + "PassiveSkillID": 5031, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100096, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1035, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5579,8 +5578,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 30, + "SkillPropModifyList": [ + 5031 + ], "PassiveSkillID": 5032, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -5591,17 +5592,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100096, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2035, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5611,8 +5610,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 40, + "SkillPropModifyList": [ + 5031 + ], "PassiveSkillID": 5033, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -5627,17 +5628,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 5031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100096, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3035, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5647,8 +5646,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 50, + "SkillPropModifyList": [ + 5031 + ], "PassiveSkillID": 5034, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -5663,17 +5664,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 5031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100096, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4035, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5683,8 +5682,10 @@ "CriticalRatio": 0.2, "CriticalDamage": 0.08, "LevelLimit": 60, + "SkillPropModifyList": [ + 5031 + ], "PassiveSkillID": 5035, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -5699,17 +5700,15 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 5031 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" }, { "RoleID": 100107, "BreakLevel": 0, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel0", "WeaponId": 62, + "SpendLeadership": 10, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5719,20 +5718,20 @@ "CriticalRatio": 0, "CriticalDamage": 0, "LevelLimit": 20, - "PassiveSkillID": 2041, - "SpendLeadership": 10, - "CostItems": [], "SkillPropModifyList": [ 2041 ], - "SkillModifyDesc": "" + "PassiveSkillID": 2041, + "CostItems": [], + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel0", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100107, "BreakLevel": 1, - "IconPathLight": "UI_Rank01.png", - "Name": "culitivate_BreakLevel1", "WeaponId": 1062, + "SpendLeadership": 20, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5742,8 +5741,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 30, + "SkillPropModifyList": [ + 2041 + ], "PassiveSkillID": 2042, - "SpendLeadership": 20, "CostItems": [ { "Id": 1, @@ -5754,17 +5755,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 2041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel1", + "IconPathLight": "UI_Rank01.png" }, { "RoleID": 100107, "BreakLevel": 2, - "IconPathLight": "UI_Rank02.png", - "Name": "culitivate_BreakLevel2", "WeaponId": 2062, + "SpendLeadership": 30, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5774,8 +5773,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 40, + "SkillPropModifyList": [ + 2041 + ], "PassiveSkillID": 2043, - "SpendLeadership": 30, "CostItems": [ { "Id": 1, @@ -5790,17 +5791,15 @@ "Count": 12 } ], - "SkillPropModifyList": [ - 2041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel2", + "IconPathLight": "UI_Rank02.png" }, { "RoleID": 100107, "BreakLevel": 3, - "IconPathLight": "UI_Rank03.png", - "Name": "culitivate_BreakLevel3", "WeaponId": 3062, + "SpendLeadership": 40, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5810,8 +5809,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 50, + "SkillPropModifyList": [ + 2041 + ], "PassiveSkillID": 2044, - "SpendLeadership": 40, "CostItems": [ { "Id": 1, @@ -5826,17 +5827,15 @@ "Count": 10 } ], - "SkillPropModifyList": [ - 2041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel3", + "IconPathLight": "UI_Rank03.png" }, { "RoleID": 100107, "BreakLevel": 4, - "IconPathLight": "UI_Rank04.png", - "Name": "culitivate_BreakLevel4", "WeaponId": 4062, + "SpendLeadership": 50, "AttributeGroup": [], "Defence": 0, "Hp": 0, @@ -5846,8 +5845,10 @@ "CriticalRatio": 0.15, "CriticalDamage": 0.15, "LevelLimit": 60, + "SkillPropModifyList": [ + 2041 + ], "PassiveSkillID": 2045, - "SpendLeadership": 50, "CostItems": [ { "Id": 1, @@ -5862,9 +5863,8 @@ "Count": 18 } ], - "SkillPropModifyList": [ - 2041 - ], - "SkillModifyDesc": "" + "SkillModifyDesc": "", + "Name": "culitivate_BreakLevel4", + "IconPathLight": "UI_Rank04.png" } ] \ No newline at end of file diff --git a/ProjectNLD/Assets/Config/Data/fightcfg_batteryconfig.json b/ProjectNLD/Assets/Config/Data/fightcfg_batteryconfig.json index e8da9f4032e..1c66fcb2664 100644 --- a/ProjectNLD/Assets/Config/Data/fightcfg_batteryconfig.json +++ b/ProjectNLD/Assets/Config/Data/fightcfg_batteryconfig.json @@ -2,7 +2,9 @@ { "ID": 3000000000, "NameRead": "901Hammerhead", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -24,24 +26,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00018_01", - "FireAudioId": [ - "Sound_armoredcar_fire1" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, - "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "MissHitGroundEffectId": 13, + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire1" + ], + "ModelPath": "P_R00018_01" }, { "ID": 3000000201, "NameRead": "BRDM-1", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -58,24 +60,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00050_01", - "FireAudioId": [ - "Sound_armoredcar_fire1" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire1" + ], + "ModelPath": "P_R00050_01" }, { "ID": 3000010201, "NameRead": "云雀炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 5, @@ -96,24 +98,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00001_01", - "FireAudioId": [ - "Sound_armoredcar_fire2" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire2" + ], + "ModelPath": "P_R00001_01" }, { "ID": 3000030201, "NameRead": "901Hammerhead", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 7, @@ -130,24 +132,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00018_02", - "FireAudioId": [ - "Sound_armoredcar_fire1" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire1" + ], + "ModelPath": "P_R00018_02" }, { "ID": 3000040201, "NameRead": "2a28苏霍夫炮塔", + "CanAttack": true, "DamagePower": 72, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 5, @@ -168,24 +170,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00002_01", - "FireAudioId": [ - "Sound_armoredcar_fire2" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire2" + ], + "ModelPath": "P_R00002_01" }, { "ID": 3000080201, "NameRead": "机枪", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 5, @@ -206,24 +208,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00006_01", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00006_01" }, { "ID": 3000090201, "NameRead": "BTR-70炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -240,24 +242,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00007_01", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00007_01" }, { "ID": 3000100201, "NameRead": "机枪", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -274,24 +276,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00008_01", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00008_01" }, { "ID": 3000110201, "NameRead": "机枪", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -308,24 +310,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00009_01", - "FireAudioId": [ - "Sound_armoredcar_fire2" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire2" + ], + "ModelPath": "P_R00009_01" }, { "ID": 3000120201, "NameRead": "M1151", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 7, @@ -346,24 +348,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00010_01", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "P_R00010_01" }, { "ID": 3000130201, "NameRead": "LAV-25炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -380,24 +382,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00011_01", - "FireAudioId": [ - "Sound_armoredcar_fire2" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire2" + ], + "ModelPath": "P_R00011_01" }, { "ID": 3000170201, "NameRead": "机枪", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -414,24 +416,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "R_00025_01", - "FireAudioId": [ - "Sound_armoredcar_fire1" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire1" + ], + "ModelPath": "R_00025_01" }, { "ID": 3000190201, "NameRead": "SKOT-2A", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -448,24 +450,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00015_01", - "FireAudioId": [ - "Sound_armoredcar_fire2" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire2" + ], + "ModelPath": "P_R00015_01" }, { "ID": 3000200201, "NameRead": "TOW", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 5, @@ -486,24 +488,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00016_01", - "FireAudioId": [ - "Sound_armoredcar_fire2" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire2" + ], + "ModelPath": "P_R00016_01" }, { "ID": 3000210201, "NameRead": "ARES 75mm", + "CanAttack": true, "DamagePower": 120, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 7, @@ -520,24 +522,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00017_01", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00017_01" }, { "ID": 3000220201, "NameRead": "901Hammerhead", + "CanAttack": true, "DamagePower": 96, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 7, @@ -554,24 +556,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00018_01", - "FireAudioId": [ - "Sound_armoredcar_fire2" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire2" + ], + "ModelPath": "P_R00018_01" }, { "ID": 3000230201, "NameRead": "Blazer\u00A0炮塔", + "CanAttack": true, "DamagePower": 96, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -592,24 +594,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00019_01", - "FireAudioId": [ - "Sound_armoredcar_fire2" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire2" + ], + "ModelPath": "P_R00019_01" }, { "ID": 3000240201, "NameRead": "Stingray炮塔", + "CanAttack": true, "DamagePower": 120, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 7, @@ -632,24 +634,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00020_01", - "FireAudioId": [ - "Sound_armoredcar_fire1" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire1" + ], + "ModelPath": "P_R00020_01" }, { "ID": 3000250201, "NameRead": "LAV-25炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -666,24 +668,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00021_01", - "FireAudioId": [ - "Sound_armoredcar_fire2" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_armoredcar_fire2" + ], + "ModelPath": "P_R00021_01" }, { "ID": 3000260201, "NameRead": "机枪", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -700,24 +702,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00022_01", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "P_R00022_01" }, { "ID": 3000270201, "NameRead": "机枪", + "CanAttack": true, "DamagePower": 72, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -734,24 +736,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00023_01", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00023_01" }, { "ID": 3000280201, "NameRead": "单人炮塔", + "CanAttack": true, "DamagePower": 72, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -772,24 +774,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00024_01", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "P_R00024_01" }, { "ID": 3000290201, "NameRead": "pt76炮塔", + "CanAttack": true, "DamagePower": 96, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -812,24 +814,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00005_02", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00005_02" }, { "ID": 3000300201, "NameRead": "2A62炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 7, @@ -846,24 +848,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00026_01", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "P_R00026_01" }, { "ID": 3000310201, "NameRead": "BTR-70 MBP", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -880,24 +882,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00027_01", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "P_R00027_01" }, { "ID": 3000320201, "NameRead": "BM GROM", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 5, @@ -914,24 +916,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00028_01", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00028_01" }, { "ID": 3000350201, "NameRead": "BTR-70炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -948,24 +950,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00031_01", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "P_R00031_01" }, { "ID": 3000360201, "NameRead": "2a28炮塔", + "CanAttack": true, "DamagePower": 72, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 5, @@ -986,24 +988,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00032_01", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "P_R00032_01" }, { "ID": 3000370201, "NameRead": "TAB-77炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 5, @@ -1024,24 +1026,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00033_01", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00033_01" }, { "ID": 3000380201, "NameRead": "Nona-S", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 7, @@ -1064,24 +1066,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00034_01", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00034_01" }, { "ID": 3000420201, "NameRead": "2a28炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 5, @@ -1102,24 +1104,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00032_02", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "P_R00032_02" }, { "ID": 3000430201, "NameRead": "Bmt-2炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -1136,24 +1138,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00039_01", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00039_01" }, { "ID": 3000440201, "NameRead": "Heidar-7炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -1170,24 +1172,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00040_01", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "P_R00040_01" }, { "ID": 3000450201, "NameRead": "AML-90turret", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -1204,24 +1206,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00049_01", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00049_01" }, { "ID": 3000480201, "NameRead": "Cobra", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -1238,24 +1240,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "" }, { "ID": 3000500201, "NameRead": "SKOT2AM", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -1272,24 +1274,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "" }, { "ID": 3000530201, "NameRead": "双人电动炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -1306,24 +1308,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "" }, { "ID": 3000540201, "NameRead": "lav300\u00A025mm", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -1340,24 +1342,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "" }, { "ID": 3000550201, "NameRead": "机枪", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -1374,24 +1376,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "" }, { "ID": 3000560201, "NameRead": "BRDM-2炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -1408,24 +1410,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "" }, { "ID": 3000570201, "NameRead": "T-60炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -1442,24 +1444,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "" }, { "ID": 3000580201, "NameRead": "机枪", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -1476,24 +1478,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "" }, { "ID": 3000390201, "NameRead": "1В18炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 5, @@ -1510,24 +1512,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00035_01", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "P_R00035_01" }, { "ID": 3000600201, "NameRead": "机枪", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 1, @@ -1544,24 +1546,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00053_01", - "FireAudioId": [ - "Sound_Shoot_4" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_4" + ], + "ModelPath": "P_R00053_01" }, { "ID": 3000630201, "NameRead": "Stingray炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 7, @@ -1584,24 +1586,24 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00055_01", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00055_01" }, { "ID": 3000660201, "NameRead": "m47炮塔", + "CanAttack": true, "DamagePower": 9, + "MoraleDamage": 10, "MaxBulletCount": 100, "AttackPowerLevel": 0, "AttackDistance": 5, @@ -1622,18 +1624,16 @@ "ScaleForVehicle": 1, "ScaleForHuman": 1, "ScaleForBuilding": 1, - "MoraleDamage": 10, "AttackShiledScale": 1, "AttackHpScale": 1, - "CanAttack": true, - "ModelPath": "P_R00056_01", - "FireAudioId": [ - "Sound_Shoot_5" - ], "FireEffectId": 4, "HitEffectId": 10, "CriticalHitEffectId": 7, "MissHitGroundEffectId": 7, - "FlyEffectId": 15 + "FlyEffectId": 15, + "FireAudioId": [ + "Sound_Shoot_5" + ], + "ModelPath": "P_R00056_01" } ] \ No newline at end of file diff --git a/ProjectNLD/Assets/Config/Data/levelcfg_level.json b/ProjectNLD/Assets/Config/Data/levelcfg_level.json index 5e684a076ec..c5a8be23c7b 100644 --- a/ProjectNLD/Assets/Config/Data/levelcfg_level.json +++ b/ProjectNLD/Assets/Config/Data/levelcfg_level.json @@ -199,6 +199,57 @@ "SuccessTaskId": 1000, "FailTaskId": 1001 }, + { + "Id": 100012, + "levelGroupID": 100, + "LevelType": 0, + "Unlocks": "", + "IsShow": false, + "CostItems": [ + { + "Id": 4, + "Count": 0 + } + ], + "NormalRewardID": [ + 5101, + 5102, + 5103 + ], + "RandomRewardID": [], + "FristRewardID": [ + 5004 + ], + "StarRewardID_1": [ + 5001 + ], + "StarRewardID_2": [ + 5001 + ], + "StarRewardID_3": [ + 5001 + ], + "SettleExp": 0, + "SettleLikability": 30, + "ShadowDistance": 100, + "LevelTime": 0, + "LevelWeather": 0, + "LevelScene": "Assets/Scenes/Maps/Maps04_Snowfield/Maps04_Snowfield_a_0_4.unity", + "MapData": "MapData_Maps04_Snowfield_a_0_4", + "LevelData": "LevelData_1_100012", + "FightStoryNameId": "", + "StoryID": "", + "RecommendLevel": 1, + "MaxSweepingNumbert": 10, + "TimeAfterActivity": 0, + "ListLevelTaskId": [ + 1001, + 2001, + 2002 + ], + "SuccessTaskId": 2002, + "FailTaskId": 1001 + }, { "Id": 100014, "levelGroupID": 100, @@ -7839,7 +7890,7 @@ "FailTaskId": 1001 }, { - "Id": 9900001, + "Id": 990001, "levelGroupID": 999, "LevelType": 0, "Unlocks": "", @@ -7875,7 +7926,7 @@ "LevelWeather": 0, "LevelScene": "Assets/Scenes/Maps/Maps04_Snowfield/Maps04_Snowfield_a_0_6.unity", "MapData": "MapData_Maps04_Snowfield_a_0_6", - "LevelData": "LevelData_t_designer_9900001", + "LevelData": "LevelData_6_990001", "FightStoryNameId": "", "StoryID": "", "RecommendLevel": 1, @@ -7887,5 +7938,105 @@ ], "SuccessTaskId": 1000, "FailTaskId": 1001 + }, + { + "Id": 990002, + "levelGroupID": 999, + "LevelType": 0, + "Unlocks": "", + "IsShow": false, + "CostItems": [ + { + "Id": 4, + "Count": 0 + } + ], + "NormalRewardID": [ + 5101, + 5102, + 5103 + ], + "RandomRewardID": [], + "FristRewardID": [ + 5004 + ], + "StarRewardID_1": [ + 5001 + ], + "StarRewardID_2": [ + 5001 + ], + "StarRewardID_3": [ + 5001 + ], + "SettleExp": 0, + "SettleLikability": 30, + "ShadowDistance": 100, + "LevelTime": 0, + "LevelWeather": 0, + "LevelScene": "Assets/Scenes/Maps/test/test_designer_fangshou.unity", + "MapData": "MapData_test_designer_fangshou", + "LevelData": "LevelData_6_990002", + "FightStoryNameId": "", + "StoryID": "", + "RecommendLevel": 1, + "MaxSweepingNumbert": 10, + "TimeAfterActivity": 0, + "ListLevelTaskId": [ + 3001, + 1001 + ], + "SuccessTaskId": 1000, + "FailTaskId": 1001 + }, + { + "Id": 990003, + "levelGroupID": 999, + "LevelType": 0, + "Unlocks": "", + "IsShow": false, + "CostItems": [ + { + "Id": 4, + "Count": 0 + } + ], + "NormalRewardID": [ + 5101, + 5102, + 5103 + ], + "RandomRewardID": [], + "FristRewardID": [ + 5004 + ], + "StarRewardID_1": [ + 5001 + ], + "StarRewardID_2": [ + 5001 + ], + "StarRewardID_3": [ + 5001 + ], + "SettleExp": 0, + "SettleLikability": 30, + "ShadowDistance": 100, + "LevelTime": 0, + "LevelWeather": 0, + "LevelScene": "Assets/Scenes/Maps/test/test_designer_fangshou.unity", + "MapData": "MapData_test_designer_fangshou", + "LevelData": "LevelData_6_990003", + "FightStoryNameId": "", + "StoryID": "", + "RecommendLevel": 1, + "MaxSweepingNumbert": 10, + "TimeAfterActivity": 0, + "ListLevelTaskId": [ + 3002, + 1001 + ], + "SuccessTaskId": 1000, + "FailTaskId": 1001 } ] \ No newline at end of file diff --git a/ProjectNLD/Assets/Config/Data/levelcfg_leveltask.json b/ProjectNLD/Assets/Config/Data/levelcfg_leveltask.json index 6766f520006..3c0f7c968d8 100644 --- a/ProjectNLD/Assets/Config/Data/levelcfg_leveltask.json +++ b/ProjectNLD/Assets/Config/Data/levelcfg_leveltask.json @@ -10,5 +10,29 @@ "PreTaskId": 0, "PostTaskId": 0, "TaskCondition": "CombatAllAlliesDead" + }, + { + "Id": 2001, + "PreTaskId": 0, + "PostTaskId": 2002, + "TaskCondition": "CombatLeastOccupy(1)" + }, + { + "Id": 2002, + "PreTaskId": 2001, + "PostTaskId": 0, + "TaskCondition": "CombatDefenseWave(2)" + }, + { + "Id": 3001, + "PreTaskId": 0, + "PostTaskId": 0, + "TaskCondition": "CombatDefenseTime(60)" + }, + { + "Id": 3002, + "PreTaskId": 0, + "PostTaskId": 0, + "TaskCondition": "CombatDefenseWave(3)" } ] \ No newline at end of file diff --git a/ProjectNLD/Assets/Config/Data/monstercfg_monster.json b/ProjectNLD/Assets/Config/Data/monstercfg_monster.json index f2fac623d00..e772fb1a635 100644 --- a/ProjectNLD/Assets/Config/Data/monstercfg_monster.json +++ b/ProjectNLD/Assets/Config/Data/monstercfg_monster.json @@ -27262,5 +27262,165 @@ "WeaponGraspScale": 1, "WeaponDegreeScale": 1, "MonsterLevel": 2 + }, + { + "MonsterID": 99000101, + "NameRead": "高塔狙击", + "NpcType": 0, + "MonsterClassID": 10251001, + "AttackFix": 0.3, + "HPFix": 1, + "ShieldFix": 1, + "DefenceFix": 1, + "FindEnemyRange": 10, + "TrackRange": 0, + "SkillLevel": 1, + "WeaponGraspScale": 1, + "WeaponDegreeScale": 1, + "MonsterLevel": 2 + }, + { + "MonsterID": 99000102, + "NameRead": "阵地机枪", + "NpcType": 0, + "MonsterClassID": 10251002, + "AttackFix": 0.3, + "HPFix": 1, + "ShieldFix": 1, + "DefenceFix": 1, + "FindEnemyRange": 7, + "TrackRange": 0, + "SkillLevel": 1, + "WeaponGraspScale": 1, + "WeaponDegreeScale": 1, + "MonsterLevel": 2 + }, + { + "MonsterID": 99000103, + "NameRead": "埋伏侦察", + "NpcType": 0, + "MonsterClassID": 10251003, + "AttackFix": 0.3, + "HPFix": 1, + "ShieldFix": 1, + "DefenceFix": 1, + "FindEnemyRange": 6, + "TrackRange": 0, + "SkillLevel": 1, + "WeaponGraspScale": 1, + "WeaponDegreeScale": 1, + "MonsterLevel": 2 + }, + { + "MonsterID": 99000104, + "NameRead": "埋伏冲锋", + "NpcType": 0, + "MonsterClassID": 10251004, + "AttackFix": 0.3, + "HPFix": 1, + "ShieldFix": 1, + "DefenceFix": 1, + "FindEnemyRange": 6, + "TrackRange": 0, + "SkillLevel": 1, + "WeaponGraspScale": 1, + "WeaponDegreeScale": 1, + "MonsterLevel": 2 + }, + { + "MonsterID": 99000105, + "NameRead": "普通冲锋", + "NpcType": 0, + "MonsterClassID": 10251005, + "AttackFix": 0.3, + "HPFix": 1, + "ShieldFix": 1, + "DefenceFix": 1, + "FindEnemyRange": 6, + "TrackRange": 0, + "SkillLevel": 1, + "WeaponGraspScale": 1, + "WeaponDegreeScale": 1, + "MonsterLevel": 2 + }, + { + "MonsterID": 99000106, + "NameRead": "支援医疗", + "NpcType": 0, + "MonsterClassID": 10251006, + "AttackFix": 0.3, + "HPFix": 1, + "ShieldFix": 1, + "DefenceFix": 1, + "FindEnemyRange": 5, + "TrackRange": 0, + "SkillLevel": 1, + "WeaponGraspScale": 1, + "WeaponDegreeScale": 1, + "MonsterLevel": 2 + }, + { + "MonsterID": 99000107, + "NameRead": "高塔狙击", + "NpcType": 0, + "MonsterClassID": 10251001, + "AttackFix": 0.3, + "HPFix": 1, + "ShieldFix": 1, + "DefenceFix": 1, + "FindEnemyRange": 8, + "TrackRange": 0, + "SkillLevel": 1, + "WeaponGraspScale": 1, + "WeaponDegreeScale": 1, + "MonsterLevel": 2 + }, + { + "MonsterID": 99000108, + "NameRead": "阵地机枪", + "NpcType": 0, + "MonsterClassID": 10251002, + "AttackFix": 0.3, + "HPFix": 1, + "ShieldFix": 1, + "DefenceFix": 1, + "FindEnemyRange": 5, + "TrackRange": 0, + "SkillLevel": 1, + "WeaponGraspScale": 1, + "WeaponDegreeScale": 1, + "MonsterLevel": 2 + }, + { + "MonsterID": 99000109, + "NameRead": "普通冲锋", + "NpcType": 0, + "MonsterClassID": 10251005, + "AttackFix": 0.3, + "HPFix": 1, + "ShieldFix": 1, + "DefenceFix": 1, + "FindEnemyRange": 6, + "TrackRange": 0, + "SkillLevel": 1, + "WeaponGraspScale": 1, + "WeaponDegreeScale": 1, + "MonsterLevel": 2 + }, + { + "MonsterID": 99000110, + "NameRead": "支援反载具", + "NpcType": 0, + "MonsterClassID": 10251007, + "AttackFix": 0.3, + "HPFix": 1, + "ShieldFix": 1, + "DefenceFix": 1, + "FindEnemyRange": 7, + "TrackRange": 0, + "SkillLevel": 1, + "WeaponGraspScale": 1, + "WeaponDegreeScale": 1, + "MonsterLevel": 2 } ] \ No newline at end of file diff --git a/ProjectNLD/Assets/Config/Data/monstercfg_monsterclass.json b/ProjectNLD/Assets/Config/Data/monstercfg_monsterclass.json index 7466245f725..b1f540720b9 100644 --- a/ProjectNLD/Assets/Config/Data/monstercfg_monsterclass.json +++ b/ProjectNLD/Assets/Config/Data/monstercfg_monsterclass.json @@ -3280,7 +3280,7 @@ { "MonsterClassID": 10391401, "NameId": "E00014", - "Name": "自制土枪拾荒者", + "Name": "拾荒者(自制土枪)", "EnemyType": 1, "UseSkillAudioName": "", "DeadAudioName": "", @@ -3319,7 +3319,7 @@ { "MonsterClassID": 20391401, "NameId": "E00014", - "Name": "自制土枪拾荒者", + "Name": "拾荒者(自制土枪)", "EnemyType": 1, "UseSkillAudioName": "", "DeadAudioName": "", @@ -3358,7 +3358,7 @@ { "MonsterClassID": 10161401, "NameId": "E00014", - "Name": "栓步侦查(短莫辛)", + "Name": "侦查(短莫辛纳甘)", "EnemyType": 1, "UseSkillAudioName": "", "DeadAudioName": "", @@ -3397,7 +3397,7 @@ { "MonsterClassID": 10441004, "NameId": "E00010", - "Name": "勃朗宁机枪", + "Name": "铁血战士(勃朗宁机枪)", "EnemyType": 1, "UseSkillAudioName": "", "DeadAudioName": "", @@ -3438,7 +3438,7 @@ { "MonsterClassID": 10191005, "NameId": "E00010", - "Name": "栓步指挥(带镜莫辛)", + "Name": "指挥(带镜莫辛纳甘)", "EnemyType": 1, "UseSkillAudioName": "", "DeadAudioName": "", diff --git a/ProjectNLD/Assets/Config/Data/stringcfg_stringconfig.json b/ProjectNLD/Assets/Config/Data/stringcfg_stringconfig.json index 2a8cf4ce169..5b663f65cb4 100644 --- a/ProjectNLD/Assets/Config/Data/stringcfg_stringconfig.json +++ b/ProjectNLD/Assets/Config/Data/stringcfg_stringconfig.json @@ -25115,6 +25115,32 @@ "OutCalculate": [], "CalculateType": 0 }, + { + "Key": "condition_defense_wave", + "Name": "condition_defense_wave", + "value": "防守{0}/{1}波", + "Desc": "防守{0}/{1}波", + "Notes": "", + "Param0": "", + "Param1": "", + "Param2": "", + "InnerCalculate": false, + "OutCalculate": [], + "CalculateType": 0 + }, + { + "Key": "condition_defense_time", + "Name": "condition_defense_time", + "value": "坚持{0}", + "Desc": "坚持{0}", + "Notes": "", + "Param0": "", + "Param1": "", + "Param2": "", + "InnerCalculate": false, + "OutCalculate": [], + "CalculateType": 0 + }, { "Key": "weapon_1", "Name": "weapon_1", @@ -160203,7 +160229,7 @@ { "Key": "Guide_816", "Name": "Guide_816", - "value": "敌人正在后撤,快上车追上他!", + "value": "有些敌人会后撤,需要快速移动追击", "Desc": "", "Notes": "", "Param0": "", diff --git a/ProjectNLD/Assets/Config/Maps/MapData_Maps00_Plain_10.json b/ProjectNLD/Assets/Config/Maps/MapData_Maps00_Plain_10.json index ab980f98733..b3e6f525e72 100644 --- a/ProjectNLD/Assets/Config/Maps/MapData_Maps00_Plain_10.json +++ b/ProjectNLD/Assets/Config/Maps/MapData_Maps00_Plain_10.json @@ -7,7 +7,9 @@ "leftMarginInPre": 1.2000000476837159, "rightMarginInPre": 1.2000000476837159, "topMarginInInPre": 0.8999999761581421, - "bottomMarginInPre": 0.8999999761581421 + "bottomMarginInPre": 0.8999999761581421, + "initialFOV": 30.0, + "initialOrthographicSize": 12.0 }, "position": { "x": 0.0, @@ -365,7 +367,8 @@ 33, 34, 17 - ] + ], + "centerCellIndex": -1 }, { "positions": [ @@ -376,7 +379,8 @@ 32, 16, 0 - ] + ], + "centerCellIndex": -1 }, { "positions": [ @@ -387,7 +391,8 @@ 79, 95, 111 - ] + ], + "centerCellIndex": -1 }, { "positions": [ @@ -398,14 +403,107 @@ 98, 82, 99 - ] + ], + "centerCellIndex": -1 } ], + "blockRegions": [ + { + "id": 0, + "positions": [], + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Attack.prefab", + "centerPos": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + } + } + ], + "defenseRegions": [], "initialCameraPosition": { "x": 0, "y": 0 }, - "capturePoints": [], - "flagStartPoints": [], - "showBuffPoints": [] + "showBuffPoints": [ + { + "cellIndex": 11, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 14, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 20, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 30, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 36, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 37, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 41, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 43, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 54, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 55, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 59, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 69, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 71, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 77, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 78, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 90, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 93, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 104, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 106, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + }, + { + "cellIndex": 107, + "path": "Assets/Art_Out/Other/BuffPoint/Buff_Cover.prefab" + } + ] } \ No newline at end of file