diff --git a/ProjectNLD/Assets/Art_Out/Other/CapturePoint/Zhanling_likai.prefab b/ProjectNLD/Assets/Art_Out/Manual/Effects/Zhanling_likai.prefab similarity index 100% rename from ProjectNLD/Assets/Art_Out/Other/CapturePoint/Zhanling_likai.prefab rename to ProjectNLD/Assets/Art_Out/Manual/Effects/Zhanling_likai.prefab diff --git a/ProjectNLD/Assets/Art_Out/Other/CapturePoint/Zhanling_likai.prefab.meta b/ProjectNLD/Assets/Art_Out/Manual/Effects/Zhanling_likai.prefab.meta similarity index 100% rename from ProjectNLD/Assets/Art_Out/Other/CapturePoint/Zhanling_likai.prefab.meta rename to ProjectNLD/Assets/Art_Out/Manual/Effects/Zhanling_likai.prefab.meta diff --git a/ProjectNLD/Assets/Art_Out/Other/CapturePoint/capture_point_end.prefab b/ProjectNLD/Assets/Art_Out/Manual/Effects/capture_point_end.prefab similarity index 100% rename from ProjectNLD/Assets/Art_Out/Other/CapturePoint/capture_point_end.prefab rename to ProjectNLD/Assets/Art_Out/Manual/Effects/capture_point_end.prefab diff --git a/ProjectNLD/Assets/Art_Out/Other/CapturePoint/capture_point_end.prefab.meta b/ProjectNLD/Assets/Art_Out/Manual/Effects/capture_point_end.prefab.meta similarity index 100% rename from ProjectNLD/Assets/Art_Out/Other/CapturePoint/capture_point_end.prefab.meta rename to ProjectNLD/Assets/Art_Out/Manual/Effects/capture_point_end.prefab.meta diff --git a/ProjectNLD/Assets/Code/Scripts/Gameplay/Common/CodeDefine.cs b/ProjectNLD/Assets/Code/Scripts/Gameplay/Common/CodeDefine.cs index 6a7ec1a7538..4fdff6624ce 100644 --- a/ProjectNLD/Assets/Code/Scripts/Gameplay/Common/CodeDefine.cs +++ b/ProjectNLD/Assets/Code/Scripts/Gameplay/Common/CodeDefine.cs @@ -62,6 +62,19 @@ namespace Gameplay.Common /// public static bool ONE_DAMAGE_KILL_ENEMY = false; + public static class CapturePoint + { + /// + /// 离开占领点特效ID + /// + public const int EFFECT_ID_EXIT = 20001; + + /// + /// 占领完成特效ID + /// + public const int EFFECT_ID_FINISH = 20002; + } + } } } diff --git a/ProjectNLD/Assets/Code/Scripts/Gameplay/Common/PathDefine.cs b/ProjectNLD/Assets/Code/Scripts/Gameplay/Common/PathDefine.cs index 1bf7ddabb54..afd9f866085 100644 --- a/ProjectNLD/Assets/Code/Scripts/Gameplay/Common/PathDefine.cs +++ b/ProjectNLD/Assets/Code/Scripts/Gameplay/Common/PathDefine.cs @@ -75,8 +75,9 @@ public static class CapturePoint { - public const string CAPTURE_POINT_PATH = "Assets/Art_Out/Other/CapturePoint/capture_point_progress.prefab"; - public const string CAPTURE_FINISHED_POINT_PATH = "Assets/Art_Out/Other/CapturePoint/capture_point_end.prefab"; + public const string CAPTURE_POINT_PROGRESS_PATH = "Assets/Art_Out/Other/CapturePoint/capture_point_progress.prefab"; + public const string CAPTURE_POINT_GROUND_POINT_PATH = "Assets/Art_Out/Other/CapturePoint/Zhanling_dige.prefab"; + public const string CAPTURE_EFFECT_ICON_PATH = "Assets/Art_Out/Other/CapturePoint/Zhanling_zhishi.prefab"; } public static class HoldFlag diff --git a/ProjectNLD/Assets/Code/Scripts/Gameplay/Fight/Capture/CaptureInst.cs b/ProjectNLD/Assets/Code/Scripts/Gameplay/Fight/Capture/CaptureInst.cs index e51b3156466..8d30af4c994 100644 --- a/ProjectNLD/Assets/Code/Scripts/Gameplay/Fight/Capture/CaptureInst.cs +++ b/ProjectNLD/Assets/Code/Scripts/Gameplay/Fight/Capture/CaptureInst.cs @@ -2,6 +2,7 @@ using Framework; using Gameplay.Area; using Gameplay.Common; +using Gameplay.Effect; using Gameplay.Unit; using Gameplay.Utils; using PhxhSDK; @@ -11,53 +12,100 @@ namespace Gameplay.Fight.Capture { public class CaptureInst { - private static readonly int _Prop_Color1 = Shader.PropertyToID("_BaseColor"); + private static readonly int _Prop_BaseMap = Shader.PropertyToID("_BaseMap"); public int cellIndex; + private Vector3 _worldPos; public int maxCaptureProgress = 10; public List inAreaUnits; public float captureProgress; - + private bool _lastIsInArea; public bool isCaptured { get; private set; } - private GameObject _displayObj; - private Material _displayMat; - private Color _startColor; - private Color _endColor; - - public CaptureInst(int cellIndex, int captureValue) + private GameObject _displayObj; + private GameObject _objGroundPoint; + private GameObject _objIcon; + + private bool _isEntered; + + public CaptureInst(int cellIndex, + int captureValue) { maxCaptureProgress = captureValue; this.cellIndex = cellIndex; inAreaUnits = new List(); captureProgress = 0f; isCaptured = false; - var sampleObj = AssetManager.Instance.GetPreLoadResult(PathDefine.CapturePoint.CAPTURE_POINT_PATH); - _displayObj = Object.Instantiate(sampleObj); - var worldPos = AreaManager.instance.GetWorldPosByIndex(cellIndex); - _displayObj.transform.position = worldPos; + _isEntered = false; + _lastIsInArea = false; - _startColor = ColorEx.FromStr("#FFFFFF"); - _endColor = ColorEx.FromStr("#D4FF7E"); + _CreateObjs(); + } + + private void _CreateProgressObj(Vector3 worldPos) + { + var sampleObj = AssetManager.Instance.GetPreLoadResult(PathDefine.CapturePoint.CAPTURE_POINT_PROGRESS_PATH); + _displayObj = Object.Instantiate(sampleObj); + _displayObj.transform.position = worldPos; _SearchDisplayMat(); } - + + private void _CreateObjs() + { + _worldPos = AreaManager.instance.GetWorldPosByIndex(cellIndex); + { + var sampleObj = AssetManager.Instance.GetPreLoadResult(PathDefine.CapturePoint.CAPTURE_POINT_GROUND_POINT_PATH); + _objGroundPoint = Object.Instantiate(sampleObj); + _objGroundPoint.transform.position = _worldPos; + } + { + var sampleObj = AssetManager.Instance.GetPreLoadResult(PathDefine.CapturePoint.CAPTURE_EFFECT_ICON_PATH); + _objIcon = Object.Instantiate(sampleObj); + _objIcon.transform.position = _worldPos; + } + + } + + private void _DestroyObjs() + { + if (_displayObj != null) + { + _displayObj.Destroy(); + _displayObj = null; + } + if (_objGroundPoint != null) + { + _objGroundPoint.Destroy(); + _objGroundPoint = null; + } + _DestroyIcon(); + } + + private void _DestroyIcon() + { + if (_objIcon != null) + { + _objIcon.Destroy(); + _objIcon = null; + } + } + private void _SearchDisplayMat() { - var findTrans = _displayObj.transform.GetChild(0); - var meshRender = findTrans.GetComponent(); - _displayMat = meshRender.material; - _displayMat.SetColor(_Prop_Color1, _startColor); + var findTrans = _displayObj.transform.Find("lizi/liubian_dutiao"); + var particleSystem = findTrans.GetComponent(); + _displayMat = particleSystem.material; + _displayMat.SetTextureOffset(_Prop_BaseMap, new Vector2(0, 0)); } - + public void UpdateInAreaUnits(List checkUnits) { if (isCaptured) return; @@ -70,31 +118,37 @@ namespace Gameplay.Fight.Capture inAreaUnits.Add(unit); } } - + public void LogicUpdate(float dt) { if (isCaptured) return; if (inAreaUnits.Count > 0) { + if (!_isEntered) + { + _isEntered = true; + _DestroyIcon(); + _CreateProgressObj(_worldPos); + } + captureProgress += dt * inAreaUnits.Count; if (captureProgress >= maxCaptureProgress) { isCaptured = true; EventManager.Instance.Send(EventManager.EventName.INFIGHT_CAPTURE_FINSIHED, this); - - _CreateNoticeOnGround(); - } - else - { - var lerpValue = captureProgress / maxCaptureProgress; - var lerpColor = Color.Lerp(_startColor, _endColor, lerpValue); - _displayMat.SetColor(_Prop_Color1, lerpColor); + EffectManager.instance.PlayEffectById(CodeDefine.Fight.CapturePoint.EFFECT_ID_FINISH, _worldPos); + _DestroyObjs(); + return; } + var lerpValue = captureProgress / maxCaptureProgress; + _displayMat.SetTextureOffset(_Prop_BaseMap, new Vector2(lerpValue, 0)); if (!_lastIsInArea) { _lastIsInArea = true; EventManager.Instance.Send(EventManager.EventName.INFIGHT_CAPTURE_START, this); + + EffectManager.instance.PlayEffectById(CodeDefine.Fight.CapturePoint.EFFECT_ID_EXIT, _worldPos); } } else @@ -103,28 +157,16 @@ namespace Gameplay.Fight.Capture { _lastIsInArea = false; EventManager.Instance.Send(EventManager.EventName.INFIGHT_CAPTURE_STOP, this); + + EffectManager.instance.PlayEffectById(CodeDefine.Fight.CapturePoint.EFFECT_ID_EXIT, _worldPos); } } - - } - private void _CreateNoticeOnGround() - { - var sampleObj = AssetManager.Instance.GetPreLoadResult(PathDefine.CapturePoint.CAPTURE_FINISHED_POINT_PATH); - var displayObj = Object.Instantiate(sampleObj); - var worldPos = _displayObj.transform.position; - displayObj.transform.position = worldPos; - _displayObj.Destroy(); - _displayObj = displayObj; } public void Dispose() { - if (_displayObj != null) - { - _displayObj.Destroy(); - _displayObj = null; - } + _DestroyObjs(); } } } diff --git a/ProjectNLD/Assets/Code/Scripts/Gameplay/Level/Level.cs b/ProjectNLD/Assets/Code/Scripts/Gameplay/Level/Level.cs index 4de9640b54d..e94d4f34bd9 100644 --- a/ProjectNLD/Assets/Code/Scripts/Gameplay/Level/Level.cs +++ b/ProjectNLD/Assets/Code/Scripts/Gameplay/Level/Level.cs @@ -663,8 +663,12 @@ namespace Gameplay.Level _PostPreload(PathDefine.Summon.ENEMY); _PostPreload(PathDefine.SkillArea.SKILL_GORUND_HIGH_LIGHT); _PostPreload(PathDefine.SkillArea.HIGHLIGHT_POINT); - _PostPreload(PathDefine.CapturePoint.CAPTURE_POINT_PATH); - _PostPreload(PathDefine.CapturePoint.CAPTURE_FINISHED_POINT_PATH); + + // 占领相关 + _PostPreload(PathDefine.CapturePoint.CAPTURE_POINT_PROGRESS_PATH); + _PostPreload(PathDefine.CapturePoint.CAPTURE_POINT_GROUND_POINT_PATH); + _PostPreload(PathDefine.CapturePoint.CAPTURE_EFFECT_ICON_PATH); + _PostPreload(PathDefine.HoldFlag.FLAG_GROUND_PATH); _PostPreload(PathDefine.HoldFlag.FLAG_PICK_PATH); _PostPreload(PathDefine.HoldFlag.FLAG_RETURN_PATH); diff --git a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ActorCfg/UnlockParam.cs b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ActorCfg/UnlockParam.cs index 25e222e3a9d..27bfdc48705 100644 --- a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ActorCfg/UnlockParam.cs +++ b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ActorCfg/UnlockParam.cs @@ -23,6 +23,14 @@ namespace cfg.ActorCfg /// 角色ID /// CharacterID = 1, + /// + /// 载具ID + /// + VehicleID = 1, + /// + /// 载具部件ID + /// + VehicleComponentID = 2, } } diff --git a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ChargeCfg/DataCurrencyShopCfg.cs b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ChargeCfg/DataCurrencyShopCfg.cs index 4478961e1d6..c4d5b7ce528 100644 --- a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ChargeCfg/DataCurrencyShopCfg.cs +++ b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ChargeCfg/DataCurrencyShopCfg.cs @@ -20,6 +20,7 @@ public sealed partial class DataCurrencyShopCfg : Bright.Config.BeanBase { { if(!_json["Id"].IsNumber) { throw new SerializationException(); } Id = _json["Id"]; } { if(!_json["AppleProductID"].IsString) { throw new SerializationException(); } AppleProductID = _json["AppleProductID"]; } + { if(!_json["PhxhProductID"].IsString) { throw new SerializationException(); } PhxhProductID = _json["PhxhProductID"]; } { if(!_json["AppleBuyType"].IsNumber) { throw new SerializationException(); } AppleBuyType = (ChargeCfg.AppleBuyType)_json["AppleBuyType"].AsInt; } { if(!_json["Name"].IsString) { throw new SerializationException(); } Name = _json["Name"]; } { if(!_json["NameLocal"].IsString) { throw new SerializationException(); } NameLocal = _json["NameLocal"]; } @@ -32,10 +33,11 @@ public sealed partial class DataCurrencyShopCfg : Bright.Config.BeanBase PostInit(); } - public DataCurrencyShopCfg(int Id, string AppleProductID, ChargeCfg.AppleBuyType AppleBuyType, string Name, string NameLocal, int ItemID, int ItemCount, int MaxCount, int NowPriceDollar, int NowPriceRMB, string IconPath ) + public DataCurrencyShopCfg(int Id, string AppleProductID, string PhxhProductID, ChargeCfg.AppleBuyType AppleBuyType, string Name, string NameLocal, int ItemID, int ItemCount, int MaxCount, int NowPriceDollar, int NowPriceRMB, string IconPath ) { this.Id = Id; this.AppleProductID = AppleProductID; + this.PhxhProductID = PhxhProductID; this.AppleBuyType = AppleBuyType; this.Name = Name; this.NameLocal = NameLocal; @@ -62,6 +64,10 @@ public sealed partial class DataCurrencyShopCfg : Bright.Config.BeanBase /// public string AppleProductID { get; private set; } /// + /// 开放平台ID + /// + public string PhxhProductID { get; private set; } + /// /// 类型 /// public ChargeCfg.AppleBuyType AppleBuyType { get; private set; } @@ -115,6 +121,7 @@ public sealed partial class DataCurrencyShopCfg : Bright.Config.BeanBase return "{ " + "Id:" + Id + "," + "AppleProductID:" + AppleProductID + "," + + "PhxhProductID:" + PhxhProductID + "," + "AppleBuyType:" + AppleBuyType + "," + "Name:" + Name + "," + "NameLocal:" + NameLocal + "," diff --git a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ConditionType.cs b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ConditionType.cs index 3b30fcf21bb..e32bfaf3946 100644 --- a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ConditionType.cs +++ b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/ConditionType.cs @@ -96,9 +96,17 @@ namespace cfg /// LevelOver = 20, /// + /// 载具是否解锁 + /// + VehicleIsUnlock = 21, + /// + /// 载具部件是否解锁 + /// + VehicleComponentIsUnlock = 22, + /// /// 最大类型 /// - Max = 21, + Max = 23, } } diff --git a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/DataCondition.cs b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/DataCondition.cs index 37afd710728..f9b761ee443 100644 --- a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/DataCondition.cs +++ b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/DataCondition.cs @@ -26,7 +26,7 @@ public sealed partial class DataCondition : Bright.Config.BeanBase PostInit(); } - public DataCondition(int Id, ConditionType Type, int Param1, int Param2, int Param3 ) + public DataCondition(int Id, ConditionType Type, long Param1, long Param2, int Param3 ) { this.Id = Id; this.Type = Type; @@ -52,11 +52,11 @@ public sealed partial class DataCondition : Bright.Config.BeanBase /// /// 参数1 /// - public int Param1 { get; private set; } + public long Param1 { get; private set; } /// /// 参数2 /// - public int Param2 { get; private set; } + public long Param2 { get; private set; } /// /// 参数3 /// diff --git a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/VehicleCfg/DataVehicle.cs b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/VehicleCfg/DataVehicle.cs index 20f1f63727c..9421ac486f4 100644 --- a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/VehicleCfg/DataVehicle.cs +++ b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/VehicleCfg/DataVehicle.cs @@ -24,6 +24,7 @@ public sealed partial class DataVehicle : Bright.Config.BeanBase { if(!_json["Name"].IsString) { throw new SerializationException(); } Name = _json["Name"]; } { if(!_json["UnlockType"].IsNumber) { throw new SerializationException(); } UnlockType = (VihecleCultivateCfg.UnlockType)_json["UnlockType"].AsInt; } { var __json0 = _json["UnlockCost"]; if(!__json0.IsArray) { throw new SerializationException(); } UnlockCost = new System.Collections.Generic.List(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { item.ItemCounts __v0; { if(!__e0.IsObject) { throw new SerializationException(); } __v0 = item.ItemCounts.DeserializeItemCounts(__e0); } UnlockCost.Add(__v0); } } + { var __json0 = _json["UnlockID"]; if(!__json0.IsArray) { throw new SerializationException(); } int _n0 = __json0.Count; UnlockID = new int[_n0]; int __index0=0; foreach(JSONNode __e0 in __json0.Children) { int __v0; { if(!__e0.IsNumber) { throw new SerializationException(); } __v0 = __e0; } UnlockID[__index0++] = __v0; } } { if(!_json["ParentType"].IsNumber) { throw new SerializationException(); } ParentType = (VihecleCultivateCfg.ParentType)_json["ParentType"].AsInt; } { if(!_json["ParentId"].IsNumber) { throw new SerializationException(); } ParentId = _json["ParentId"]; } { if(!_json["UIHeadPath"].IsString) { throw new SerializationException(); } UIHeadPath = _json["UIHeadPath"]; } @@ -52,7 +53,7 @@ public sealed partial class DataVehicle : Bright.Config.BeanBase PostInit(); } - public DataVehicle(int ID, VihecleCultivateCfg.VehicleType VehicleType, int VehicleLevel, string Name, VihecleCultivateCfg.UnlockType UnlockType, System.Collections.Generic.List UnlockCost, VihecleCultivateCfg.ParentType ParentType, long ParentId, string UIHeadPath, string PrefabPath, string ReadyAudioId, string IdleLoopAudioId, string WalkStopAudioId, string WalkLoopAudioId, string DeadAudioId, int DeadEffectId, int StandCrossLevel, int MoveCrossLevel, int SeatCount, int Defense, int HP, int ShieldCount, int WeaponId, float MoveSpeed, float TurnSpeed, float CriticalRate, float CriticalScale, System.Collections.Generic.List MalaAdjustTerrain, System.Collections.Generic.List SupperAdjustTerrain, int SpendLeadership, string Icon ) + public DataVehicle(int ID, VihecleCultivateCfg.VehicleType VehicleType, int VehicleLevel, string Name, VihecleCultivateCfg.UnlockType UnlockType, System.Collections.Generic.List UnlockCost, int[] UnlockID, VihecleCultivateCfg.ParentType ParentType, long ParentId, string UIHeadPath, string PrefabPath, string ReadyAudioId, string IdleLoopAudioId, string WalkStopAudioId, string WalkLoopAudioId, string DeadAudioId, int DeadEffectId, int StandCrossLevel, int MoveCrossLevel, int SeatCount, int Defense, int HP, int ShieldCount, int WeaponId, float MoveSpeed, float TurnSpeed, float CriticalRate, float CriticalScale, System.Collections.Generic.List MalaAdjustTerrain, System.Collections.Generic.List SupperAdjustTerrain, int SpendLeadership, string Icon ) { this.ID = ID; this.VehicleType = VehicleType; @@ -60,6 +61,7 @@ public sealed partial class DataVehicle : Bright.Config.BeanBase this.Name = Name; this.UnlockType = UnlockType; this.UnlockCost = UnlockCost; + this.UnlockID = UnlockID; this.ParentType = ParentType; this.ParentId = ParentId; this.UIHeadPath = UIHeadPath; @@ -118,6 +120,10 @@ public sealed partial class DataVehicle : Bright.Config.BeanBase /// public System.Collections.Generic.List UnlockCost { get; private set; } /// + /// 解锁条件 + /// + public int[] UnlockID { get; private set; } + /// /// 前置类型(部件1,其他2) /// public VihecleCultivateCfg.ParentType ParentType { get; private set; } @@ -241,6 +247,7 @@ public sealed partial class DataVehicle : Bright.Config.BeanBase + "Name:" + Name + "," + "UnlockType:" + UnlockType + "," + "UnlockCost:" + Bright.Common.StringUtil.CollectionToString(UnlockCost) + "," + + "UnlockID:" + Bright.Common.StringUtil.CollectionToString(UnlockID) + "," + "ParentType:" + ParentType + "," + "ParentId:" + ParentId + "," + "UIHeadPath:" + UIHeadPath + "," diff --git a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/VihecleCultivateCfg/DataVehicleComponent.cs b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/VihecleCultivateCfg/DataVehicleComponent.cs index 4115be4ae7c..6c3296f313d 100644 --- a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/VihecleCultivateCfg/DataVehicleComponent.cs +++ b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/VihecleCultivateCfg/DataVehicleComponent.cs @@ -22,6 +22,7 @@ public sealed partial class DataVehicleComponent : Bright.Config.BeanBase { if(!_json["ComponentName"].IsString) { throw new SerializationException(); } ComponentName = _json["ComponentName"]; } { if(!_json["ComponentType"].IsNumber) { throw new SerializationException(); } ComponentType = (VihecleCultivateCfg.ComponentType)_json["ComponentType"].AsInt; } { var __json0 = _json["UpgradeCost"]; if(!__json0.IsArray) { throw new SerializationException(); } UpgradeCost = new System.Collections.Generic.List(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { item.ItemCounts __v0; { if(!__e0.IsObject) { throw new SerializationException(); } __v0 = item.ItemCounts.DeserializeItemCounts(__e0); } UpgradeCost.Add(__v0); } } + { var __json0 = _json["UnlockID"]; if(!__json0.IsArray) { throw new SerializationException(); } int _n0 = __json0.Count; UnlockID = new int[_n0]; int __index0=0; foreach(JSONNode __e0 in __json0.Children) { int __v0; { if(!__e0.IsNumber) { throw new SerializationException(); } __v0 = __e0; } UnlockID[__index0++] = __v0; } } { if(!_json["ParentComponentID"].IsNumber) { throw new SerializationException(); } ParentComponentID = _json["ParentComponentID"]; } { if(!_json["VehicleID"].IsNumber) { throw new SerializationException(); } VehicleID = _json["VehicleID"]; } { if(!_json["Icon"].IsString) { throw new SerializationException(); } Icon = _json["Icon"]; } @@ -38,12 +39,13 @@ public sealed partial class DataVehicleComponent : Bright.Config.BeanBase PostInit(); } - public DataVehicleComponent(long ComponentID, string ComponentName, VihecleCultivateCfg.ComponentType ComponentType, System.Collections.Generic.List UpgradeCost, long ParentComponentID, int VehicleID, string Icon, int Damage, int Defense, int HP, float ReloadTime, float FireRate, int MoraleDamage, float ScaleForHuman, float ScaleForVehicle, float CriticalRate, float CriticalScale ) + public DataVehicleComponent(long ComponentID, string ComponentName, VihecleCultivateCfg.ComponentType ComponentType, System.Collections.Generic.List UpgradeCost, int[] UnlockID, long ParentComponentID, int VehicleID, string Icon, int Damage, int Defense, int HP, float ReloadTime, float FireRate, int MoraleDamage, float ScaleForHuman, float ScaleForVehicle, float CriticalRate, float CriticalScale ) { this.ComponentID = ComponentID; this.ComponentName = ComponentName; this.ComponentType = ComponentType; this.UpgradeCost = UpgradeCost; + this.UnlockID = UnlockID; this.ParentComponentID = ParentComponentID; this.VehicleID = VehicleID; this.Icon = Icon; @@ -82,6 +84,10 @@ public sealed partial class DataVehicleComponent : Bright.Config.BeanBase /// public System.Collections.Generic.List UpgradeCost { get; private set; } /// + /// 解锁条件 + /// + public int[] UnlockID { get; private set; } + /// /// 父部件id /// public long ParentComponentID { get; private set; } @@ -155,6 +161,7 @@ public sealed partial class DataVehicleComponent : Bright.Config.BeanBase + "ComponentName:" + ComponentName + "," + "ComponentType:" + ComponentType + "," + "UpgradeCost:" + Bright.Common.StringUtil.CollectionToString(UpgradeCost) + "," + + "UnlockID:" + Bright.Common.StringUtil.CollectionToString(UnlockID) + "," + "ParentComponentID:" + ParentComponentID + "," + "VehicleID:" + VehicleID + "," + "Icon:" + Icon + "," diff --git a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/VihecleCultivateCfg/DataVehiclePaint.cs b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/VihecleCultivateCfg/DataVehiclePaint.cs index 93dcd7aba85..b57eaa4327b 100644 --- a/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/VihecleCultivateCfg/DataVehiclePaint.cs +++ b/ProjectNLD/Assets/Code/Scripts/GenCode/Luban/DataTable/VihecleCultivateCfg/DataVehiclePaint.cs @@ -30,11 +30,12 @@ public sealed partial class DataVehiclePaint : Bright.Config.BeanBase { if(!_json["CriticalRate"].IsNumber) { throw new SerializationException(); } CriticalRate = _json["CriticalRate"]; } { if(!_json["CriticalScale"].IsNumber) { throw new SerializationException(); } CriticalScale = _json["CriticalScale"]; } { if(!_json["UnlockType"].IsNumber) { throw new SerializationException(); } UnlockType = (VihecleCultivateCfg.PaintIUnlockType)_json["UnlockType"].AsInt; } + { if(!_json["ItemID"].IsNumber) { throw new SerializationException(); } ItemID = _json["ItemID"]; } { var __json0 = _json["PaintCost"]; if(!__json0.IsArray) { throw new SerializationException(); } PaintCost = new System.Collections.Generic.List(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { item.ItemCounts __v0; { if(!__e0.IsObject) { throw new SerializationException(); } __v0 = item.ItemCounts.DeserializeItemCounts(__e0); } PaintCost.Add(__v0); } } PostInit(); } - public DataVehiclePaint(int PaintID, string PaintName, VihecleCultivateCfg.PaintType PaintType, int HostVehicle, int Damage, int Defense, int HP, float ScaleForHuman, float ScaleForVehicle, float CriticalRate, float CriticalScale, VihecleCultivateCfg.PaintIUnlockType UnlockType, System.Collections.Generic.List PaintCost ) + public DataVehiclePaint(int PaintID, string PaintName, VihecleCultivateCfg.PaintType PaintType, int HostVehicle, int Damage, int Defense, int HP, float ScaleForHuman, float ScaleForVehicle, float CriticalRate, float CriticalScale, VihecleCultivateCfg.PaintIUnlockType UnlockType, int ItemID, System.Collections.Generic.List PaintCost ) { this.PaintID = PaintID; this.PaintName = PaintName; @@ -48,6 +49,7 @@ public sealed partial class DataVehiclePaint : Bright.Config.BeanBase this.CriticalRate = CriticalRate; this.CriticalScale = CriticalScale; this.UnlockType = UnlockType; + this.ItemID = ItemID; this.PaintCost = PaintCost; PostInit(); } @@ -105,6 +107,7 @@ public sealed partial class DataVehiclePaint : Bright.Config.BeanBase /// 获取方式 /// public VihecleCultivateCfg.PaintIUnlockType UnlockType { get; private set; } + public int ItemID { get; private set; } /// /// 涂装消耗 /// @@ -139,6 +142,7 @@ public sealed partial class DataVehiclePaint : Bright.Config.BeanBase + "CriticalRate:" + CriticalRate + "," + "CriticalScale:" + CriticalScale + "," + "UnlockType:" + UnlockType + "," + + "ItemID:" + ItemID + "," + "PaintCost:" + Bright.Common.StringUtil.CollectionToString(PaintCost) + "," + "}"; } diff --git a/ProjectNLD/Assets/Config/Data/Localize/CN/stringcfg_stringconfig.json b/ProjectNLD/Assets/Config/Data/Localize/CN/stringcfg_stringconfig.json index 4733ea71672..11318ae5562 100644 --- a/ProjectNLD/Assets/Config/Data/Localize/CN/stringcfg_stringconfig.json +++ b/ProjectNLD/Assets/Config/Data/Localize/CN/stringcfg_stringconfig.json @@ -2953,7 +2953,7 @@ "Key": "SkinInfo_SkinName_100014_02", "Name": { "key": "SkinInfo_SkinName_100014_02", - "text": "科斯莫出击!" + "text": "科斯莫出击" }, "Param0": "", "Param1": "", @@ -4123,7 +4123,7 @@ "Key": "SkinInfo_SkinDesc_100001_02", "Name": { "key": "SkinInfo_SkinDesc_100001_02", - "text": "「呼叫局长,这里是旗手。现场情况有变,正加强观察,完毕。」" + "text": "“呼叫局长,这里是旗手。现场情况有变,正加强观察,完毕。”" }, "Param0": "", "Param1": "", @@ -4133,7 +4133,7 @@ "Key": "SkinInfo_SkinDesc_100002_02", "Name": { "key": "SkinInfo_SkinDesc_100002_02", - "text": "「辛苦啦~快进帐篷暖和一下吧~呵呵,因为没有别人在,稍微撒撒娇也可以哦~」" + "text": "“辛苦啦——快进帐篷暖和一下吧——呵呵,因为没有别人在,稍微撒撒娇也可以哦——”" }, "Param0": "", "Param1": "", @@ -4163,7 +4163,7 @@ "Key": "SkinInfo_SkinDesc_100005_02", "Name": { "key": "SkinInfo_SkinDesc_100005_02", - "text": "「特制定向雷就绪,为稳妥起见,务必确认前方炮兵靶场清空,嗯…也包括小动物们。」" + "text": "“特制定向雷就绪,为稳妥起见,务必确认前方炮兵靶场清空,嗯……也包括小动物们。”" }, "Param0": "", "Param1": "", @@ -4173,7 +4173,7 @@ "Key": "SkinInfo_SkinDesc_100006_02", "Name": { "key": "SkinInfo_SkinDesc_100006_02", - "text": "「7号降落场货物接收完毕,辛苦各位了,接下来的安保工作就交给我们吧。」" + "text": "“7号降落场货物接收完毕,辛苦各位了,接下来的安保工作就交给我们吧。”" }, "Param0": "", "Param1": "", @@ -4203,7 +4203,7 @@ "Key": "SkinInfo_SkinDesc_100009_02", "Name": { "key": "SkinInfo_SkinDesc_100009_02", - "text": "「你瞅啥?想打架吗?」" + "text": "“你瞅啥?想打架吗?”" }, "Param0": "", "Param1": "", @@ -4213,7 +4213,7 @@ "Key": "SkinInfo_SkinDesc_100010_02", "Name": { "key": "SkinInfo_SkinDesc_100010_02", - "text": "「让大家的关系好起来~~和和气气,相亲相爱~~」" + "text": "“让大家的关系好起来————和和气气,相亲相爱————”" }, "Param0": "", "Param1": "", @@ -4233,7 +4233,7 @@ "Key": "SkinInfo_SkinDesc_100012_02", "Name": { "key": "SkinInfo_SkinDesc_100012_02", - "text": "「只打顺风仗可培养不出素质优良的将领,有时候就得通过钓鱼这种活动,主动置身于被动的境地来磨炼战场嗅觉和应变能力。」" + "text": "“只打顺风仗可培养不出素质优良的将领,有时候就得通过钓鱼这种活动,主动置身于被动的境地来磨炼战场嗅觉和应变能力。”" }, "Param0": "", "Param1": "", @@ -4243,7 +4243,7 @@ "Key": "SkinInfo_SkinDesc_100013_02", "Name": { "key": "SkinInfo_SkinDesc_100013_02", - "text": "「如果您真的有为我考虑的话,希望您下次来的时候用走的,别再被抬着进来了。」" + "text": "“如果您真的有为我考虑的话,希望您下次来的时候用走的,别再被抬着进来了。”" }, "Param0": "", "Param1": "", @@ -4253,7 +4253,7 @@ "Key": "SkinInfo_SkinDesc_100014_02", "Name": { "key": "SkinInfo_SkinDesc_100014_02", - "text": "「邪恶的狸花怪兽正要吞噬梅梅长官的后勤补给!一定要阻止它!」" + "text": "“邪恶的狸花怪兽正要吞噬梅梅长官的后勤补给!一定要阻止它!”" }, "Param0": "", "Param1": "", @@ -4263,7 +4263,7 @@ "Key": "SkinInfo_SkinDesc_100015_02", "Name": { "key": "SkinInfo_SkinDesc_100015_02", - "text": "「我就知道会是这个结果,还好多抓了几条过来。准尉同志,去告诉璐比别较真了,等会儿天都要黑了。」" + "text": "“我就知道会是这个结果,还好多抓了几条过来。准尉同志,去告诉璐比别较真了,等会儿天都要黑了。”" }, "Param0": "", "Param1": "", @@ -4283,7 +4283,7 @@ "Key": "SkinInfo_SkinDesc_100021_02", "Name": { "key": "SkinInfo_SkinDesc_100021_02", - "text": "头冠爬满荆棘,王座阴寒彻骨…但骰子已经掷出,覆水难收。" + "text": "头冠爬满荆棘,王座阴寒彻骨……但骰子已经掷出,覆水难收。" }, "Param0": "", "Param1": "", @@ -4293,7 +4293,7 @@ "Key": "SkinInfo_SkinDesc_100022_02", "Name": { "key": "SkinInfo_SkinDesc_100022_02", - "text": "「麻烦的事情就交给蜜儿姐姐吧,乖孩子们只需要健康成长为可靠的骑士就行了~」" + "text": "“麻烦的事情就交给蜜儿姐姐吧,乖孩子们只需要健康成长为可靠的骑士就行了——”" }, "Param0": "", "Param1": "", @@ -4303,7 +4303,7 @@ "Key": "SkinInfo_SkinDesc_100024_02", "Name": { "key": "SkinInfo_SkinDesc_100024_02", - "text": "「看看这首饰,这挂件,可都是纯金打造的!这不比土掉渣的军服好看多了?」" + "text": "“看看这首饰,这挂件,可都是纯金打造的!这不比土掉渣的军服好看多了?”" }, "Param0": "", "Param1": "", @@ -4313,7 +4313,7 @@ "Key": "SkinInfo_SkinDesc_100025_02", "Name": { "key": "SkinInfo_SkinDesc_100025_02", - "text": "「骑士的荣耀仍存于世!」" + "text": "“骑士的荣耀仍存于世!”" }, "Param0": "", "Param1": "", @@ -4323,7 +4323,7 @@ "Key": "SkinInfo_SkinDesc_100026_02", "Name": { "key": "SkinInfo_SkinDesc_100026_02", - "text": "「动起来动起来!敌人不会等你们洗好脸梳好头!…作风可以,继续保持!」" + "text": "“动起来动起来!敌人不会等你们洗好脸梳好头!……作风可以,继续保持!”" }, "Param0": "", "Param1": "", @@ -4333,7 +4333,7 @@ "Key": "SkinInfo_SkinDesc_100027_02", "Name": { "key": "SkinInfo_SkinDesc_100027_02", - "text": "「很香吧?这美味的诱惑谁都抵挡不了哦~~」" + "text": "“很香吧?这美味的诱惑谁都抵挡不了哦————”" }, "Param0": "", "Param1": "", @@ -4343,7 +4343,7 @@ "Key": "SkinInfo_SkinDesc_100028_02", "Name": { "key": "SkinInfo_SkinDesc_100028_02", - "text": "「收…收到!破门,进入,然后开枪…像指南书上说的一样,没问题!大概吧…」" + "text": "“收……收到!破门,进入,然后开枪……像指南书上说的一样,没问题!大概吧……”" }, "Param0": "", "Param1": "", @@ -4373,7 +4373,7 @@ "Key": "SkinInfo_SkinDesc_100031_02", "Name": { "key": "SkinInfo_SkinDesc_100031_02", - "text": "「唱起来!舞起来!今夜是属于我们所有人的!」" + "text": "“唱起来!舞起来!今夜是属于我们所有人的!”" }, "Param0": "", "Param1": "", @@ -4383,7 +4383,7 @@ "Key": "SkinInfo_SkinDesc_100032_02", "Name": { "key": "SkinInfo_SkinDesc_100032_02", - "text": "「吟游诗人之间流传着一句老话——故事都长在窗户外面。」" + "text": "“吟游诗人之间流传着一句老话——故事都长在窗户外面。”" }, "Param0": "", "Param1": "", @@ -4393,7 +4393,7 @@ "Key": "SkinInfo_SkinDesc_100033_02", "Name": { "key": "SkinInfo_SkinDesc_100033_02", - "text": "「总有一天,我会用自己的光芒照亮一切。」" + "text": "“总有一天,我会用自己的光芒照亮一切。”" }, "Param0": "", "Param1": "", @@ -4403,7 +4403,7 @@ "Key": "SkinInfo_SkinDesc_100034_02", "Name": { "key": "SkinInfo_SkinDesc_100034_02", - "text": "「您看到的我,到底哪一个才是真实的呢?那个…等等,您在看哪里呢?」" + "text": "“您看到的我,到底哪一个才是真实的呢?那个……等等,您在看哪里呢?”" }, "Param0": "", "Param1": "", @@ -4413,7 +4413,7 @@ "Key": "SkinInfo_SkinDesc_100035_02", "Name": { "key": "SkinInfo_SkinDesc_100035_02", - "text": "「对守护神的不尊重?不会哦,枪对我们来说可是等同于性命的东西,既然如此,想必先祖们也没什么意见吧。」" + "text": "“对守护神的不尊重?不会哦,枪对我们来说可是等同于性命的东西,既然如此,想必先祖们也没什么意见吧。”" }, "Param0": "", "Param1": "", @@ -4423,7 +4423,7 @@ "Key": "SkinInfo_SkinDesc_100042_02", "Name": { "key": "SkinInfo_SkinDesc_100042_02", - "text": "「嘘——让她好好睡一会儿吧,她今天上午九点就起床啦。」" + "text": "“嘘——让她好好睡一会儿吧,她今天上午九点就起床啦。”" }, "Param0": "", "Param1": "", @@ -4433,7 +4433,7 @@ "Key": "SkinInfo_SkinDesc_100043_02", "Name": { "key": "SkinInfo_SkinDesc_100043_02", - "text": "「诶嘿嘿~趁着大家还没起来先把这些叶子都收拾好,这可是宝贵的堆肥材料呢~」" + "text": "“诶嘿嘿——趁着大家还没起来先把这些叶子都收拾好,这可是宝贵的堆肥材料呢——”" }, "Param0": "", "Param1": "", @@ -4453,7 +4453,7 @@ "Key": "SkinInfo_SkinDesc_100051_02", "Name": { "key": "SkinInfo_SkinDesc_100051_02", - "text": "「别说这牧场了,整片草原,还有那边的林子,全都是我的地盘!明年我就在这个盖个高尔夫球场!」" + "text": "“别说这牧场了,整片草原,还有那边的林子,全都是我的地盘!明年我就在这个盖个高尔夫球场!”" }, "Param0": "", "Param1": "", @@ -4463,7 +4463,7 @@ "Key": "SkinInfo_SkinDesc_100052_02", "Name": { "key": "SkinInfo_SkinDesc_100052_02", - "text": "「请用,准尉同志。诶?啊,这个是希尔芙强烈要求让我练习的姿势…我是搞不懂女仆为什么就非要这样的…」" + "text": "“请用,准尉同志。诶?啊,这个是希尔芙强烈要求让我练习的姿势……我是搞不懂女仆为什么就非要这样的……”" }, "Param0": "", "Param1": "", @@ -4483,7 +4483,7 @@ "Key": "SkinInfo_SkinDesc_100054_02", "Name": { "key": "SkinInfo_SkinDesc_100054_02", - "text": "「一般商品我们都写在价目表上了,特殊的商品嘛…准尉得用其他方式支付才能享受到哦~」" + "text": "“一般商品我们都写在价目表上了,特殊的商品嘛……准尉得用其他方式支付才能享受到哦——”" }, "Param0": "", "Param1": "", @@ -4493,7 +4493,7 @@ "Key": "SkinInfo_SkinDesc_100055_02", "Name": { "key": "SkinInfo_SkinDesc_100055_02", - "text": "「知道了知道了,你等我换个衣服…别一直盯着我看啊!话说,你不会是为了看我换衣服,故意把饮料弄洒的吧?」" + "text": "“知道了知道了,你等我换个衣服……别一直盯着我看啊!话说,你不会是为了看我换衣服,故意把饮料弄洒的吧?”" }, "Param0": "", "Param1": "", @@ -4513,7 +4513,7 @@ "Key": "SkinInfo_SkinDesc_100082_02", "Name": { "key": "SkinInfo_SkinDesc_100082_02", - "text": "「最上面的那把?我看看…呜哇!抱…抱歉,让准尉见笑了。唔…磕到头了…好疼…」" + "text": "“最上面的那把?我看看……呜哇!抱……抱歉,让准尉见笑了。唔……磕到头了……好疼……”" }, "Param0": "", "Param1": "", @@ -4523,7 +4523,7 @@ "Key": "SkinInfo_SkinDesc_100083_02", "Name": { "key": "SkinInfo_SkinDesc_100083_02", - "text": "「好热啊…为什么非要在这种大热天出来做工程验收啊…也是难为你陪我一起了,准尉。」" + "text": "“好热啊……为什么非要在这种大热天出来做工程验收啊……也是难为你陪我一起了,准尉。”" }, "Param0": "", "Param1": "", @@ -4533,7 +4533,7 @@ "Key": "SkinInfo_SkinDesc_100084_02", "Name": { "key": "SkinInfo_SkinDesc_100084_02", - "text": "「销售的秘诀呀,就是找准了那些话语权最大,耳根子嘴软的人,针对他们的胃口来上菜。」" + "text": "“销售的秘诀呀,就是找准了那些话语权最大,耳根子嘴软的人,针对他们的胃口来上菜。”" }, "Param0": "", "Param1": "", @@ -4543,7 +4543,7 @@ "Key": "SkinInfo_SkinDesc_100085_02", "Name": { "key": "SkinInfo_SkinDesc_100085_02", - "text": "「一如既往的简单——不,这么说的话史黛拉就不会给我加工资了,对,得尽量往难了说。」" + "text": "“一如既往的简单——不,这么说的话史黛拉就不会给我加工资了,对,得尽量往难了说。”" }, "Param0": "", "Param1": "", @@ -4563,7 +4563,7 @@ "Key": "SkinInfo_SkinDesc_100087_02", "Name": { "key": "SkinInfo_SkinDesc_100087_02", - "text": "「我工作完才刚休息,你可别乱讲啊!教母平时挺好说话,但扯上正事可从不手软的!」" + "text": "“我工作完才刚休息,你可别乱讲啊!教母平时挺好说话,但扯上正事可从不手软的!”" }, "Param0": "", "Param1": "", @@ -4573,7 +4573,7 @@ "Key": "SkinInfo_SkinDesc_100088_02", "Name": { "key": "SkinInfo_SkinDesc_100088_02", - "text": "「那边有大鱼的味道,你闻到了吗?嗯?这没什么难的,要是连这点意识都没有,我早就干不下去这一行了。」" + "text": "“那边有大鱼的味道,你闻到了吗?嗯?这没什么难的,要是连这点意识都没有,我早就干不下去这一行了。”" }, "Param0": "", "Param1": "", @@ -4583,7 +4583,7 @@ "Key": "SkinInfo_SkinDesc_100089_02", "Name": { "key": "SkinInfo_SkinDesc_100089_02", - "text": "「金块!警笛!烟花!子弹!啊哈哈!全都是怪盗的舞台上应该出现的东西!不过不好意思,今天的好戏到此结束!」" + "text": "“金块!警笛!烟花!子弹!啊哈哈!全都是怪盗的舞台上应该出现的东西!不过不好意思,今天的好戏到此结束!”" }, "Param0": "", "Param1": "", @@ -4593,7 +4593,7 @@ "Key": "SkinInfo_SkinDesc_100090_02", "Name": { "key": "SkinInfo_SkinDesc_100090_02", - "text": "「我说过了吧,在我说可以之前坚决不能下床,建议你少看那些不专业的医学报道,它们会害了你,而我不会。」" + "text": "“我说过了吧,在我说可以之前坚决不能下床,建议你少看那些不专业的医学报道,它们会害了你,而我不会。”" }, "Param0": "", "Param1": "", @@ -4603,7 +4603,7 @@ "Key": "SkinInfo_SkinDesc_100091_02", "Name": { "key": "SkinInfo_SkinDesc_100091_02", - "text": "「唔…麻烦快点拍,我的脚快支撑不住了…」" + "text": "“唔……麻烦快点拍,我的脚快支撑不住了……”" }, "Param0": "", "Param1": "", @@ -4613,7 +4613,7 @@ "Key": "SkinInfo_SkinDesc_100092_02", "Name": { "key": "SkinInfo_SkinDesc_100092_02", - "text": "「哦,你来得正好,刚才她们拜托我检查一下发动机哪出了问题,我是看不出来,你帮我看看,总之让这车动起来就行。」" + "text": "“哦,你来得正好,刚才她们拜托我检查一下发动机哪出了问题,我是看不出来,你帮我看看,总之让这车动起来就行。”" }, "Param0": "", "Param1": "", @@ -4633,7 +4633,7 @@ "Key": "SkinInfo_SkinDesc_100094_02", "Name": { "key": "SkinInfo_SkinDesc_100094_02", - "text": "「先生,对…对于狙击手来说,要想处于时刻都可以进入战场的状态,准备工作是坚决不能马虎的。」" + "text": "“先生,对……对于狙击手来说,要想处于时刻都可以进入战场的状态,准备工作是坚决不能马虎的。”" }, "Param0": "", "Param1": "", @@ -4643,7 +4643,7 @@ "Key": "SkinInfo_SkinDesc_100095_02", "Name": { "key": "SkinInfo_SkinDesc_100095_02", - "text": "「哦?准尉先生也是为了那什么特别津贴才来这鬼地方的吗?什么?不是?哇,你这样岂不是显得我这人很鸡贼嘛。」" + "text": "“哦?准尉先生也是为了那什么特别津贴才来这鬼地方的吗?什么?不是?哇,你这样岂不是显得我这人很鸡贼嘛。”" }, "Param0": "", "Param1": "", @@ -4653,7 +4653,7 @@ "Key": "SkinInfo_SkinDesc_100096_02", "Name": { "key": "SkinInfo_SkinDesc_100096_02", - "text": "「我知道这个时候应该怎么说——见识到我们的厉害了吧?协约杂鱼~杂~鱼~」" + "text": "“我知道这个时候应该怎么说——见识到我们的厉害了吧?协约笨蛋——笨——蛋——”" }, "Param0": "", "Param1": "", @@ -4673,7 +4673,7 @@ "Key": "SkinInfo_SkinDesc_100098_02", "Name": { "key": "SkinInfo_SkinDesc_100098_02", - "text": "「居然是准尉…是瞅准了我落单的时候吧?我才不会喝你给的水,里面肯定下了药,只要我一喝下去,就会…」" + "text": "“居然是准尉……是瞅准了我落单的时候吧?我才不会喝你给的水,里面肯定下了药,只要我一喝下去,就会……”" }, "Param0": "", "Param1": "", @@ -4683,7 +4683,7 @@ "Key": "SkinInfo_SkinDesc_100101_02", "Name": { "key": "SkinInfo_SkinDesc_100101_02", - "text": "「这里可是伊斯塔的秘密基地~就算是露化组的资深成员我都没让他们来过这里!准尉大人应该明白伊斯塔带您来的用意吧?」" + "text": "“这里可是伊斯塔的秘密基地——就算是露化组的资深成员我都没让他们来过这里!准尉大人应该明白伊斯塔带您来的用意吧?”" }, "Param0": "", "Param1": "", @@ -4693,7 +4693,7 @@ "Key": "SkinInfo_SkinDesc_100102_02", "Name": { "key": "SkinInfo_SkinDesc_100102_02", - "text": "「我特意多带了一发,来比比谁能打掉更多的目标吧!哼哼,输的人要请吃圣代哦~「" + "text": "“我特意多带了一发,来比比谁能打掉更多的目标吧!哼哼,输的人要请吃圣代哦——“" }, "Param0": "", "Param1": "", @@ -4703,7 +4703,7 @@ "Key": "SkinInfo_SkinDesc_100103_02", "Name": { "key": "SkinInfo_SkinDesc_100103_02", - "text": "「这里是我的主场,先祖们世世代代传承下来的箭术,就让你们亲自尝尝看吧!」" + "text": "“这里是我的主场,先祖们世世代代传承下来的箭术,就让你们亲自尝尝看吧!”" }, "Param0": "", "Param1": "", @@ -4723,7 +4723,7 @@ "Key": "SkinInfo_SkinDesc_100105_02", "Name": { "key": "SkinInfo_SkinDesc_100105_02", - "text": "她是「堡执政」开业以来送单最准时的外卖员…也是餐品完好率最低的。" + "text": "她是“堡执政”开业以来送单最准时的外卖员……也是餐品完好率最低的。" }, "Param0": "", "Param1": "", @@ -4743,7 +4743,7 @@ "Key": "SkinInfo_SkinDesc_100107_02", "Name": { "key": "SkinInfo_SkinDesc_100107_02", - "text": "「你不用在意我,如果对方看到我拿着的摄像机依然选择开枪,我也会适当回敬他们的。」" + "text": "“你不用在意我,如果对方看到我拿着的摄像机依然选择开枪,我也会适当回敬他们的。”" }, "Param0": "", "Param1": "", @@ -4753,7 +4753,7 @@ "Key": "SkinInfo_SkinDesc_100108_02", "Name": { "key": "SkinInfo_SkinDesc_100108_02", - "text": "「因为向顾客宣讲动物保护,忘记了还有一大堆订单…」" + "text": "“因为向顾客宣讲动物保护,忘记了还有一大堆订单……”" }, "Param0": "", "Param1": "", @@ -18579,6 +18579,16 @@ "Param1": "", "Param2": "" }, + { + "Key": "cultivate_LevelUpOutRange", + "Name": { + "key": "cultivate_LevelUpOutRange", + "text": "角色养成不可超过指挥官等级" + }, + "Param0": "", + "Param1": "", + "Param2": "" + }, { "Key": "cultivate_BreakMaterialNotFull", "Name": { @@ -70323,7 +70333,7 @@ "Key": "skill_desc_1009410", "Name": { "key": "skill_desc_1009410", - "text": "获得【射击速度提升】【换弹时间减少Ⅰ】,持续10秒。" + "text": "获得【射击速度提升】【换弹速度提升Ⅰ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70333,7 +70343,7 @@ "Key": "skill_desc_1009420", "Name": { "key": "skill_desc_1009420", - "text": "获得【射击速度提升Ⅱ】【换弹时间减少Ⅱ】,持续10秒。" + "text": "获得【射击速度提升Ⅱ】【换弹速度提升Ⅱ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70343,7 +70353,7 @@ "Key": "skill_desc_1009430", "Name": { "key": "skill_desc_1009430", - "text": "获得【射击速度提升Ⅲ】【换弹时间减少Ⅲ】,持续10秒。" + "text": "获得【射击速度提升Ⅲ】【换弹速度提升Ⅲ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70353,7 +70363,7 @@ "Key": "skill_desc_1009440", "Name": { "key": "skill_desc_1009440", - "text": "获得【射击速度提升Ⅳ】【换弹时间减少Ⅳ】,持续10秒。" + "text": "获得【射击速度提升Ⅳ】【换弹速度提升Ⅳ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70363,7 +70373,7 @@ "Key": "skill_desc_1009450", "Name": { "key": "skill_desc_1009450", - "text": "获得【射击速度提升Ⅴ】【换弹时间减少Ⅴ】,持续10秒。" + "text": "获得【射击速度提升Ⅴ】【换弹速度提升Ⅴ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70373,7 +70383,7 @@ "Key": "skill_desc_1009411", "Name": { "key": "skill_desc_1009411", - "text": "获得【射击速度提升】【换弹时间减少Ⅰ】,持续10秒。" + "text": "获得【射击速度提升】【换弹速度提升Ⅰ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70383,7 +70393,7 @@ "Key": "skill_desc_1009421", "Name": { "key": "skill_desc_1009421", - "text": "获得【射击速度提升Ⅱ】【换弹时间减少Ⅱ】,持续10秒。" + "text": "获得【射击速度提升Ⅱ】【换弹速度提升Ⅱ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70393,7 +70403,7 @@ "Key": "skill_desc_1009431", "Name": { "key": "skill_desc_1009431", - "text": "获得【射击速度提升Ⅲ】【换弹时间减少Ⅲ】,持续10秒。" + "text": "获得【射击速度提升Ⅲ】【换弹速度提升Ⅲ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70403,7 +70413,7 @@ "Key": "skill_desc_1009441", "Name": { "key": "skill_desc_1009441", - "text": "获得【射击速度提升Ⅳ】【换弹时间减少Ⅳ】,持续10秒。" + "text": "获得【射击速度提升Ⅳ】【换弹速度提升Ⅳ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70413,7 +70423,7 @@ "Key": "skill_desc_1009451", "Name": { "key": "skill_desc_1009451", - "text": "获得【射击速度提升Ⅴ】【换弹时间减少Ⅴ】,持续10秒。" + "text": "获得【射击速度提升Ⅴ】【换弹速度提升Ⅴ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70423,7 +70433,7 @@ "Key": "skill_desc_1009412", "Name": { "key": "skill_desc_1009412", - "text": "获得【射击速度提升】【换弹时间减少Ⅰ】,持续10秒。" + "text": "获得【射击速度提升】【换弹速度提升Ⅰ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70433,7 +70443,7 @@ "Key": "skill_desc_1009422", "Name": { "key": "skill_desc_1009422", - "text": "获得【射击速度提升Ⅱ】【换弹时间减少Ⅱ】,持续10秒。" + "text": "获得【射击速度提升Ⅱ】【换弹速度提升Ⅱ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70443,7 +70453,7 @@ "Key": "skill_desc_1009432", "Name": { "key": "skill_desc_1009432", - "text": "获得【射击速度提升Ⅲ】【换弹时间减少Ⅲ】,持续10秒。" + "text": "获得【射击速度提升Ⅲ】【换弹速度提升Ⅲ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70453,7 +70463,7 @@ "Key": "skill_desc_1009442", "Name": { "key": "skill_desc_1009442", - "text": "获得【射击速度提升Ⅳ】【换弹时间减少Ⅳ】,持续10秒。" + "text": "获得【射击速度提升Ⅳ】【换弹速度提升Ⅳ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70463,7 +70473,7 @@ "Key": "skill_desc_1009452", "Name": { "key": "skill_desc_1009452", - "text": "获得【射击速度提升Ⅴ】【换弹时间减少Ⅴ】,持续10秒。" + "text": "获得【射击速度提升Ⅴ】【换弹速度提升Ⅴ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70473,7 +70483,7 @@ "Key": "skill_desc_1009413", "Name": { "key": "skill_desc_1009413", - "text": "获得【射击速度提升】【换弹时间减少Ⅰ】,持续10秒。" + "text": "获得【射击速度提升】【换弹速度提升Ⅰ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70483,7 +70493,7 @@ "Key": "skill_desc_1009423", "Name": { "key": "skill_desc_1009423", - "text": "获得【射击速度提升Ⅱ】【换弹时间减少Ⅱ】,持续10秒。" + "text": "获得【射击速度提升Ⅱ】【换弹速度提升Ⅱ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70493,7 +70503,7 @@ "Key": "skill_desc_1009433", "Name": { "key": "skill_desc_1009433", - "text": "获得【射击速度提升Ⅲ】【换弹时间减少Ⅲ】,持续10秒。" + "text": "获得【射击速度提升Ⅲ】【换弹速度提升Ⅲ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70503,7 +70513,7 @@ "Key": "skill_desc_1009443", "Name": { "key": "skill_desc_1009443", - "text": "获得【射击速度提升Ⅳ】【换弹时间减少Ⅳ】,持续10秒。" + "text": "获得【射击速度提升Ⅳ】【换弹速度提升Ⅳ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70513,7 +70523,7 @@ "Key": "skill_desc_1009453", "Name": { "key": "skill_desc_1009453", - "text": "获得【射击速度提升Ⅴ】【换弹时间减少Ⅴ】,持续10秒。" + "text": "获得【射击速度提升Ⅴ】【换弹速度提升Ⅴ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70523,7 +70533,7 @@ "Key": "skill_desc_1009414", "Name": { "key": "skill_desc_1009414", - "text": "获得【射击速度提升】【换弹时间减少Ⅰ】,持续10秒。" + "text": "获得【射击速度提升】【换弹速度提升Ⅰ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70533,7 +70543,7 @@ "Key": "skill_desc_1009424", "Name": { "key": "skill_desc_1009424", - "text": "获得【射击速度提升Ⅱ】【换弹时间减少Ⅱ】,持续10秒。" + "text": "获得【射击速度提升Ⅱ】【换弹速度提升Ⅱ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70543,7 +70553,7 @@ "Key": "skill_desc_1009434", "Name": { "key": "skill_desc_1009434", - "text": "获得【射击速度提升Ⅲ】【换弹时间减少Ⅲ】,持续10秒。" + "text": "获得【射击速度提升Ⅲ】【换弹速度提升Ⅲ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70553,7 +70563,7 @@ "Key": "skill_desc_1009444", "Name": { "key": "skill_desc_1009444", - "text": "获得【射击速度提升Ⅳ】【换弹时间减少Ⅳ】,持续10秒。" + "text": "获得【射击速度提升Ⅳ】【换弹速度提升Ⅳ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70563,7 +70573,7 @@ "Key": "skill_desc_1009454", "Name": { "key": "skill_desc_1009454", - "text": "获得【射击速度提升Ⅴ】【换弹时间减少Ⅴ】,持续10秒。" + "text": "获得【射击速度提升Ⅴ】【换弹速度提升Ⅴ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -70573,7 +70583,7 @@ "Key": "skill_desc_1009510", "Name": { "key": "skill_desc_1009510", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅰ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅰ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009510_FloatParams_0_0", "Param1": "BuffConfig_ID_1009510_FloatParams_1_1", @@ -70583,7 +70593,7 @@ "Key": "skill_desc_1009520", "Name": { "key": "skill_desc_1009520", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅱ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅱ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009520_FloatParams_0_0", "Param1": "BuffConfig_ID_1009520_FloatParams_1_1", @@ -70593,7 +70603,7 @@ "Key": "skill_desc_1009530", "Name": { "key": "skill_desc_1009530", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅲ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅲ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009530_FloatParams_0_0", "Param1": "BuffConfig_ID_1009530_FloatParams_1_1", @@ -70603,7 +70613,7 @@ "Key": "skill_desc_1009540", "Name": { "key": "skill_desc_1009540", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅳ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅳ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009540_FloatParams_0_0", "Param1": "BuffConfig_ID_1009540_FloatParams_1_1", @@ -70613,7 +70623,7 @@ "Key": "skill_desc_1009550", "Name": { "key": "skill_desc_1009550", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅴ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅴ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009550_FloatParams_0_0", "Param1": "BuffConfig_ID_1009550_FloatParams_1_1", @@ -70623,7 +70633,7 @@ "Key": "skill_desc_1009511", "Name": { "key": "skill_desc_1009511", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅰ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅰ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009510_FloatParams_0_0", "Param1": "BuffConfig_ID_1009510_FloatParams_1_1", @@ -70633,7 +70643,7 @@ "Key": "skill_desc_1009521", "Name": { "key": "skill_desc_1009521", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅱ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅱ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009520_FloatParams_0_0", "Param1": "BuffConfig_ID_1009520_FloatParams_1_1", @@ -70643,7 +70653,7 @@ "Key": "skill_desc_1009531", "Name": { "key": "skill_desc_1009531", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅲ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅲ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009530_FloatParams_0_0", "Param1": "BuffConfig_ID_1009530_FloatParams_1_1", @@ -70653,7 +70663,7 @@ "Key": "skill_desc_1009541", "Name": { "key": "skill_desc_1009541", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅳ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅳ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009540_FloatParams_0_0", "Param1": "BuffConfig_ID_1009540_FloatParams_1_1", @@ -70663,7 +70673,7 @@ "Key": "skill_desc_1009551", "Name": { "key": "skill_desc_1009551", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅴ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅴ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009550_FloatParams_0_0", "Param1": "BuffConfig_ID_1009550_FloatParams_1_1", @@ -70673,7 +70683,7 @@ "Key": "skill_desc_1009512", "Name": { "key": "skill_desc_1009512", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅰ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅰ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009510_FloatParams_0_0", "Param1": "BuffConfig_ID_1009510_FloatParams_1_1", @@ -70683,7 +70693,7 @@ "Key": "skill_desc_1009522", "Name": { "key": "skill_desc_1009522", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅱ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅱ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009520_FloatParams_0_0", "Param1": "BuffConfig_ID_1009520_FloatParams_1_1", @@ -70693,7 +70703,7 @@ "Key": "skill_desc_1009532", "Name": { "key": "skill_desc_1009532", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅲ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅲ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009530_FloatParams_0_0", "Param1": "BuffConfig_ID_1009530_FloatParams_1_1", @@ -70703,7 +70713,7 @@ "Key": "skill_desc_1009542", "Name": { "key": "skill_desc_1009542", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅳ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅳ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009540_FloatParams_0_0", "Param1": "BuffConfig_ID_1009540_FloatParams_1_1", @@ -70713,7 +70723,7 @@ "Key": "skill_desc_1009552", "Name": { "key": "skill_desc_1009552", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅴ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅴ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009550_FloatParams_0_0", "Param1": "BuffConfig_ID_1009550_FloatParams_1_1", @@ -70723,7 +70733,7 @@ "Key": "skill_desc_1009513", "Name": { "key": "skill_desc_1009513", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅰ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅰ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009510_FloatParams_0_0", "Param1": "BuffConfig_ID_1009510_FloatParams_1_1", @@ -70733,7 +70743,7 @@ "Key": "skill_desc_1009523", "Name": { "key": "skill_desc_1009523", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅱ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅱ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009520_FloatParams_0_0", "Param1": "BuffConfig_ID_1009520_FloatParams_1_1", @@ -70743,7 +70753,7 @@ "Key": "skill_desc_1009533", "Name": { "key": "skill_desc_1009533", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅲ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅲ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009530_FloatParams_0_0", "Param1": "BuffConfig_ID_1009530_FloatParams_1_1", @@ -70753,7 +70763,7 @@ "Key": "skill_desc_1009543", "Name": { "key": "skill_desc_1009543", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅳ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅳ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009540_FloatParams_0_0", "Param1": "BuffConfig_ID_1009540_FloatParams_1_1", @@ -70763,7 +70773,7 @@ "Key": "skill_desc_1009553", "Name": { "key": "skill_desc_1009553", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅴ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅴ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009550_FloatParams_0_0", "Param1": "BuffConfig_ID_1009550_FloatParams_1_1", @@ -70773,7 +70783,7 @@ "Key": "skill_desc_1009514", "Name": { "key": "skill_desc_1009514", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅰ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅰ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009510_FloatParams_0_0", "Param1": "BuffConfig_ID_1009510_FloatParams_1_1", @@ -70783,7 +70793,7 @@ "Key": "skill_desc_1009524", "Name": { "key": "skill_desc_1009524", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅱ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅱ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009520_FloatParams_0_0", "Param1": "BuffConfig_ID_1009520_FloatParams_1_1", @@ -70793,7 +70803,7 @@ "Key": "skill_desc_1009534", "Name": { "key": "skill_desc_1009534", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅲ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅲ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009530_FloatParams_0_0", "Param1": "BuffConfig_ID_1009530_FloatParams_1_1", @@ -70803,7 +70813,7 @@ "Key": "skill_desc_1009544", "Name": { "key": "skill_desc_1009544", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅳ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅳ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009540_FloatParams_0_0", "Param1": "BuffConfig_ID_1009540_FloatParams_1_1", @@ -70813,7 +70823,7 @@ "Key": "skill_desc_1009554", "Name": { "key": "skill_desc_1009554", - "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹时间减少Ⅴ】,持续10秒。" + "text": "为目标及其1格范围内所有我方单位恢复曼普雷蒂[p0]+[p1]单发伤害的护甲值。使其中的侦察单位获得【换弹速度提升Ⅴ】,持续10秒。" }, "Param0": "BuffConfig_ID_1009550_FloatParams_0_0", "Param1": "BuffConfig_ID_1009550_FloatParams_1_1", @@ -74753,7 +74763,7 @@ "Key": "skill_desc_4001310", "Name": { "key": "skill_desc_4001310", - "text": "对目标位置连续进行3次攻击,每次攻击造成[p0]+[p1]点伤害" + "text": "对目标格连续进行3次攻击,每次造成载具[p0]+[p1]单发伤害的总伤害。" }, "Param0": "BuffConfig_ID_4001310_FloatParams_0_0", "Param1": "BuffConfig_ID_4001310_FloatParams_1_1", @@ -74763,7 +74773,7 @@ "Key": "skill_desc_4001320", "Name": { "key": "skill_desc_4001320", - "text": "对目标位置连续进行3次攻击,每次攻击造成[p0]+[p1]点伤害" + "text": "对目标格连续进行3次攻击,每次造成载具[p0]+[p1]单发伤害的总伤害。" }, "Param0": "BuffConfig_ID_4001320_FloatParams_0_0", "Param1": "BuffConfig_ID_4001320_FloatParams_1_1", @@ -74773,7 +74783,7 @@ "Key": "skill_desc_4001330", "Name": { "key": "skill_desc_4001330", - "text": "对目标位置连续进行3次攻击,每次攻击造成[p0]+[p1]点伤害" + "text": "对目标格连续进行3次攻击,每次造成载具[p0]+[p1]单发伤害的总伤害。" }, "Param0": "BuffConfig_ID_4001330_FloatParams_0_0", "Param1": "BuffConfig_ID_4001330_FloatParams_1_1", @@ -74783,7 +74793,7 @@ "Key": "skill_desc_4001410", "Name": { "key": "skill_desc_4001410", - "text": "自身获得【换弹时间减少】,在此期间周围1距离的友军伤害提升[p0]" + "text": "获得【换弹速度提升Ⅰ】,自身1格范围内的所有友方单位伤害提升[p0],持续10秒。" }, "Param0": "BuffConfig_ID_5001410_FloatParams_0_1", "Param1": "", @@ -74793,7 +74803,7 @@ "Key": "skill_desc_4001420", "Name": { "key": "skill_desc_4001420", - "text": "自身获得【换弹时间减少】,在此期间周围1距离的友军伤害提升[p0]" + "text": "获得【换弹速度提升Ⅱ】,自身1格范围内的所有友方单位伤害提升[p0],持续10秒。" }, "Param0": "BuffConfig_ID_5001420_FloatParams_0_1", "Param1": "", @@ -74803,7 +74813,7 @@ "Key": "skill_desc_4001430", "Name": { "key": "skill_desc_4001430", - "text": "自身获得【换弹时间减少】,在此期间周围1距离的友军伤害提升[p0]" + "text": "获得【换弹速度提升Ⅲ】,自身1格范围内的所有友方单位伤害提升[p0],持续10秒。" }, "Param0": "BuffConfig_ID_5001430_FloatParams_0_1", "Param1": "", @@ -74813,7 +74823,7 @@ "Key": "skill_desc_4001510", "Name": { "key": "skill_desc_4001510", - "text": "自身获得【移动速度提升Ⅰ】【伪装】" + "text": "获得【移动速度提升Ⅰ】【伪装】,持续10秒。" }, "Param0": "", "Param1": "", @@ -74823,7 +74833,7 @@ "Key": "skill_desc_4001520", "Name": { "key": "skill_desc_4001520", - "text": "自身获得【移动速度提升Ⅱ】【伪装】" + "text": "获得【移动速度提升Ⅱ】【伪装】,持续10秒。" }, "Param0": "", "Param1": "", @@ -74833,7 +74843,7 @@ "Key": "skill_desc_4001530", "Name": { "key": "skill_desc_4001530", - "text": "自身获得【移动速度提升Ⅲ】【伪装】" + "text": "获得【移动速度提升Ⅲ】【伪装】,持续10秒。" }, "Param0": "", "Param1": "", @@ -74843,7 +74853,7 @@ "Key": "PassiveSkill_200011", "Name": { "key": "PassiveSkill_200011", - "text": "奇袭Lv1" + "text": "奇袭Ⅰ" }, "Param0": "", "Param1": "", @@ -74853,7 +74863,7 @@ "Key": "PassiveSkill_200012", "Name": { "key": "PassiveSkill_200012", - "text": "奇袭Lv2" + "text": "奇袭Ⅱ" }, "Param0": "", "Param1": "", @@ -74863,7 +74873,7 @@ "Key": "PassiveSkill_200013", "Name": { "key": "PassiveSkill_200013", - "text": "奇袭Lv3" + "text": "奇袭Ⅲ" }, "Param0": "", "Param1": "", @@ -74873,7 +74883,7 @@ "Key": "PassiveSkill_200014", "Name": { "key": "PassiveSkill_200014", - "text": "奇袭Lv4" + "text": "奇袭Ⅳ" }, "Param0": "", "Param1": "", @@ -74883,7 +74893,7 @@ "Key": "PassiveSkill_200015", "Name": { "key": "PassiveSkill_200015", - "text": "奇袭Lv5" + "text": "奇袭Ⅴ" }, "Param0": "", "Param1": "", @@ -74893,7 +74903,7 @@ "Key": "PassiveSkill_200016", "Name": { "key": "PassiveSkill_200016", - "text": "奇袭Lv6" + "text": "奇袭Ⅵ" }, "Param0": "", "Param1": "", @@ -74903,7 +74913,7 @@ "Key": "PassiveSkill_200021", "Name": { "key": "PassiveSkill_200021", - "text": "紧急补充Lv1" + "text": "紧急补充Ⅰ" }, "Param0": "", "Param1": "", @@ -74913,7 +74923,7 @@ "Key": "PassiveSkill_200022", "Name": { "key": "PassiveSkill_200022", - "text": "紧急补充Lv2" + "text": "紧急补充Ⅱ" }, "Param0": "", "Param1": "", @@ -74923,7 +74933,7 @@ "Key": "PassiveSkill_200023", "Name": { "key": "PassiveSkill_200023", - "text": "紧急补充Lv3" + "text": "紧急补充Ⅲ" }, "Param0": "", "Param1": "", @@ -74933,7 +74943,7 @@ "Key": "PassiveSkill_200024", "Name": { "key": "PassiveSkill_200024", - "text": "紧急补充Lv4" + "text": "紧急补充Ⅳ" }, "Param0": "", "Param1": "", @@ -74943,7 +74953,7 @@ "Key": "PassiveSkill_200025", "Name": { "key": "PassiveSkill_200025", - "text": "紧急补充Lv5" + "text": "紧急补充Ⅴ" }, "Param0": "", "Param1": "", @@ -74953,7 +74963,7 @@ "Key": "PassiveSkill_200026", "Name": { "key": "PassiveSkill_200026", - "text": "紧急补充Lv6" + "text": "紧急补充Ⅵ" }, "Param0": "", "Param1": "", @@ -74963,7 +74973,7 @@ "Key": "PassiveSkill_200031", "Name": { "key": "PassiveSkill_200031", - "text": "杀戮之心Lv1" + "text": "嗜虐之心Ⅰ" }, "Param0": "", "Param1": "", @@ -74973,7 +74983,7 @@ "Key": "PassiveSkill_200032", "Name": { "key": "PassiveSkill_200032", - "text": "杀戮之心Lv2" + "text": "嗜虐之心Ⅱ" }, "Param0": "", "Param1": "", @@ -74983,7 +74993,7 @@ "Key": "PassiveSkill_200033", "Name": { "key": "PassiveSkill_200033", - "text": "杀戮之心Lv3" + "text": "嗜虐之心Ⅲ" }, "Param0": "", "Param1": "", @@ -74993,7 +75003,7 @@ "Key": "PassiveSkill_200034", "Name": { "key": "PassiveSkill_200034", - "text": "杀戮之心Lv4" + "text": "嗜虐之心Ⅳ" }, "Param0": "", "Param1": "", @@ -75003,7 +75013,7 @@ "Key": "PassiveSkill_200035", "Name": { "key": "PassiveSkill_200035", - "text": "杀戮之心Lv5" + "text": "嗜虐之心Ⅴ" }, "Param0": "", "Param1": "", @@ -75013,7 +75023,7 @@ "Key": "PassiveSkill_200036", "Name": { "key": "PassiveSkill_200036", - "text": "杀戮之心Lv6" + "text": "嗜虐之心Ⅵ" }, "Param0": "", "Param1": "", @@ -75023,7 +75033,7 @@ "Key": "PassiveSkill_200041", "Name": { "key": "PassiveSkill_200041", - "text": "料敌于先Lv1" + "text": "料敌于先Ⅰ" }, "Param0": "", "Param1": "", @@ -75033,7 +75043,7 @@ "Key": "PassiveSkill_200042", "Name": { "key": "PassiveSkill_200042", - "text": "料敌于先Lv2" + "text": "料敌于先Ⅱ" }, "Param0": "", "Param1": "", @@ -75043,7 +75053,7 @@ "Key": "PassiveSkill_200043", "Name": { "key": "PassiveSkill_200043", - "text": "料敌于先Lv3" + "text": "料敌于先Ⅲ" }, "Param0": "", "Param1": "", @@ -75053,7 +75063,7 @@ "Key": "PassiveSkill_200044", "Name": { "key": "PassiveSkill_200044", - "text": "料敌于先Lv4" + "text": "料敌于先Ⅳ" }, "Param0": "", "Param1": "", @@ -75063,7 +75073,7 @@ "Key": "PassiveSkill_200045", "Name": { "key": "PassiveSkill_200045", - "text": "料敌于先Lv5" + "text": "料敌于先Ⅴ" }, "Param0": "", "Param1": "", @@ -75073,7 +75083,7 @@ "Key": "PassiveSkill_200046", "Name": { "key": "PassiveSkill_200046", - "text": "料敌于先Lv6" + "text": "料敌于先Ⅵ" }, "Param0": "", "Param1": "", @@ -75083,7 +75093,7 @@ "Key": "PassiveSkill_200051", "Name": { "key": "PassiveSkill_200051", - "text": "融入自然Lv1" + "text": "融入自然Ⅰ" }, "Param0": "", "Param1": "", @@ -75093,7 +75103,7 @@ "Key": "PassiveSkill_200052", "Name": { "key": "PassiveSkill_200052", - "text": "融入自然Lv2" + "text": "融入自然Ⅱ" }, "Param0": "", "Param1": "", @@ -75103,7 +75113,7 @@ "Key": "PassiveSkill_200053", "Name": { "key": "PassiveSkill_200053", - "text": "融入自然Lv3" + "text": "融入自然Ⅲ" }, "Param0": "", "Param1": "", @@ -75113,7 +75123,7 @@ "Key": "PassiveSkill_200054", "Name": { "key": "PassiveSkill_200054", - "text": "融入自然Lv4" + "text": "融入自然Ⅳ" }, "Param0": "", "Param1": "", @@ -75123,7 +75133,7 @@ "Key": "PassiveSkill_200055", "Name": { "key": "PassiveSkill_200055", - "text": "融入自然Lv5" + "text": "融入自然Ⅴ" }, "Param0": "", "Param1": "", @@ -75133,7 +75143,7 @@ "Key": "PassiveSkill_200056", "Name": { "key": "PassiveSkill_200056", - "text": "融入自然Lv6" + "text": "融入自然Ⅵ" }, "Param0": "", "Param1": "", @@ -75143,7 +75153,7 @@ "Key": "PassiveSkill_200061", "Name": { "key": "PassiveSkill_200061", - "text": "骑士信仰Lv1" + "text": "骑士信仰Ⅰ" }, "Param0": "", "Param1": "", @@ -75153,7 +75163,7 @@ "Key": "PassiveSkill_200062", "Name": { "key": "PassiveSkill_200062", - "text": "骑士信仰Lv2" + "text": "骑士信仰Ⅱ" }, "Param0": "", "Param1": "", @@ -75163,7 +75173,7 @@ "Key": "PassiveSkill_200063", "Name": { "key": "PassiveSkill_200063", - "text": "骑士信仰Lv3" + "text": "骑士信仰Ⅲ" }, "Param0": "", "Param1": "", @@ -75173,7 +75183,7 @@ "Key": "PassiveSkill_200064", "Name": { "key": "PassiveSkill_200064", - "text": "骑士信仰Lv4" + "text": "骑士信仰Ⅳ" }, "Param0": "", "Param1": "", @@ -75183,7 +75193,7 @@ "Key": "PassiveSkill_200065", "Name": { "key": "PassiveSkill_200065", - "text": "骑士信仰Lv5" + "text": "骑士信仰Ⅴ" }, "Param0": "", "Param1": "", @@ -75193,7 +75203,7 @@ "Key": "PassiveSkill_200066", "Name": { "key": "PassiveSkill_200066", - "text": "骑士信仰Lv6" + "text": "骑士信仰Ⅵ" }, "Param0": "", "Param1": "", @@ -75203,7 +75213,7 @@ "Key": "PassiveSkill_200071", "Name": { "key": "PassiveSkill_200071", - "text": "弱点洞察Lv1" + "text": "弱点洞察Ⅰ" }, "Param0": "", "Param1": "", @@ -75213,7 +75223,7 @@ "Key": "PassiveSkill_200072", "Name": { "key": "PassiveSkill_200072", - "text": "弱点洞察Lv2" + "text": "弱点洞察Ⅱ" }, "Param0": "", "Param1": "", @@ -75223,7 +75233,7 @@ "Key": "PassiveSkill_200073", "Name": { "key": "PassiveSkill_200073", - "text": "弱点洞察Lv3" + "text": "弱点洞察Ⅲ" }, "Param0": "", "Param1": "", @@ -75233,7 +75243,7 @@ "Key": "PassiveSkill_200074", "Name": { "key": "PassiveSkill_200074", - "text": "弱点洞察Lv4" + "text": "弱点洞察Ⅳ" }, "Param0": "", "Param1": "", @@ -75243,7 +75253,7 @@ "Key": "PassiveSkill_200075", "Name": { "key": "PassiveSkill_200075", - "text": "弱点洞察Lv5" + "text": "弱点洞察Ⅴ" }, "Param0": "", "Param1": "", @@ -75253,7 +75263,7 @@ "Key": "PassiveSkill_200076", "Name": { "key": "PassiveSkill_200076", - "text": "弱点洞察Lv6" + "text": "弱点洞察Ⅵ" }, "Param0": "", "Param1": "", @@ -75263,7 +75273,7 @@ "Key": "PassiveSkill_200081", "Name": { "key": "PassiveSkill_200081", - "text": "致命抢攻Lv1" + "text": "致命抢攻Ⅰ" }, "Param0": "", "Param1": "", @@ -75273,7 +75283,7 @@ "Key": "PassiveSkill_200082", "Name": { "key": "PassiveSkill_200082", - "text": "致命抢攻Lv2" + "text": "致命抢攻Ⅱ" }, "Param0": "", "Param1": "", @@ -75283,7 +75293,7 @@ "Key": "PassiveSkill_200083", "Name": { "key": "PassiveSkill_200083", - "text": "致命抢攻Lv3" + "text": "致命抢攻Ⅲ" }, "Param0": "", "Param1": "", @@ -75293,7 +75303,7 @@ "Key": "PassiveSkill_200084", "Name": { "key": "PassiveSkill_200084", - "text": "致命抢攻Lv4" + "text": "致命抢攻Ⅳ" }, "Param0": "", "Param1": "", @@ -75303,7 +75313,7 @@ "Key": "PassiveSkill_200085", "Name": { "key": "PassiveSkill_200085", - "text": "致命抢攻Lv5" + "text": "致命抢攻Ⅴ" }, "Param0": "", "Param1": "", @@ -75313,7 +75323,7 @@ "Key": "PassiveSkill_200086", "Name": { "key": "PassiveSkill_200086", - "text": "致命抢攻Lv6" + "text": "致命抢攻Ⅵ" }, "Param0": "", "Param1": "", @@ -75323,7 +75333,7 @@ "Key": "PassiveSkill_200091", "Name": { "key": "PassiveSkill_200091", - "text": "爆发Lv1" + "text": "爆发Ⅰ" }, "Param0": "", "Param1": "", @@ -75333,7 +75343,7 @@ "Key": "PassiveSkill_200092", "Name": { "key": "PassiveSkill_200092", - "text": "爆发Lv2" + "text": "爆发Ⅱ" }, "Param0": "", "Param1": "", @@ -75343,7 +75353,7 @@ "Key": "PassiveSkill_200093", "Name": { "key": "PassiveSkill_200093", - "text": "爆发Lv3" + "text": "爆发Ⅲ" }, "Param0": "", "Param1": "", @@ -75353,7 +75363,7 @@ "Key": "PassiveSkill_200094", "Name": { "key": "PassiveSkill_200094", - "text": "爆发Lv4" + "text": "爆发Ⅳ" }, "Param0": "", "Param1": "", @@ -75363,7 +75373,7 @@ "Key": "PassiveSkill_200095", "Name": { "key": "PassiveSkill_200095", - "text": "爆发Lv5" + "text": "爆发Ⅴ" }, "Param0": "", "Param1": "", @@ -75373,7 +75383,7 @@ "Key": "PassiveSkill_200096", "Name": { "key": "PassiveSkill_200096", - "text": "爆发Lv6" + "text": "爆发Ⅵ" }, "Param0": "", "Param1": "", @@ -75383,7 +75393,7 @@ "Key": "PassiveSkill_200101", "Name": { "key": "PassiveSkill_200101", - "text": "秘术治疗Lv1" + "text": "秘术治疗Ⅰ" }, "Param0": "", "Param1": "", @@ -75393,7 +75403,7 @@ "Key": "PassiveSkill_200102", "Name": { "key": "PassiveSkill_200102", - "text": "秘术治疗Lv2" + "text": "秘术治疗Ⅱ" }, "Param0": "", "Param1": "", @@ -75403,7 +75413,7 @@ "Key": "PassiveSkill_200103", "Name": { "key": "PassiveSkill_200103", - "text": "秘术治疗Lv3" + "text": "秘术治疗Ⅲ" }, "Param0": "", "Param1": "", @@ -75413,7 +75423,7 @@ "Key": "PassiveSkill_200104", "Name": { "key": "PassiveSkill_200104", - "text": "秘术治疗Lv4" + "text": "秘术治疗Ⅳ" }, "Param0": "", "Param1": "", @@ -75423,7 +75433,7 @@ "Key": "PassiveSkill_200105", "Name": { "key": "PassiveSkill_200105", - "text": "秘术治疗Lv5" + "text": "秘术治疗Ⅴ" }, "Param0": "", "Param1": "", @@ -75433,7 +75443,7 @@ "Key": "PassiveSkill_200106", "Name": { "key": "PassiveSkill_200106", - "text": "秘术治疗Lv6" + "text": "秘术治疗Ⅵ" }, "Param0": "", "Param1": "", @@ -75443,7 +75453,7 @@ "Key": "PassiveSkill_200111", "Name": { "key": "PassiveSkill_200111", - "text": "母性之光Lv1" + "text": "母性之光Ⅰ" }, "Param0": "", "Param1": "", @@ -75453,7 +75463,7 @@ "Key": "PassiveSkill_200112", "Name": { "key": "PassiveSkill_200112", - "text": "母性之光Lv2" + "text": "母性之光Ⅱ" }, "Param0": "", "Param1": "", @@ -75463,7 +75473,7 @@ "Key": "PassiveSkill_200113", "Name": { "key": "PassiveSkill_200113", - "text": "母性之光Lv3" + "text": "母性之光Ⅲ" }, "Param0": "", "Param1": "", @@ -75473,7 +75483,7 @@ "Key": "PassiveSkill_200114", "Name": { "key": "PassiveSkill_200114", - "text": "母性之光Lv4" + "text": "母性之光Ⅳ" }, "Param0": "", "Param1": "", @@ -75483,7 +75493,7 @@ "Key": "PassiveSkill_200115", "Name": { "key": "PassiveSkill_200115", - "text": "母性之光Lv5" + "text": "母性之光Ⅴ" }, "Param0": "", "Param1": "", @@ -75493,7 +75503,7 @@ "Key": "PassiveSkill_200116", "Name": { "key": "PassiveSkill_200116", - "text": "母性之光Lv6" + "text": "母性之光Ⅵ" }, "Param0": "", "Param1": "", @@ -75503,7 +75513,7 @@ "Key": "PassiveSkill_200121", "Name": { "key": "PassiveSkill_200121", - "text": "大将之风Lv1" + "text": "大将之风Ⅰ" }, "Param0": "", "Param1": "", @@ -75513,7 +75523,7 @@ "Key": "PassiveSkill_200122", "Name": { "key": "PassiveSkill_200122", - "text": "大将之风Lv2" + "text": "大将之风Ⅱ" }, "Param0": "", "Param1": "", @@ -75523,7 +75533,7 @@ "Key": "PassiveSkill_200123", "Name": { "key": "PassiveSkill_200123", - "text": "大将之风Lv3" + "text": "大将之风Ⅲ" }, "Param0": "", "Param1": "", @@ -75533,7 +75543,7 @@ "Key": "PassiveSkill_200124", "Name": { "key": "PassiveSkill_200124", - "text": "大将之风Lv4" + "text": "大将之风Ⅳ" }, "Param0": "", "Param1": "", @@ -75543,7 +75553,7 @@ "Key": "PassiveSkill_200125", "Name": { "key": "PassiveSkill_200125", - "text": "大将之风Lv5" + "text": "大将之风Ⅴ" }, "Param0": "", "Param1": "", @@ -75553,7 +75563,7 @@ "Key": "PassiveSkill_200126", "Name": { "key": "PassiveSkill_200126", - "text": "大将之风Lv6" + "text": "大将之风Ⅵ" }, "Param0": "", "Param1": "", @@ -75563,7 +75573,7 @@ "Key": "PassiveSkill_200131", "Name": { "key": "PassiveSkill_200131", - "text": "超大套餐Lv1" + "text": "超大套餐Ⅰ" }, "Param0": "", "Param1": "", @@ -75573,7 +75583,7 @@ "Key": "PassiveSkill_200132", "Name": { "key": "PassiveSkill_200132", - "text": "超大套餐Lv2" + "text": "超大套餐Ⅱ" }, "Param0": "", "Param1": "", @@ -75583,7 +75593,7 @@ "Key": "PassiveSkill_200133", "Name": { "key": "PassiveSkill_200133", - "text": "超大套餐Lv3" + "text": "超大套餐Ⅲ" }, "Param0": "", "Param1": "", @@ -75593,7 +75603,7 @@ "Key": "PassiveSkill_200134", "Name": { "key": "PassiveSkill_200134", - "text": "超大套餐Lv4" + "text": "超大套餐Ⅳ" }, "Param0": "", "Param1": "", @@ -75603,7 +75613,7 @@ "Key": "PassiveSkill_200135", "Name": { "key": "PassiveSkill_200135", - "text": "超大套餐Lv5" + "text": "超大套餐Ⅴ" }, "Param0": "", "Param1": "", @@ -75613,7 +75623,7 @@ "Key": "PassiveSkill_200136", "Name": { "key": "PassiveSkill_200136", - "text": "超大套餐Lv6" + "text": "超大套餐Ⅵ" }, "Param0": "", "Param1": "", @@ -75623,7 +75633,7 @@ "Key": "PassiveSkill_200141", "Name": { "key": "PassiveSkill_200141", - "text": "重装高达Lv1" + "text": "重装科斯莫Ⅰ" }, "Param0": "", "Param1": "", @@ -75633,7 +75643,7 @@ "Key": "PassiveSkill_200142", "Name": { "key": "PassiveSkill_200142", - "text": "重装高达Lv2" + "text": "重装科斯莫Ⅱ" }, "Param0": "", "Param1": "", @@ -75643,7 +75653,7 @@ "Key": "PassiveSkill_200143", "Name": { "key": "PassiveSkill_200143", - "text": "重装高达Lv3" + "text": "重装科斯莫Ⅲ" }, "Param0": "", "Param1": "", @@ -75653,7 +75663,7 @@ "Key": "PassiveSkill_200144", "Name": { "key": "PassiveSkill_200144", - "text": "重装高达Lv4" + "text": "重装科斯莫Ⅳ" }, "Param0": "", "Param1": "", @@ -75663,7 +75673,7 @@ "Key": "PassiveSkill_200145", "Name": { "key": "PassiveSkill_200145", - "text": "重装高达Lv5" + "text": "重装科斯莫Ⅴ" }, "Param0": "", "Param1": "", @@ -75673,7 +75683,7 @@ "Key": "PassiveSkill_200146", "Name": { "key": "PassiveSkill_200146", - "text": "重装高达Lv6" + "text": "重装科斯莫Ⅵ" }, "Param0": "", "Param1": "", @@ -75683,7 +75693,7 @@ "Key": "PassiveSkill_200151", "Name": { "key": "PassiveSkill_200151", - "text": "致命知识Lv1" + "text": "致命知识Ⅰ" }, "Param0": "", "Param1": "", @@ -75693,7 +75703,7 @@ "Key": "PassiveSkill_200152", "Name": { "key": "PassiveSkill_200152", - "text": "致命知识Lv2" + "text": "致命知识Ⅱ" }, "Param0": "", "Param1": "", @@ -75703,7 +75713,7 @@ "Key": "PassiveSkill_200153", "Name": { "key": "PassiveSkill_200153", - "text": "致命知识Lv3" + "text": "致命知识Ⅲ" }, "Param0": "", "Param1": "", @@ -75713,7 +75723,7 @@ "Key": "PassiveSkill_200154", "Name": { "key": "PassiveSkill_200154", - "text": "致命知识Lv4" + "text": "致命知识Ⅳ" }, "Param0": "", "Param1": "", @@ -75723,7 +75733,7 @@ "Key": "PassiveSkill_200155", "Name": { "key": "PassiveSkill_200155", - "text": "致命知识Lv5" + "text": "致命知识Ⅴ" }, "Param0": "", "Param1": "", @@ -75733,7 +75743,7 @@ "Key": "PassiveSkill_200156", "Name": { "key": "PassiveSkill_200156", - "text": "致命知识Lv6" + "text": "致命知识Ⅵ" }, "Param0": "", "Param1": "", @@ -75743,7 +75753,7 @@ "Key": "PassiveSkill_200161", "Name": { "key": "PassiveSkill_200161", - "text": "刻板治疗Lv1" + "text": "刻板治疗Ⅰ" }, "Param0": "", "Param1": "", @@ -75753,7 +75763,7 @@ "Key": "PassiveSkill_200162", "Name": { "key": "PassiveSkill_200162", - "text": "刻板治疗Lv2" + "text": "刻板治疗Ⅱ" }, "Param0": "", "Param1": "", @@ -75763,7 +75773,7 @@ "Key": "PassiveSkill_200163", "Name": { "key": "PassiveSkill_200163", - "text": "刻板治疗Lv3" + "text": "刻板治疗Ⅲ" }, "Param0": "", "Param1": "", @@ -75773,7 +75783,7 @@ "Key": "PassiveSkill_200164", "Name": { "key": "PassiveSkill_200164", - "text": "刻板治疗Lv4" + "text": "刻板治疗Ⅳ" }, "Param0": "", "Param1": "", @@ -75783,7 +75793,7 @@ "Key": "PassiveSkill_200165", "Name": { "key": "PassiveSkill_200165", - "text": "刻板治疗Lv5" + "text": "刻板治疗Ⅴ" }, "Param0": "", "Param1": "", @@ -76103,7 +76113,7 @@ "Key": "PassiveSkill_200221", "Name": { "key": "PassiveSkill_200221", - "text": "内在母性Lv1" + "text": "内在母性Ⅰ" }, "Param0": "", "Param1": "", @@ -76113,7 +76123,7 @@ "Key": "PassiveSkill_200222", "Name": { "key": "PassiveSkill_200222", - "text": "内在母性Lv2" + "text": "内在母性Ⅱ" }, "Param0": "", "Param1": "", @@ -76123,7 +76133,7 @@ "Key": "PassiveSkill_200223", "Name": { "key": "PassiveSkill_200223", - "text": "内在母性Lv3" + "text": "内在母性Ⅲ" }, "Param0": "", "Param1": "", @@ -76133,7 +76143,7 @@ "Key": "PassiveSkill_200224", "Name": { "key": "PassiveSkill_200224", - "text": "内在母性Lv4" + "text": "内在母性Ⅳ" }, "Param0": "", "Param1": "", @@ -76143,7 +76153,7 @@ "Key": "PassiveSkill_200225", "Name": { "key": "PassiveSkill_200225", - "text": "内在母性Lv5" + "text": "内在母性Ⅴ" }, "Param0": "", "Param1": "", @@ -76223,7 +76233,7 @@ "Key": "PassiveSkill_200241", "Name": { "key": "PassiveSkill_200241", - "text": "狼性冲锋Lv1" + "text": "狼性冲锋Ⅰ" }, "Param0": "", "Param1": "", @@ -76233,7 +76243,7 @@ "Key": "PassiveSkill_200242", "Name": { "key": "PassiveSkill_200242", - "text": "狼性冲锋Lv2" + "text": "狼性冲锋Ⅱ" }, "Param0": "", "Param1": "", @@ -76243,7 +76253,7 @@ "Key": "PassiveSkill_200243", "Name": { "key": "PassiveSkill_200243", - "text": "狼性冲锋Lv3" + "text": "狼性冲锋Ⅲ" }, "Param0": "", "Param1": "", @@ -76253,7 +76263,7 @@ "Key": "PassiveSkill_200244", "Name": { "key": "PassiveSkill_200244", - "text": "狼性冲锋Lv4" + "text": "狼性冲锋Ⅳ" }, "Param0": "", "Param1": "", @@ -76263,7 +76273,7 @@ "Key": "PassiveSkill_200245", "Name": { "key": "PassiveSkill_200245", - "text": "狼性冲锋Lv5" + "text": "狼性冲锋Ⅴ" }, "Param0": "", "Param1": "", @@ -76273,7 +76283,7 @@ "Key": "PassiveSkill_200246", "Name": { "key": "PassiveSkill_200246", - "text": "狼性冲锋Lv6" + "text": "狼性冲锋Ⅵ" }, "Param0": "", "Param1": "", @@ -76283,7 +76293,7 @@ "Key": "PassiveSkill_200251", "Name": { "key": "PassiveSkill_200251", - "text": "驱散黑暗Lv1" + "text": "驱散黑暗Ⅰ" }, "Param0": "", "Param1": "", @@ -76293,7 +76303,7 @@ "Key": "PassiveSkill_200252", "Name": { "key": "PassiveSkill_200252", - "text": "驱散黑暗Lv2" + "text": "驱散黑暗Ⅱ" }, "Param0": "", "Param1": "", @@ -76303,7 +76313,7 @@ "Key": "PassiveSkill_200253", "Name": { "key": "PassiveSkill_200253", - "text": "驱散黑暗Lv3" + "text": "驱散黑暗Ⅲ" }, "Param0": "", "Param1": "", @@ -76313,7 +76323,7 @@ "Key": "PassiveSkill_200254", "Name": { "key": "PassiveSkill_200254", - "text": "驱散黑暗Lv4" + "text": "驱散黑暗Ⅳ" }, "Param0": "", "Param1": "", @@ -76323,7 +76333,7 @@ "Key": "PassiveSkill_200255", "Name": { "key": "PassiveSkill_200255", - "text": "驱散黑暗Lv5" + "text": "驱散黑暗Ⅴ" }, "Param0": "", "Param1": "", @@ -76333,7 +76343,7 @@ "Key": "PassiveSkill_200256", "Name": { "key": "PassiveSkill_200256", - "text": "驱散黑暗Lv6" + "text": "驱散黑暗Ⅵ" }, "Param0": "", "Param1": "", @@ -76343,7 +76353,7 @@ "Key": "PassiveSkill_200261", "Name": { "key": "PassiveSkill_200261", - "text": "压力衰减Lv1" + "text": "压力衰减Ⅰ" }, "Param0": "", "Param1": "", @@ -76353,7 +76363,7 @@ "Key": "PassiveSkill_200262", "Name": { "key": "PassiveSkill_200262", - "text": "压力衰减Lv2" + "text": "压力衰减Ⅱ" }, "Param0": "", "Param1": "", @@ -76363,7 +76373,7 @@ "Key": "PassiveSkill_200263", "Name": { "key": "PassiveSkill_200263", - "text": "压力衰减Lv3" + "text": "压力衰减Ⅲ" }, "Param0": "", "Param1": "", @@ -76373,7 +76383,7 @@ "Key": "PassiveSkill_200264", "Name": { "key": "PassiveSkill_200264", - "text": "压力衰减Lv4" + "text": "压力衰减Ⅳ" }, "Param0": "", "Param1": "", @@ -76383,7 +76393,7 @@ "Key": "PassiveSkill_200265", "Name": { "key": "PassiveSkill_200265", - "text": "压力衰减Lv5" + "text": "压力衰减Ⅴ" }, "Param0": "", "Param1": "", @@ -76393,7 +76403,7 @@ "Key": "PassiveSkill_200266", "Name": { "key": "PassiveSkill_200266", - "text": "压力衰减Lv6" + "text": "压力衰减Ⅵ" }, "Param0": "", "Param1": "", @@ -76403,7 +76413,7 @@ "Key": "PassiveSkill_200271", "Name": { "key": "PassiveSkill_200271", - "text": "目标专一Lv1" + "text": "目标专一Ⅰ" }, "Param0": "", "Param1": "", @@ -76413,7 +76423,7 @@ "Key": "PassiveSkill_200272", "Name": { "key": "PassiveSkill_200272", - "text": "目标专一Lv2" + "text": "目标专一Ⅱ" }, "Param0": "", "Param1": "", @@ -76423,7 +76433,7 @@ "Key": "PassiveSkill_200273", "Name": { "key": "PassiveSkill_200273", - "text": "目标专一Lv3" + "text": "目标专一Ⅲ" }, "Param0": "", "Param1": "", @@ -76433,7 +76443,7 @@ "Key": "PassiveSkill_200274", "Name": { "key": "PassiveSkill_200274", - "text": "目标专一Lv4" + "text": "目标专一Ⅳ" }, "Param0": "", "Param1": "", @@ -76443,7 +76453,7 @@ "Key": "PassiveSkill_200275", "Name": { "key": "PassiveSkill_200275", - "text": "目标专一Lv5" + "text": "目标专一Ⅴ" }, "Param0": "", "Param1": "", @@ -76453,7 +76463,7 @@ "Key": "PassiveSkill_200276", "Name": { "key": "PassiveSkill_200276", - "text": "目标专一Lv6" + "text": "目标专一Ⅵ" }, "Param0": "", "Param1": "", @@ -76463,7 +76473,7 @@ "Key": "PassiveSkill_200281", "Name": { "key": "PassiveSkill_200281", - "text": "天真少女Lv1" + "text": "天真少女Ⅰ" }, "Param0": "", "Param1": "", @@ -76473,7 +76483,7 @@ "Key": "PassiveSkill_200282", "Name": { "key": "PassiveSkill_200282", - "text": "天真少女Lv2" + "text": "天真少女Ⅱ" }, "Param0": "", "Param1": "", @@ -76483,7 +76493,7 @@ "Key": "PassiveSkill_200283", "Name": { "key": "PassiveSkill_200283", - "text": "天真少女Lv3" + "text": "天真少女Ⅲ" }, "Param0": "", "Param1": "", @@ -76493,7 +76503,7 @@ "Key": "PassiveSkill_200284", "Name": { "key": "PassiveSkill_200284", - "text": "天真少女Lv4" + "text": "天真少女Ⅳ" }, "Param0": "", "Param1": "", @@ -76503,7 +76513,7 @@ "Key": "PassiveSkill_200285", "Name": { "key": "PassiveSkill_200285", - "text": "天真少女Lv5" + "text": "天真少女Ⅴ" }, "Param0": "", "Param1": "", @@ -76513,7 +76523,7 @@ "Key": "PassiveSkill_200286", "Name": { "key": "PassiveSkill_200286", - "text": "天真少女Lv6" + "text": "天真少女Ⅵ" }, "Param0": "", "Param1": "", @@ -76523,7 +76533,7 @@ "Key": "PassiveSkill_200291", "Name": { "key": "PassiveSkill_200291", - "text": "精确学习lv1" + "text": "精确学习Ⅰ" }, "Param0": "", "Param1": "", @@ -76533,7 +76543,7 @@ "Key": "PassiveSkill_200292", "Name": { "key": "PassiveSkill_200292", - "text": "精确学习lv2" + "text": "精确学习Ⅱ" }, "Param0": "", "Param1": "", @@ -76543,7 +76553,7 @@ "Key": "PassiveSkill_200293", "Name": { "key": "PassiveSkill_200293", - "text": "精确学习lv3" + "text": "精确学习Ⅲ" }, "Param0": "", "Param1": "", @@ -76553,7 +76563,7 @@ "Key": "PassiveSkill_200294", "Name": { "key": "PassiveSkill_200294", - "text": "精确学习lv4" + "text": "精确学习Ⅳ" }, "Param0": "", "Param1": "", @@ -76563,7 +76573,7 @@ "Key": "PassiveSkill_200295", "Name": { "key": "PassiveSkill_200295", - "text": "精确学习lv5" + "text": "精确学习Ⅴ" }, "Param0": "", "Param1": "", @@ -76573,7 +76583,7 @@ "Key": "PassiveSkill_200296", "Name": { "key": "PassiveSkill_200296", - "text": "精确学习lv6" + "text": "精确学习Ⅵ" }, "Param0": "", "Param1": "", @@ -76583,7 +76593,7 @@ "Key": "PassiveSkill_200301", "Name": { "key": "PassiveSkill_200301", - "text": "红龙烈焰lv1" + "text": "红龙烈焰Ⅰ" }, "Param0": "", "Param1": "", @@ -76593,7 +76603,7 @@ "Key": "PassiveSkill_200302", "Name": { "key": "PassiveSkill_200302", - "text": "红龙烈焰lv2" + "text": "红龙烈焰Ⅱ" }, "Param0": "", "Param1": "", @@ -76603,7 +76613,7 @@ "Key": "PassiveSkill_200303", "Name": { "key": "PassiveSkill_200303", - "text": "红龙烈焰lv3" + "text": "红龙烈焰Ⅲ" }, "Param0": "", "Param1": "", @@ -76613,7 +76623,7 @@ "Key": "PassiveSkill_200304", "Name": { "key": "PassiveSkill_200304", - "text": "红龙烈焰lv4" + "text": "红龙烈焰Ⅳ" }, "Param0": "", "Param1": "", @@ -76623,7 +76633,7 @@ "Key": "PassiveSkill_200305", "Name": { "key": "PassiveSkill_200305", - "text": "红龙烈焰lv5" + "text": "红龙烈焰Ⅴ" }, "Param0": "", "Param1": "", @@ -76633,7 +76643,7 @@ "Key": "PassiveSkill_200306", "Name": { "key": "PassiveSkill_200306", - "text": "红龙烈焰lv6" + "text": "红龙烈焰Ⅵ" }, "Param0": "", "Param1": "", @@ -76643,7 +76653,7 @@ "Key": "PassiveSkill_200311", "Name": { "key": "PassiveSkill_200311", - "text": "曼妙舞步Lv1" + "text": "曼妙舞步Ⅰ" }, "Param0": "", "Param1": "", @@ -76653,7 +76663,7 @@ "Key": "PassiveSkill_200312", "Name": { "key": "PassiveSkill_200312", - "text": "曼妙舞步Lv2" + "text": "曼妙舞步Ⅱ" }, "Param0": "", "Param1": "", @@ -76663,7 +76673,7 @@ "Key": "PassiveSkill_200313", "Name": { "key": "PassiveSkill_200313", - "text": "曼妙舞步Lv3" + "text": "曼妙舞步Ⅲ" }, "Param0": "", "Param1": "", @@ -76673,7 +76683,7 @@ "Key": "PassiveSkill_200314", "Name": { "key": "PassiveSkill_200314", - "text": "曼妙舞步Lv4" + "text": "曼妙舞步Ⅳ" }, "Param0": "", "Param1": "", @@ -76683,7 +76693,7 @@ "Key": "PassiveSkill_200315", "Name": { "key": "PassiveSkill_200315", - "text": "曼妙舞步Lv5" + "text": "曼妙舞步Ⅴ" }, "Param0": "", "Param1": "", @@ -76693,7 +76703,7 @@ "Key": "PassiveSkill_200316", "Name": { "key": "PassiveSkill_200316", - "text": "曼妙舞步Lv6" + "text": "曼妙舞步Ⅵ" }, "Param0": "", "Param1": "", @@ -76703,7 +76713,7 @@ "Key": "PassiveSkill_200321", "Name": { "key": "PassiveSkill_200321", - "text": "鼓舞乐章Lv1" + "text": "鼓舞乐章Ⅰ" }, "Param0": "", "Param1": "", @@ -76713,7 +76723,7 @@ "Key": "PassiveSkill_200322", "Name": { "key": "PassiveSkill_200322", - "text": "鼓舞乐章Lv2" + "text": "鼓舞乐章Ⅱ" }, "Param0": "", "Param1": "", @@ -76723,7 +76733,7 @@ "Key": "PassiveSkill_200323", "Name": { "key": "PassiveSkill_200323", - "text": "鼓舞乐章Lv3" + "text": "鼓舞乐章Ⅲ" }, "Param0": "", "Param1": "", @@ -76733,7 +76743,7 @@ "Key": "PassiveSkill_200324", "Name": { "key": "PassiveSkill_200324", - "text": "鼓舞乐章Lv4" + "text": "鼓舞乐章Ⅳ" }, "Param0": "", "Param1": "", @@ -76743,7 +76753,7 @@ "Key": "PassiveSkill_200325", "Name": { "key": "PassiveSkill_200325", - "text": "鼓舞乐章Lv5" + "text": "鼓舞乐章Ⅴ" }, "Param0": "", "Param1": "", @@ -76753,7 +76763,7 @@ "Key": "PassiveSkill_200326", "Name": { "key": "PassiveSkill_200326", - "text": "鼓舞乐章Lv6" + "text": "鼓舞乐章Ⅵ" }, "Param0": "", "Param1": "", @@ -76763,7 +76773,7 @@ "Key": "PassiveSkill_200331", "Name": { "key": "PassiveSkill_200331", - "text": "魔音入耳Lv1" + "text": "魔音入耳Ⅰ" }, "Param0": "", "Param1": "", @@ -76773,7 +76783,7 @@ "Key": "PassiveSkill_200332", "Name": { "key": "PassiveSkill_200332", - "text": "魔音入耳Lv2" + "text": "魔音入耳Ⅱ" }, "Param0": "", "Param1": "", @@ -76783,7 +76793,7 @@ "Key": "PassiveSkill_200333", "Name": { "key": "PassiveSkill_200333", - "text": "魔音入耳Lv3" + "text": "魔音入耳Ⅲ" }, "Param0": "", "Param1": "", @@ -76793,7 +76803,7 @@ "Key": "PassiveSkill_200334", "Name": { "key": "PassiveSkill_200334", - "text": "魔音入耳Lv4" + "text": "魔音入耳Ⅳ" }, "Param0": "", "Param1": "", @@ -76803,7 +76813,7 @@ "Key": "PassiveSkill_200335", "Name": { "key": "PassiveSkill_200335", - "text": "魔音入耳Lv5" + "text": "魔音入耳Ⅴ" }, "Param0": "", "Param1": "", @@ -76813,7 +76823,7 @@ "Key": "PassiveSkill_200336", "Name": { "key": "PassiveSkill_200336", - "text": "魔音入耳Lv6" + "text": "魔音入耳Ⅵ" }, "Param0": "", "Param1": "", @@ -76823,7 +76833,7 @@ "Key": "PassiveSkill_200341", "Name": { "key": "PassiveSkill_200341", - "text": "占卜揭示Lv1" + "text": "占卜揭示Ⅰ" }, "Param0": "", "Param1": "", @@ -76833,7 +76843,7 @@ "Key": "PassiveSkill_200342", "Name": { "key": "PassiveSkill_200342", - "text": "占卜揭示Lv2" + "text": "占卜揭示Ⅱ" }, "Param0": "", "Param1": "", @@ -76843,7 +76853,7 @@ "Key": "PassiveSkill_200343", "Name": { "key": "PassiveSkill_200343", - "text": "占卜揭示Lv3" + "text": "占卜揭示Ⅲ" }, "Param0": "", "Param1": "", @@ -76853,7 +76863,7 @@ "Key": "PassiveSkill_200344", "Name": { "key": "PassiveSkill_200344", - "text": "占卜揭示Lv4" + "text": "占卜揭示Ⅳ" }, "Param0": "", "Param1": "", @@ -76863,7 +76873,7 @@ "Key": "PassiveSkill_200345", "Name": { "key": "PassiveSkill_200345", - "text": "占卜揭示Lv5" + "text": "占卜揭示Ⅴ" }, "Param0": "", "Param1": "", @@ -76873,7 +76883,7 @@ "Key": "PassiveSkill_200346", "Name": { "key": "PassiveSkill_200346", - "text": "占卜揭示Lv6" + "text": "占卜揭示Ⅵ" }, "Param0": "", "Param1": "", @@ -76883,7 +76893,7 @@ "Key": "PassiveSkill_200351", "Name": { "key": "PassiveSkill_200351", - "text": "流水之音Lv1" + "text": "流水之音Ⅰ" }, "Param0": "", "Param1": "", @@ -76893,7 +76903,7 @@ "Key": "PassiveSkill_200352", "Name": { "key": "PassiveSkill_200352", - "text": "流水之音Lv2" + "text": "流水之音Ⅱ" }, "Param0": "", "Param1": "", @@ -76903,7 +76913,7 @@ "Key": "PassiveSkill_200353", "Name": { "key": "PassiveSkill_200353", - "text": "流水之音Lv3" + "text": "流水之音Ⅲ" }, "Param0": "", "Param1": "", @@ -76913,7 +76923,7 @@ "Key": "PassiveSkill_200354", "Name": { "key": "PassiveSkill_200354", - "text": "流水之音Lv4" + "text": "流水之音Ⅳ" }, "Param0": "", "Param1": "", @@ -76923,7 +76933,7 @@ "Key": "PassiveSkill_200355", "Name": { "key": "PassiveSkill_200355", - "text": "流水之音Lv5" + "text": "流水之音Ⅴ" }, "Param0": "", "Param1": "", @@ -76933,7 +76943,7 @@ "Key": "PassiveSkill_200356", "Name": { "key": "PassiveSkill_200356", - "text": "流水之音Lv6" + "text": "流水之音Ⅵ" }, "Param0": "", "Param1": "", @@ -77843,7 +77853,7 @@ "Key": "PassiveSkill_200511", "Name": { "key": "PassiveSkill_200511", - "text": "赏罚分明Lv1" + "text": "赏罚分明Ⅰ" }, "Param0": "", "Param1": "", @@ -77853,7 +77863,7 @@ "Key": "PassiveSkill_200512", "Name": { "key": "PassiveSkill_200512", - "text": "赏罚分明Lv2" + "text": "赏罚分明Ⅱ" }, "Param0": "", "Param1": "", @@ -77863,7 +77873,7 @@ "Key": "PassiveSkill_200513", "Name": { "key": "PassiveSkill_200513", - "text": "赏罚分明Lv3" + "text": "赏罚分明Ⅲ" }, "Param0": "", "Param1": "", @@ -77873,7 +77883,7 @@ "Key": "PassiveSkill_200514", "Name": { "key": "PassiveSkill_200514", - "text": "赏罚分明Lv4" + "text": "赏罚分明Ⅳ" }, "Param0": "", "Param1": "", @@ -77883,7 +77893,7 @@ "Key": "PassiveSkill_200515", "Name": { "key": "PassiveSkill_200515", - "text": "赏罚分明Lv5" + "text": "赏罚分明Ⅴ" }, "Param0": "", "Param1": "", @@ -77893,7 +77903,7 @@ "Key": "PassiveSkill_200516", "Name": { "key": "PassiveSkill_200516", - "text": "赏罚分明Lv6" + "text": "赏罚分明Ⅵ" }, "Param0": "", "Param1": "", @@ -77903,7 +77913,7 @@ "Key": "PassiveSkill_200521", "Name": { "key": "PassiveSkill_200521", - "text": "骚扰加倍Lv1" + "text": "骚扰加倍Ⅰ" }, "Param0": "", "Param1": "", @@ -77913,7 +77923,7 @@ "Key": "PassiveSkill_200522", "Name": { "key": "PassiveSkill_200522", - "text": "骚扰加倍Lv2" + "text": "骚扰加倍Ⅱ" }, "Param0": "", "Param1": "", @@ -77923,7 +77933,7 @@ "Key": "PassiveSkill_200523", "Name": { "key": "PassiveSkill_200523", - "text": "骚扰加倍Lv3" + "text": "骚扰加倍Ⅲ" }, "Param0": "", "Param1": "", @@ -77933,7 +77943,7 @@ "Key": "PassiveSkill_200524", "Name": { "key": "PassiveSkill_200524", - "text": "骚扰加倍Lv4" + "text": "骚扰加倍Ⅳ" }, "Param0": "", "Param1": "", @@ -77943,7 +77953,7 @@ "Key": "PassiveSkill_200525", "Name": { "key": "PassiveSkill_200525", - "text": "骚扰加倍Lv5" + "text": "骚扰加倍Ⅴ" }, "Param0": "", "Param1": "", @@ -77953,7 +77963,7 @@ "Key": "PassiveSkill_200526", "Name": { "key": "PassiveSkill_200526", - "text": "骚扰加倍Lv6" + "text": "骚扰加倍Ⅵ" }, "Param0": "", "Param1": "", @@ -78083,7 +78093,7 @@ "Key": "PassiveSkill_200551", "Name": { "key": "PassiveSkill_200551", - "text": "死撑Lv1" + "text": "死撑Ⅰ" }, "Param0": "", "Param1": "", @@ -78093,7 +78103,7 @@ "Key": "PassiveSkill_200552", "Name": { "key": "PassiveSkill_200552", - "text": "死撑Lv2" + "text": "死撑Ⅱ" }, "Param0": "", "Param1": "", @@ -78103,7 +78113,7 @@ "Key": "PassiveSkill_200553", "Name": { "key": "PassiveSkill_200553", - "text": "死撑Lv3" + "text": "死撑Ⅲ" }, "Param0": "", "Param1": "", @@ -78113,7 +78123,7 @@ "Key": "PassiveSkill_200554", "Name": { "key": "PassiveSkill_200554", - "text": "死撑Lv4" + "text": "死撑Ⅳ" }, "Param0": "", "Param1": "", @@ -78123,7 +78133,7 @@ "Key": "PassiveSkill_200555", "Name": { "key": "PassiveSkill_200555", - "text": "死撑Lv5" + "text": "死撑Ⅴ" }, "Param0": "", "Param1": "", @@ -78133,7 +78143,7 @@ "Key": "PassiveSkill_200556", "Name": { "key": "PassiveSkill_200556", - "text": "死撑Lv6" + "text": "死撑Ⅵ" }, "Param0": "", "Param1": "", @@ -79643,7 +79653,7 @@ "Key": "PassiveSkill_200811", "Name": { "key": "PassiveSkill_200811", - "text": "迅速离场Lv1" + "text": "迅速离场Ⅰ" }, "Param0": "", "Param1": "", @@ -79653,7 +79663,7 @@ "Key": "PassiveSkill_200812", "Name": { "key": "PassiveSkill_200812", - "text": "迅速离场Lv2" + "text": "迅速离场Ⅱ" }, "Param0": "", "Param1": "", @@ -79663,7 +79673,7 @@ "Key": "PassiveSkill_200813", "Name": { "key": "PassiveSkill_200813", - "text": "迅速离场Lv3" + "text": "迅速离场Ⅲ" }, "Param0": "", "Param1": "", @@ -79673,7 +79683,7 @@ "Key": "PassiveSkill_200814", "Name": { "key": "PassiveSkill_200814", - "text": "迅速离场Lv4" + "text": "迅速离场Ⅳ" }, "Param0": "", "Param1": "", @@ -79683,7 +79693,7 @@ "Key": "PassiveSkill_200815", "Name": { "key": "PassiveSkill_200815", - "text": "迅速离场Lv5" + "text": "迅速离场Ⅴ" }, "Param0": "", "Param1": "", @@ -79693,7 +79703,7 @@ "Key": "PassiveSkill_200816", "Name": { "key": "PassiveSkill_200816", - "text": "迅速离场Lv6" + "text": "迅速离场Ⅵ" }, "Param0": "", "Param1": "", @@ -79703,7 +79713,7 @@ "Key": "PassiveSkill_200821", "Name": { "key": "PassiveSkill_200821", - "text": "”异常“的鼓励Lv1" + "text": "”异常“的鼓励Ⅰ" }, "Param0": "", "Param1": "", @@ -79713,7 +79723,7 @@ "Key": "PassiveSkill_200822", "Name": { "key": "PassiveSkill_200822", - "text": "”异常“的鼓励Lv2" + "text": "”异常“的鼓励Ⅱ" }, "Param0": "", "Param1": "", @@ -79723,7 +79733,7 @@ "Key": "PassiveSkill_200823", "Name": { "key": "PassiveSkill_200823", - "text": "”异常“的鼓励Lv3" + "text": "”异常“的鼓励Ⅲ" }, "Param0": "", "Param1": "", @@ -79733,7 +79743,7 @@ "Key": "PassiveSkill_200824", "Name": { "key": "PassiveSkill_200824", - "text": "”异常“的鼓励Lv4" + "text": "”异常“的鼓励Ⅳ" }, "Param0": "", "Param1": "", @@ -79743,7 +79753,7 @@ "Key": "PassiveSkill_200825", "Name": { "key": "PassiveSkill_200825", - "text": "”异常“的鼓励Lv5" + "text": "”异常“的鼓励Ⅴ" }, "Param0": "", "Param1": "", @@ -79753,7 +79763,7 @@ "Key": "PassiveSkill_200826", "Name": { "key": "PassiveSkill_200826", - "text": "”异常“的鼓励Lv6" + "text": "”异常“的鼓励Ⅵ" }, "Param0": "", "Param1": "", @@ -79763,7 +79773,7 @@ "Key": "PassiveSkill_200831", "Name": { "key": "PassiveSkill_200831", - "text": "后顾无忧Lv1" + "text": "后顾无忧Ⅰ" }, "Param0": "", "Param1": "", @@ -79773,7 +79783,7 @@ "Key": "PassiveSkill_200832", "Name": { "key": "PassiveSkill_200832", - "text": "后顾无忧Lv2" + "text": "后顾无忧Ⅱ" }, "Param0": "", "Param1": "", @@ -79783,7 +79793,7 @@ "Key": "PassiveSkill_200833", "Name": { "key": "PassiveSkill_200833", - "text": "后顾无忧Lv3" + "text": "后顾无忧Ⅲ" }, "Param0": "", "Param1": "", @@ -79793,7 +79803,7 @@ "Key": "PassiveSkill_200834", "Name": { "key": "PassiveSkill_200834", - "text": "后顾无忧Lv4" + "text": "后顾无忧Ⅳ" }, "Param0": "", "Param1": "", @@ -79803,7 +79813,7 @@ "Key": "PassiveSkill_200835", "Name": { "key": "PassiveSkill_200835", - "text": "后顾无忧Lv5" + "text": "后顾无忧Ⅴ" }, "Param0": "", "Param1": "", @@ -79813,7 +79823,7 @@ "Key": "PassiveSkill_200836", "Name": { "key": "PassiveSkill_200836", - "text": "后顾无忧Lv6" + "text": "后顾无忧Ⅵ" }, "Param0": "", "Param1": "", @@ -79823,7 +79833,7 @@ "Key": "PassiveSkill_200841", "Name": { "key": "PassiveSkill_200841", - "text": "迷幻后续Lv1" + "text": "迷幻后续Ⅰ" }, "Param0": "", "Param1": "", @@ -79833,7 +79843,7 @@ "Key": "PassiveSkill_200842", "Name": { "key": "PassiveSkill_200842", - "text": "迷幻后续Lv2" + "text": "迷幻后续Ⅱ" }, "Param0": "", "Param1": "", @@ -79843,7 +79853,7 @@ "Key": "PassiveSkill_200843", "Name": { "key": "PassiveSkill_200843", - "text": "迷幻后续Lv3" + "text": "迷幻后续Ⅲ" }, "Param0": "", "Param1": "", @@ -79853,7 +79863,7 @@ "Key": "PassiveSkill_200844", "Name": { "key": "PassiveSkill_200844", - "text": "迷幻后续Lv4" + "text": "迷幻后续Ⅳ" }, "Param0": "", "Param1": "", @@ -79943,7 +79953,7 @@ "Key": "PassiveSkill_200861", "Name": { "key": "PassiveSkill_200861", - "text": "透支额度Lv1" + "text": "透支额度Ⅰ" }, "Param0": "", "Param1": "", @@ -79953,7 +79963,7 @@ "Key": "PassiveSkill_200862", "Name": { "key": "PassiveSkill_200862", - "text": "透支额度Lv2" + "text": "透支额度Ⅱ" }, "Param0": "", "Param1": "", @@ -79963,7 +79973,7 @@ "Key": "PassiveSkill_200863", "Name": { "key": "PassiveSkill_200863", - "text": "透支额度Lv3" + "text": "透支额度Ⅲ" }, "Param0": "", "Param1": "", @@ -79973,7 +79983,7 @@ "Key": "PassiveSkill_200864", "Name": { "key": "PassiveSkill_200864", - "text": "透支额度Lv4" + "text": "透支额度Ⅳ" }, "Param0": "", "Param1": "", @@ -79983,7 +79993,7 @@ "Key": "PassiveSkill_200865", "Name": { "key": "PassiveSkill_200865", - "text": "透支额度Lv5" + "text": "透支额度Ⅴ" }, "Param0": "", "Param1": "", @@ -79993,7 +80003,7 @@ "Key": "PassiveSkill_200866", "Name": { "key": "PassiveSkill_200866", - "text": "透支额度Lv6" + "text": "透支额度Ⅵ" }, "Param0": "", "Param1": "", @@ -80003,7 +80013,7 @@ "Key": "PassiveSkill_200871", "Name": { "key": "PassiveSkill_200871", - "text": "无惧冲锋Lv1" + "text": "无惧冲锋Ⅰ" }, "Param0": "", "Param1": "", @@ -80013,7 +80023,7 @@ "Key": "PassiveSkill_200872", "Name": { "key": "PassiveSkill_200872", - "text": "无惧冲锋Lv2" + "text": "无惧冲锋Ⅱ" }, "Param0": "", "Param1": "", @@ -80023,7 +80033,7 @@ "Key": "PassiveSkill_200873", "Name": { "key": "PassiveSkill_200873", - "text": "无惧冲锋Lv3" + "text": "无惧冲锋Ⅲ" }, "Param0": "", "Param1": "", @@ -80033,7 +80043,7 @@ "Key": "PassiveSkill_200874", "Name": { "key": "PassiveSkill_200874", - "text": "无惧冲锋Lv4" + "text": "无惧冲锋Ⅳ" }, "Param0": "", "Param1": "", @@ -80043,7 +80053,7 @@ "Key": "PassiveSkill_200875", "Name": { "key": "PassiveSkill_200875", - "text": "无惧冲锋Lv5" + "text": "无惧冲锋Ⅴ" }, "Param0": "", "Param1": "", @@ -80053,7 +80063,7 @@ "Key": "PassiveSkill_200876", "Name": { "key": "PassiveSkill_200876", - "text": "无惧冲锋Lv6" + "text": "无惧冲锋Ⅵ" }, "Param0": "", "Param1": "", @@ -80063,7 +80073,7 @@ "Key": "PassiveSkill_200881", "Name": { "key": "PassiveSkill_200881", - "text": "狂轰乱炸Lv1" + "text": "狂轰乱炸Ⅰ" }, "Param0": "", "Param1": "", @@ -80073,7 +80083,7 @@ "Key": "PassiveSkill_200882", "Name": { "key": "PassiveSkill_200882", - "text": "狂轰乱炸Lv2" + "text": "狂轰乱炸Ⅱ" }, "Param0": "", "Param1": "", @@ -80083,7 +80093,7 @@ "Key": "PassiveSkill_200883", "Name": { "key": "PassiveSkill_200883", - "text": "狂轰乱炸Lv3" + "text": "狂轰乱炸Ⅲ" }, "Param0": "", "Param1": "", @@ -80093,7 +80103,7 @@ "Key": "PassiveSkill_200884", "Name": { "key": "PassiveSkill_200884", - "text": "狂轰乱炸Lv4" + "text": "狂轰乱炸Ⅳ" }, "Param0": "", "Param1": "", @@ -80103,7 +80113,7 @@ "Key": "PassiveSkill_200885", "Name": { "key": "PassiveSkill_200885", - "text": "狂轰乱炸Lv5" + "text": "狂轰乱炸Ⅴ" }, "Param0": "", "Param1": "", @@ -80113,7 +80123,7 @@ "Key": "PassiveSkill_200886", "Name": { "key": "PassiveSkill_200886", - "text": "狂轰乱炸Lv6" + "text": "狂轰乱炸Ⅵ" }, "Param0": "", "Param1": "", @@ -80303,7 +80313,7 @@ "Key": "PassiveSkill_200921", "Name": { "key": "PassiveSkill_200921", - "text": "不计代价Lv1" + "text": "不计代价Ⅰ" }, "Param0": "", "Param1": "", @@ -80313,7 +80323,7 @@ "Key": "PassiveSkill_200922", "Name": { "key": "PassiveSkill_200922", - "text": "不计代价Lv2" + "text": "不计代价Ⅱ" }, "Param0": "", "Param1": "", @@ -80323,7 +80333,7 @@ "Key": "PassiveSkill_200923", "Name": { "key": "PassiveSkill_200923", - "text": "不计代价Lv3" + "text": "不计代价Ⅲ" }, "Param0": "", "Param1": "", @@ -80333,7 +80343,7 @@ "Key": "PassiveSkill_200924", "Name": { "key": "PassiveSkill_200924", - "text": "不计代价Lv4" + "text": "不计代价Ⅳ" }, "Param0": "", "Param1": "", @@ -80343,7 +80353,7 @@ "Key": "PassiveSkill_200925", "Name": { "key": "PassiveSkill_200925", - "text": "不计代价Lv5" + "text": "不计代价Ⅴ" }, "Param0": "", "Param1": "", @@ -80353,7 +80363,7 @@ "Key": "PassiveSkill_200926", "Name": { "key": "PassiveSkill_200926", - "text": "不计代价Lv6" + "text": "不计代价Ⅵ" }, "Param0": "", "Param1": "", @@ -80423,7 +80433,7 @@ "Key": "PassiveSkill_200941", "Name": { "key": "PassiveSkill_200941", - "text": "疯狂囤囤鼠Lv1" + "text": "疯狂囤囤鼠Ⅰ" }, "Param0": "", "Param1": "", @@ -80433,7 +80443,7 @@ "Key": "PassiveSkill_200942", "Name": { "key": "PassiveSkill_200942", - "text": "疯狂囤囤鼠Lv2" + "text": "疯狂囤囤鼠Ⅱ" }, "Param0": "", "Param1": "", @@ -80443,7 +80453,7 @@ "Key": "PassiveSkill_200943", "Name": { "key": "PassiveSkill_200943", - "text": "疯狂囤囤鼠Lv3" + "text": "疯狂囤囤鼠Ⅲ" }, "Param0": "", "Param1": "", @@ -80453,7 +80463,7 @@ "Key": "PassiveSkill_200944", "Name": { "key": "PassiveSkill_200944", - "text": "疯狂囤囤鼠Lv4" + "text": "疯狂囤囤鼠Ⅳ" }, "Param0": "", "Param1": "", @@ -80483,7 +80493,7 @@ "Key": "PassiveSkill_200951", "Name": { "key": "PassiveSkill_200951", - "text": "训练有素Lv1" + "text": "训练有素Ⅰ" }, "Param0": "", "Param1": "", @@ -80493,7 +80503,7 @@ "Key": "PassiveSkill_200952", "Name": { "key": "PassiveSkill_200952", - "text": "训练有素Lv2" + "text": "训练有素Ⅱ" }, "Param0": "", "Param1": "", @@ -80503,7 +80513,7 @@ "Key": "PassiveSkill_200953", "Name": { "key": "PassiveSkill_200953", - "text": "训练有素Lv3" + "text": "训练有素Ⅲ" }, "Param0": "", "Param1": "", @@ -80513,7 +80523,7 @@ "Key": "PassiveSkill_200954", "Name": { "key": "PassiveSkill_200954", - "text": "训练有素Lv4" + "text": "训练有素Ⅳ" }, "Param0": "", "Param1": "", @@ -80523,7 +80533,7 @@ "Key": "PassiveSkill_200955", "Name": { "key": "PassiveSkill_200955", - "text": "训练有素Lv5" + "text": "训练有素Ⅴ" }, "Param0": "", "Param1": "", @@ -80543,7 +80553,7 @@ "Key": "PassiveSkill_200961", "Name": { "key": "PassiveSkill_200961", - "text": "疯狂Lv1" + "text": "疯狂Ⅰ" }, "Param0": "", "Param1": "", @@ -80553,7 +80563,7 @@ "Key": "PassiveSkill_200962", "Name": { "key": "PassiveSkill_200962", - "text": "疯狂Lv2" + "text": "疯狂Ⅱ" }, "Param0": "", "Param1": "", @@ -80563,7 +80573,7 @@ "Key": "PassiveSkill_200963", "Name": { "key": "PassiveSkill_200963", - "text": "疯狂Lv3" + "text": "疯狂Ⅲ" }, "Param0": "", "Param1": "", @@ -80573,7 +80583,7 @@ "Key": "PassiveSkill_200964", "Name": { "key": "PassiveSkill_200964", - "text": "疯狂Lv4" + "text": "疯狂Ⅳ" }, "Param0": "", "Param1": "", @@ -80583,7 +80593,7 @@ "Key": "PassiveSkill_200965", "Name": { "key": "PassiveSkill_200965", - "text": "疯狂Lv5" + "text": "疯狂Ⅴ" }, "Param0": "", "Param1": "", @@ -80593,7 +80603,7 @@ "Key": "PassiveSkill_200966", "Name": { "key": "PassiveSkill_200966", - "text": "疯狂Lv6" + "text": "疯狂Ⅵ" }, "Param0": "", "Param1": "", @@ -80663,7 +80673,7 @@ "Key": "PassiveSkill_200981", "Name": { "key": "PassiveSkill_200981", - "text": "体验阴谋Lv1" + "text": "体验阴谋Ⅰ" }, "Param0": "", "Param1": "", @@ -80673,7 +80683,7 @@ "Key": "PassiveSkill_200982", "Name": { "key": "PassiveSkill_200982", - "text": "体验阴谋Lv2" + "text": "体验阴谋Ⅱ" }, "Param0": "", "Param1": "", @@ -80683,7 +80693,7 @@ "Key": "PassiveSkill_200983", "Name": { "key": "PassiveSkill_200983", - "text": "体验阴谋Lv3" + "text": "体验阴谋Ⅲ" }, "Param0": "", "Param1": "", @@ -80693,7 +80703,7 @@ "Key": "PassiveSkill_200984", "Name": { "key": "PassiveSkill_200984", - "text": "体验阴谋Lv4" + "text": "体验阴谋Ⅳ" }, "Param0": "", "Param1": "", @@ -80843,7 +80853,7 @@ "Key": "PassiveSkill_201011", "Name": { "key": "PassiveSkill_201011", - "text": "潜移默化Lv1" + "text": "潜移默化Ⅰ" }, "Param0": "", "Param1": "", @@ -80853,7 +80863,7 @@ "Key": "PassiveSkill_201012", "Name": { "key": "PassiveSkill_201012", - "text": "潜移默化Lv2" + "text": "潜移默化Ⅱ" }, "Param0": "", "Param1": "", @@ -80863,7 +80873,7 @@ "Key": "PassiveSkill_201013", "Name": { "key": "PassiveSkill_201013", - "text": "潜移默化Lv3" + "text": "潜移默化Ⅲ" }, "Param0": "", "Param1": "", @@ -80873,7 +80883,7 @@ "Key": "PassiveSkill_201014", "Name": { "key": "PassiveSkill_201014", - "text": "潜移默化Lv4" + "text": "潜移默化Ⅳ" }, "Param0": "", "Param1": "", @@ -80883,7 +80893,7 @@ "Key": "PassiveSkill_201015", "Name": { "key": "PassiveSkill_201015", - "text": "潜移默化Lv5" + "text": "潜移默化Ⅴ" }, "Param0": "", "Param1": "", @@ -80893,7 +80903,7 @@ "Key": "PassiveSkill_201016", "Name": { "key": "PassiveSkill_201016", - "text": "潜移默化Lv6" + "text": "潜移默化Ⅵ" }, "Param0": "", "Param1": "", @@ -81023,7 +81033,7 @@ "Key": "PassiveSkill_201041", "Name": { "key": "PassiveSkill_201041", - "text": "偶像享受Lv1" + "text": "偶像享受Ⅰ" }, "Param0": "", "Param1": "", @@ -81033,7 +81043,7 @@ "Key": "PassiveSkill_201042", "Name": { "key": "PassiveSkill_201042", - "text": "偶像享受Lv2" + "text": "偶像享受Ⅱ" }, "Param0": "", "Param1": "", @@ -81043,7 +81053,7 @@ "Key": "PassiveSkill_201043", "Name": { "key": "PassiveSkill_201043", - "text": "偶像享受Lv3" + "text": "偶像享受Ⅲ" }, "Param0": "", "Param1": "", @@ -81053,7 +81063,7 @@ "Key": "PassiveSkill_201044", "Name": { "key": "PassiveSkill_201044", - "text": "偶像享受Lv4" + "text": "偶像享受Ⅳ" }, "Param0": "", "Param1": "", @@ -81143,7 +81153,7 @@ "Key": "PassiveSkill_201061", "Name": { "key": "PassiveSkill_201061", - "text": "双面大小姐Lv1" + "text": "双面大小姐Ⅰ" }, "Param0": "", "Param1": "", @@ -81153,7 +81163,7 @@ "Key": "PassiveSkill_201062", "Name": { "key": "PassiveSkill_201062", - "text": "双面大小姐Lv2" + "text": "双面大小姐Ⅱ" }, "Param0": "", "Param1": "", @@ -81163,7 +81173,7 @@ "Key": "PassiveSkill_201063", "Name": { "key": "PassiveSkill_201063", - "text": "双面大小姐Lv3" + "text": "双面大小姐Ⅲ" }, "Param0": "", "Param1": "", @@ -81173,7 +81183,7 @@ "Key": "PassiveSkill_201064", "Name": { "key": "PassiveSkill_201064", - "text": "双面大小姐Lv4" + "text": "双面大小姐Ⅳ" }, "Param0": "", "Param1": "", @@ -81183,7 +81193,7 @@ "Key": "PassiveSkill_201065", "Name": { "key": "PassiveSkill_201065", - "text": "双面大小姐Lv5" + "text": "双面大小姐Ⅴ" }, "Param0": "", "Param1": "", @@ -81193,7 +81203,7 @@ "Key": "PassiveSkill_201066", "Name": { "key": "PassiveSkill_201066", - "text": "双面大小姐Lv6" + "text": "双面大小姐Ⅵ" }, "Param0": "", "Param1": "", @@ -82703,7 +82713,7 @@ "Key": "PassiveSkillDesc_200221", "Name": { "key": "PassiveSkillDesc_200221", - "text": "每7秒为自身1格范围内的友方压制单位恢复[p0]+[p1]单发伤害的生命值,晴空天气下,额外为范围内的友方指挥单位恢复等量生命值。" + "text": "每7秒为自身1格范围内的友方压制单位恢复[p0]+[p1]单发伤害的生命值,晴天天气下,额外为范围内的友方指挥单位恢复等量生命值。" }, "Param0": "BuffConfig_ID_1102201_FloatParams_0_0", "Param1": "BuffConfig_ID_1102201_FloatParams_1_1", @@ -82713,7 +82723,7 @@ "Key": "PassiveSkillDesc_200222", "Name": { "key": "PassiveSkillDesc_200222", - "text": "每7秒为自身1格范围内的友方压制单位恢复[p0]+[p1]单发伤害的生命值,晴空天气下,额外为范围内的友方指挥单位恢复等量生命值。" + "text": "每7秒为自身1格范围内的友方压制单位恢复[p0]+[p1]单发伤害的生命值,晴天天气下,额外为范围内的友方指挥单位恢复等量生命值。" }, "Param0": "BuffConfig_ID_1102202_FloatParams_0_0", "Param1": "BuffConfig_ID_1102202_FloatParams_1_1", @@ -82723,7 +82733,7 @@ "Key": "PassiveSkillDesc_200223", "Name": { "key": "PassiveSkillDesc_200223", - "text": "每7秒为自身1格范围内的友方压制单位恢复[p0]+[p1]单发伤害的生命值,晴空天气下,额外为范围内的友方指挥单位恢复等量生命值。" + "text": "每7秒为自身1格范围内的友方压制单位恢复[p0]+[p1]单发伤害的生命值,晴天天气下,额外为范围内的友方指挥单位恢复等量生命值。" }, "Param0": "BuffConfig_ID_1102203_FloatParams_0_0", "Param1": "BuffConfig_ID_1102203_FloatParams_1_1", @@ -82733,7 +82743,7 @@ "Key": "PassiveSkillDesc_200224", "Name": { "key": "PassiveSkillDesc_200224", - "text": "每7秒为自身1格范围内的友方压制单位恢复[p0]+[p1]单发伤害的生命值,晴空天气下,额外为范围内的友方指挥单位恢复等量生命值。" + "text": "每7秒为自身1格范围内的友方压制单位恢复[p0]+[p1]单发伤害的生命值,晴天天气下,额外为范围内的友方指挥单位恢复等量生命值。" }, "Param0": "BuffConfig_ID_1102204_FloatParams_0_0", "Param1": "BuffConfig_ID_1102204_FloatParams_1_1", @@ -82743,7 +82753,7 @@ "Key": "PassiveSkillDesc_200225", "Name": { "key": "PassiveSkillDesc_200225", - "text": "每7秒为自身1格范围内的友方压制单位恢复[p0]+[p1]单发伤害的生命值,晴空天气下,额外为范围内的友方指挥单位恢复等量生命值。" + "text": "每7秒为自身1格范围内的友方压制单位恢复[p0]+[p1]单发伤害的生命值,晴天天气下,额外为范围内的友方指挥单位恢复等量生命值。" }, "Param0": "BuffConfig_ID_1102205_FloatParams_0_0", "Param1": "BuffConfig_ID_1102205_FloatParams_1_1", @@ -82823,7 +82833,7 @@ "Key": "PassiveSkillDesc_200241", "Name": { "key": "PassiveSkillDesc_200241", - "text": "攻击时对目标及其1格范围内的敌方单位额外造成[p2]士气压制,晴空天气下,对范围内的敌方支援单位额外造成盖尔菲斯特[p0]+[p1]单发伤害的总伤害。" + "text": "攻击时对目标及其1格范围内的敌方单位额外造成[p2]士气压制,晴天天气下,对范围内的敌方支援单位额外造成盖尔菲斯特[p0]+[p1]单发伤害的总伤害。" }, "Param0": "BuffConfig_ID_1302401_FloatParams_0_0", "Param1": "BuffConfig_ID_1302401_FloatParams_1_1", @@ -82833,7 +82843,7 @@ "Key": "PassiveSkillDesc_200242", "Name": { "key": "PassiveSkillDesc_200242", - "text": "攻击时对目标及其1格范围内的敌方单位额外造成[p2]士气压制,晴空天气下,对范围内的敌方支援单位额外造成盖尔菲斯特[p0]+[p1]单发伤害的总伤害。" + "text": "攻击时对目标及其1格范围内的敌方单位额外造成[p2]士气压制,晴天天气下,对范围内的敌方支援单位额外造成盖尔菲斯特[p0]+[p1]单发伤害的总伤害。" }, "Param0": "BuffConfig_ID_1302402_FloatParams_0_0", "Param1": "BuffConfig_ID_1302402_FloatParams_1_1", @@ -82843,7 +82853,7 @@ "Key": "PassiveSkillDesc_200243", "Name": { "key": "PassiveSkillDesc_200243", - "text": "攻击时对目标及其1格范围内的敌方单位额外造成[p2]士气压制,晴空天气下,对范围内的敌方支援单位额外造成盖尔菲斯特[p0]+[p1]单发伤害的总伤害。" + "text": "攻击时对目标及其1格范围内的敌方单位额外造成[p2]士气压制,晴天天气下,对范围内的敌方支援单位额外造成盖尔菲斯特[p0]+[p1]单发伤害的总伤害。" }, "Param0": "BuffConfig_ID_1302403_FloatParams_0_0", "Param1": "BuffConfig_ID_1302403_FloatParams_1_1", @@ -82853,7 +82863,7 @@ "Key": "PassiveSkillDesc_200244", "Name": { "key": "PassiveSkillDesc_200244", - "text": "攻击时对目标及其1格范围内的敌方单位额外造成[p2]士气压制,晴空天气下,对范围内的敌方支援单位额外造成盖尔菲斯特[p0]+[p1]单发伤害的总伤害。" + "text": "攻击时对目标及其1格范围内的敌方单位额外造成[p2]士气压制,晴天天气下,对范围内的敌方支援单位额外造成盖尔菲斯特[p0]+[p1]单发伤害的总伤害。" }, "Param0": "BuffConfig_ID_1302404_FloatParams_0_0", "Param1": "BuffConfig_ID_1302404_FloatParams_1_1", @@ -82863,7 +82873,7 @@ "Key": "PassiveSkillDesc_200245", "Name": { "key": "PassiveSkillDesc_200245", - "text": "攻击时对目标及其1格范围内的敌方单位额外造成[p2]士气压制,晴空天气下,对范围内的敌方支援单位额外造成盖尔菲斯特[p0]+[p1]单发伤害的总伤害。" + "text": "攻击时对目标及其1格范围内的敌方单位额外造成[p2]士气压制,晴天天气下,对范围内的敌方支援单位额外造成盖尔菲斯特[p0]+[p1]单发伤害的总伤害。" }, "Param0": "BuffConfig_ID_1302405_FloatParams_0_0", "Param1": "BuffConfig_ID_1302405_FloatParams_1_1", @@ -82883,7 +82893,7 @@ "Key": "PassiveSkillDesc_200251", "Name": { "key": "PassiveSkillDesc_200251", - "text": "所有友方单位获得【单发伤害提升Ⅰ】,晴空天气下,友方压制单位额外获得【免疫撤退】【射击速度提升Ⅰ】。" + "text": "所有友方单位获得【单发伤害提升Ⅰ】,晴天天气下,友方压制单位额外获得【免疫撤退】【射击速度提升Ⅰ】。" }, "Param0": "", "Param1": "", @@ -82893,7 +82903,7 @@ "Key": "PassiveSkillDesc_200252", "Name": { "key": "PassiveSkillDesc_200252", - "text": "所有友方单位获得【单发伤害提升Ⅱ】,晴空天气下,友方压制单位额外获得【免疫撤退】【射击速度提升Ⅱ】。" + "text": "所有友方单位获得【单发伤害提升Ⅱ】,晴天天气下,友方压制单位额外获得【免疫撤退】【射击速度提升Ⅱ】。" }, "Param0": "", "Param1": "", @@ -82903,7 +82913,7 @@ "Key": "PassiveSkillDesc_200253", "Name": { "key": "PassiveSkillDesc_200253", - "text": "所有友方单位获得【单发伤害提升Ⅲ】,晴空天气下,友方压制单位额外获得【免疫撤退】【射击速度提升Ⅲ。" + "text": "所有友方单位获得【单发伤害提升Ⅲ】,晴天天气下,友方压制单位额外获得【免疫撤退】【射击速度提升Ⅲ。" }, "Param0": "", "Param1": "", @@ -82913,7 +82923,7 @@ "Key": "PassiveSkillDesc_200254", "Name": { "key": "PassiveSkillDesc_200254", - "text": "所有友方单位获得【单发伤害提升Ⅳ】,晴空天气下,友方压制单位额外获得【免疫撤退】【射击速度提升Ⅳ】。" + "text": "所有友方单位获得【单发伤害提升Ⅳ】,晴天天气下,友方压制单位额外获得【免疫撤退】【射击速度提升Ⅳ】。" }, "Param0": "", "Param1": "", @@ -82923,7 +82933,7 @@ "Key": "PassiveSkillDesc_200255", "Name": { "key": "PassiveSkillDesc_200255", - "text": "所有友方单位获得【单发伤害提升Ⅴ】,晴空天气下,友方压制单位额外获得【免疫撤退】【射击速度提升Ⅴ】。" + "text": "所有友方单位获得【单发伤害提升Ⅴ】,晴天天气下,友方压制单位额外获得【免疫撤退】【射击速度提升Ⅴ】。" }, "Param0": "", "Param1": "", @@ -88043,7 +88053,7 @@ "Key": "PassiveSkill_1011", "Name": { "key": "PassiveSkill_1011", - "text": "平原领袖Lv1" + "text": "平原领袖Ⅰ" }, "Param0": "", "Param1": "", @@ -88053,7 +88063,7 @@ "Key": "PassiveSkill_1012", "Name": { "key": "PassiveSkill_1012", - "text": "平原领袖Lv2" + "text": "平原领袖Ⅱ" }, "Param0": "", "Param1": "", @@ -88063,7 +88073,7 @@ "Key": "PassiveSkill_1013", "Name": { "key": "PassiveSkill_1013", - "text": "平原领袖Lv3" + "text": "平原领袖Ⅲ" }, "Param0": "", "Param1": "", @@ -88073,7 +88083,7 @@ "Key": "PassiveSkill_1014", "Name": { "key": "PassiveSkill_1014", - "text": "平原领袖Lv4" + "text": "平原领袖Ⅳ" }, "Param0": "", "Param1": "", @@ -88083,7 +88093,7 @@ "Key": "PassiveSkill_1015", "Name": { "key": "PassiveSkill_1015", - "text": "平原领袖Lv5" + "text": "平原领袖Ⅴ" }, "Param0": "", "Param1": "", @@ -88093,7 +88103,7 @@ "Key": "PassiveSkill_1021", "Name": { "key": "PassiveSkill_1021", - "text": "平原生存Lv1" + "text": "平原生存Ⅰ" }, "Param0": "", "Param1": "", @@ -88103,7 +88113,7 @@ "Key": "PassiveSkill_1022", "Name": { "key": "PassiveSkill_1022", - "text": "平原生存Lv2" + "text": "平原生存Ⅱ" }, "Param0": "", "Param1": "", @@ -88113,7 +88123,7 @@ "Key": "PassiveSkill_1023", "Name": { "key": "PassiveSkill_1023", - "text": "平原生存Lv3" + "text": "平原生存Ⅲ" }, "Param0": "", "Param1": "", @@ -88123,7 +88133,7 @@ "Key": "PassiveSkill_1024", "Name": { "key": "PassiveSkill_1024", - "text": "平原生存Lv4" + "text": "平原生存Ⅳ" }, "Param0": "", "Param1": "", @@ -88133,7 +88143,7 @@ "Key": "PassiveSkill_1025", "Name": { "key": "PassiveSkill_1025", - "text": "平原生存Lv5" + "text": "平原生存Ⅴ" }, "Param0": "", "Param1": "", @@ -88143,7 +88153,7 @@ "Key": "PassiveSkill_1031", "Name": { "key": "PassiveSkill_1031", - "text": "平原射手Lv1" + "text": "平原射手Ⅰ" }, "Param0": "", "Param1": "", @@ -88153,7 +88163,7 @@ "Key": "PassiveSkill_1032", "Name": { "key": "PassiveSkill_1032", - "text": "平原射手Lv2" + "text": "平原射手Ⅱ" }, "Param0": "", "Param1": "", @@ -88163,7 +88173,7 @@ "Key": "PassiveSkill_1033", "Name": { "key": "PassiveSkill_1033", - "text": "平原射手Lv3" + "text": "平原射手Ⅲ" }, "Param0": "", "Param1": "", @@ -88173,7 +88183,7 @@ "Key": "PassiveSkill_1034", "Name": { "key": "PassiveSkill_1034", - "text": "平原射手Lv4" + "text": "平原射手Ⅳ" }, "Param0": "", "Param1": "", @@ -88183,7 +88193,7 @@ "Key": "PassiveSkill_1035", "Name": { "key": "PassiveSkill_1035", - "text": "平原射手Lv5" + "text": "平原射手Ⅴ" }, "Param0": "", "Param1": "", @@ -88193,7 +88203,7 @@ "Key": "PassiveSkill_1041", "Name": { "key": "PassiveSkill_1041", - "text": "平原专家Lv1" + "text": "平原专家Ⅰ" }, "Param0": "", "Param1": "", @@ -88203,7 +88213,7 @@ "Key": "PassiveSkill_1042", "Name": { "key": "PassiveSkill_1042", - "text": "平原专家Lv2" + "text": "平原专家Ⅱ" }, "Param0": "", "Param1": "", @@ -88213,7 +88223,7 @@ "Key": "PassiveSkill_1043", "Name": { "key": "PassiveSkill_1043", - "text": "平原专家Lv3" + "text": "平原专家Ⅲ" }, "Param0": "", "Param1": "", @@ -88223,7 +88233,7 @@ "Key": "PassiveSkill_1044", "Name": { "key": "PassiveSkill_1044", - "text": "平原专家Lv4" + "text": "平原专家Ⅳ" }, "Param0": "", "Param1": "", @@ -88233,7 +88243,7 @@ "Key": "PassiveSkill_1045", "Name": { "key": "PassiveSkill_1045", - "text": "平原专家Lv5" + "text": "平原专家Ⅴ" }, "Param0": "", "Param1": "", @@ -88243,7 +88253,7 @@ "Key": "PassiveSkill_1051", "Name": { "key": "PassiveSkill_1051", - "text": "平原之王Lv1" + "text": "平原之王Ⅰ" }, "Param0": "", "Param1": "", @@ -88253,7 +88263,7 @@ "Key": "PassiveSkill_1052", "Name": { "key": "PassiveSkill_1052", - "text": "平原之王Lv2" + "text": "平原之王Ⅱ" }, "Param0": "", "Param1": "", @@ -88263,7 +88273,7 @@ "Key": "PassiveSkill_1053", "Name": { "key": "PassiveSkill_1053", - "text": "平原之王Lv3" + "text": "平原之王Ⅲ" }, "Param0": "", "Param1": "", @@ -88273,7 +88283,7 @@ "Key": "PassiveSkill_1054", "Name": { "key": "PassiveSkill_1054", - "text": "平原之王Lv4" + "text": "平原之王Ⅳ" }, "Param0": "", "Param1": "", @@ -88283,7 +88293,7 @@ "Key": "PassiveSkill_1055", "Name": { "key": "PassiveSkill_1055", - "text": "平原之王Lv5" + "text": "平原之王Ⅴ" }, "Param0": "", "Param1": "", @@ -88293,7 +88303,7 @@ "Key": "PassiveSkill_1061", "Name": { "key": "PassiveSkill_1061", - "text": "平原杀手Lv1" + "text": "平原猎手Ⅰ" }, "Param0": "", "Param1": "", @@ -88303,7 +88313,7 @@ "Key": "PassiveSkill_1062", "Name": { "key": "PassiveSkill_1062", - "text": "平原杀手Lv2" + "text": "平原猎手Ⅱ" }, "Param0": "", "Param1": "", @@ -88313,7 +88323,7 @@ "Key": "PassiveSkill_1063", "Name": { "key": "PassiveSkill_1063", - "text": "平原杀手Lv3" + "text": "平原猎手Ⅲ" }, "Param0": "", "Param1": "", @@ -88323,7 +88333,7 @@ "Key": "PassiveSkill_1064", "Name": { "key": "PassiveSkill_1064", - "text": "平原杀手Lv4" + "text": "平原猎手Ⅳ" }, "Param0": "", "Param1": "", @@ -88333,7 +88343,7 @@ "Key": "PassiveSkill_1065", "Name": { "key": "PassiveSkill_1065", - "text": "平原杀手Lv5" + "text": "平原猎手Ⅴ" }, "Param0": "", "Param1": "", @@ -88343,7 +88353,7 @@ "Key": "PassiveSkill_2011", "Name": { "key": "PassiveSkill_2011", - "text": "山地领袖Lv1" + "text": "山地领袖Ⅰ" }, "Param0": "", "Param1": "", @@ -88353,7 +88363,7 @@ "Key": "PassiveSkill_2012", "Name": { "key": "PassiveSkill_2012", - "text": "山地领袖Lv2" + "text": "山地领袖Ⅱ" }, "Param0": "", "Param1": "", @@ -88363,7 +88373,7 @@ "Key": "PassiveSkill_2013", "Name": { "key": "PassiveSkill_2013", - "text": "山地领袖Lv3" + "text": "山地领袖Ⅲ" }, "Param0": "", "Param1": "", @@ -88373,7 +88383,7 @@ "Key": "PassiveSkill_2014", "Name": { "key": "PassiveSkill_2014", - "text": "山地领袖Lv4" + "text": "山地领袖Ⅳ" }, "Param0": "", "Param1": "", @@ -88383,7 +88393,7 @@ "Key": "PassiveSkill_2015", "Name": { "key": "PassiveSkill_2015", - "text": "山地领袖Lv5" + "text": "山地领袖Ⅴ" }, "Param0": "", "Param1": "", @@ -88393,7 +88403,7 @@ "Key": "PassiveSkill_2021", "Name": { "key": "PassiveSkill_2021", - "text": "山地生存Lv1" + "text": "山地生存Ⅰ" }, "Param0": "", "Param1": "", @@ -88403,7 +88413,7 @@ "Key": "PassiveSkill_2022", "Name": { "key": "PassiveSkill_2022", - "text": "山地生存Lv2" + "text": "山地生存Ⅱ" }, "Param0": "", "Param1": "", @@ -88413,7 +88423,7 @@ "Key": "PassiveSkill_2023", "Name": { "key": "PassiveSkill_2023", - "text": "山地生存Lv3" + "text": "山地生存Ⅲ" }, "Param0": "", "Param1": "", @@ -88423,7 +88433,7 @@ "Key": "PassiveSkill_2024", "Name": { "key": "PassiveSkill_2024", - "text": "山地生存Lv4" + "text": "山地生存Ⅳ" }, "Param0": "", "Param1": "", @@ -88433,7 +88443,7 @@ "Key": "PassiveSkill_2025", "Name": { "key": "PassiveSkill_2025", - "text": "山地生存Lv5" + "text": "山地生存Ⅴ" }, "Param0": "", "Param1": "", @@ -88443,7 +88453,7 @@ "Key": "PassiveSkill_2031", "Name": { "key": "PassiveSkill_2031", - "text": "山地射手Lv1" + "text": "山地射手Ⅰ" }, "Param0": "", "Param1": "", @@ -88453,7 +88463,7 @@ "Key": "PassiveSkill_2032", "Name": { "key": "PassiveSkill_2032", - "text": "山地射手Lv2" + "text": "山地射手Ⅱ" }, "Param0": "", "Param1": "", @@ -88463,7 +88473,7 @@ "Key": "PassiveSkill_2033", "Name": { "key": "PassiveSkill_2033", - "text": "山地射手Lv3" + "text": "山地射手Ⅲ" }, "Param0": "", "Param1": "", @@ -88473,7 +88483,7 @@ "Key": "PassiveSkill_2034", "Name": { "key": "PassiveSkill_2034", - "text": "山地射手Lv4" + "text": "山地射手Ⅳ" }, "Param0": "", "Param1": "", @@ -88483,7 +88493,7 @@ "Key": "PassiveSkill_2035", "Name": { "key": "PassiveSkill_2035", - "text": "山地射手Lv5" + "text": "山地射手Ⅴ" }, "Param0": "", "Param1": "", @@ -88493,7 +88503,7 @@ "Key": "PassiveSkill_2041", "Name": { "key": "PassiveSkill_2041", - "text": "山地专家Lv1" + "text": "山地专家Ⅰ" }, "Param0": "", "Param1": "", @@ -88503,7 +88513,7 @@ "Key": "PassiveSkill_2042", "Name": { "key": "PassiveSkill_2042", - "text": "山地专家Lv2" + "text": "山地专家Ⅱ" }, "Param0": "", "Param1": "", @@ -88513,7 +88523,7 @@ "Key": "PassiveSkill_2043", "Name": { "key": "PassiveSkill_2043", - "text": "山地专家Lv3" + "text": "山地专家Ⅲ" }, "Param0": "", "Param1": "", @@ -88523,7 +88533,7 @@ "Key": "PassiveSkill_2044", "Name": { "key": "PassiveSkill_2044", - "text": "山地专家Lv4" + "text": "山地专家Ⅳ" }, "Param0": "", "Param1": "", @@ -88533,7 +88543,7 @@ "Key": "PassiveSkill_2045", "Name": { "key": "PassiveSkill_2045", - "text": "山地专家Lv5" + "text": "山地专家Ⅴ" }, "Param0": "", "Param1": "", @@ -88543,7 +88553,7 @@ "Key": "PassiveSkill_2051", "Name": { "key": "PassiveSkill_2051", - "text": "山地之王Lv1" + "text": "山地之王Ⅰ" }, "Param0": "", "Param1": "", @@ -88553,7 +88563,7 @@ "Key": "PassiveSkill_2052", "Name": { "key": "PassiveSkill_2052", - "text": "山地之王Lv2" + "text": "山地之王Ⅱ" }, "Param0": "", "Param1": "", @@ -88563,7 +88573,7 @@ "Key": "PassiveSkill_2053", "Name": { "key": "PassiveSkill_2053", - "text": "山地之王Lv3" + "text": "山地之王Ⅲ" }, "Param0": "", "Param1": "", @@ -88573,7 +88583,7 @@ "Key": "PassiveSkill_2054", "Name": { "key": "PassiveSkill_2054", - "text": "山地之王Lv4" + "text": "山地之王Ⅳ" }, "Param0": "", "Param1": "", @@ -88583,7 +88593,7 @@ "Key": "PassiveSkill_2055", "Name": { "key": "PassiveSkill_2055", - "text": "山地之王Lv5" + "text": "山地之王Ⅴ" }, "Param0": "", "Param1": "", @@ -88593,7 +88603,7 @@ "Key": "PassiveSkill_2061", "Name": { "key": "PassiveSkill_2061", - "text": "山地杀手Lv1" + "text": "山地猎手Ⅰ" }, "Param0": "", "Param1": "", @@ -88603,7 +88613,7 @@ "Key": "PassiveSkill_2062", "Name": { "key": "PassiveSkill_2062", - "text": "山地杀手Lv2" + "text": "山地猎手Ⅱ" }, "Param0": "", "Param1": "", @@ -88613,7 +88623,7 @@ "Key": "PassiveSkill_2063", "Name": { "key": "PassiveSkill_2063", - "text": "山地杀手Lv3" + "text": "山地猎手Ⅲ" }, "Param0": "", "Param1": "", @@ -88623,7 +88633,7 @@ "Key": "PassiveSkill_2064", "Name": { "key": "PassiveSkill_2064", - "text": "山地杀手Lv4" + "text": "山地猎手Ⅳ" }, "Param0": "", "Param1": "", @@ -88633,7 +88643,7 @@ "Key": "PassiveSkill_2065", "Name": { "key": "PassiveSkill_2065", - "text": "山地杀手Lv5" + "text": "山地猎手Ⅴ" }, "Param0": "", "Param1": "", @@ -88643,7 +88653,7 @@ "Key": "PassiveSkill_3011", "Name": { "key": "PassiveSkill_3011", - "text": "草原领袖Lv1" + "text": "草原领袖Ⅰ" }, "Param0": "", "Param1": "", @@ -88653,7 +88663,7 @@ "Key": "PassiveSkill_3012", "Name": { "key": "PassiveSkill_3012", - "text": "草原领袖Lv2" + "text": "草原领袖Ⅱ" }, "Param0": "", "Param1": "", @@ -88663,7 +88673,7 @@ "Key": "PassiveSkill_3013", "Name": { "key": "PassiveSkill_3013", - "text": "草原领袖Lv3" + "text": "草原领袖Ⅲ" }, "Param0": "", "Param1": "", @@ -88673,7 +88683,7 @@ "Key": "PassiveSkill_3014", "Name": { "key": "PassiveSkill_3014", - "text": "草原领袖Lv4" + "text": "草原领袖Ⅳ" }, "Param0": "", "Param1": "", @@ -88683,7 +88693,7 @@ "Key": "PassiveSkill_3015", "Name": { "key": "PassiveSkill_3015", - "text": "草原领袖Lv5" + "text": "草原领袖Ⅴ" }, "Param0": "", "Param1": "", @@ -88693,7 +88703,7 @@ "Key": "PassiveSkill_3021", "Name": { "key": "PassiveSkill_3021", - "text": "草原生存Lv1" + "text": "草原生存Ⅰ" }, "Param0": "", "Param1": "", @@ -88703,7 +88713,7 @@ "Key": "PassiveSkill_3022", "Name": { "key": "PassiveSkill_3022", - "text": "草原生存Lv2" + "text": "草原生存Ⅱ" }, "Param0": "", "Param1": "", @@ -88713,7 +88723,7 @@ "Key": "PassiveSkill_3023", "Name": { "key": "PassiveSkill_3023", - "text": "草原生存Lv3" + "text": "草原生存Ⅲ" }, "Param0": "", "Param1": "", @@ -88723,7 +88733,7 @@ "Key": "PassiveSkill_3024", "Name": { "key": "PassiveSkill_3024", - "text": "草原生存Lv4" + "text": "草原生存Ⅳ" }, "Param0": "", "Param1": "", @@ -88733,7 +88743,7 @@ "Key": "PassiveSkill_3025", "Name": { "key": "PassiveSkill_3025", - "text": "草原生存Lv5" + "text": "草原生存Ⅴ" }, "Param0": "", "Param1": "", @@ -88743,7 +88753,7 @@ "Key": "PassiveSkill_3031", "Name": { "key": "PassiveSkill_3031", - "text": "草原射手Lv1" + "text": "草原射手Ⅰ" }, "Param0": "", "Param1": "", @@ -88753,7 +88763,7 @@ "Key": "PassiveSkill_3032", "Name": { "key": "PassiveSkill_3032", - "text": "草原射手Lv2" + "text": "草原射手Ⅱ" }, "Param0": "", "Param1": "", @@ -88763,7 +88773,7 @@ "Key": "PassiveSkill_3033", "Name": { "key": "PassiveSkill_3033", - "text": "草原射手Lv3" + "text": "草原射手Ⅲ" }, "Param0": "", "Param1": "", @@ -88773,7 +88783,7 @@ "Key": "PassiveSkill_3034", "Name": { "key": "PassiveSkill_3034", - "text": "草原射手Lv4" + "text": "草原射手Ⅳ" }, "Param0": "", "Param1": "", @@ -88783,7 +88793,7 @@ "Key": "PassiveSkill_3035", "Name": { "key": "PassiveSkill_3035", - "text": "草原射手Lv5" + "text": "草原射手Ⅴ" }, "Param0": "", "Param1": "", @@ -88793,7 +88803,7 @@ "Key": "PassiveSkill_3041", "Name": { "key": "PassiveSkill_3041", - "text": "草原专家Lv1" + "text": "草原专家Ⅰ" }, "Param0": "", "Param1": "", @@ -88803,7 +88813,7 @@ "Key": "PassiveSkill_3042", "Name": { "key": "PassiveSkill_3042", - "text": "草原专家Lv2" + "text": "草原专家Ⅱ" }, "Param0": "", "Param1": "", @@ -88813,7 +88823,7 @@ "Key": "PassiveSkill_3043", "Name": { "key": "PassiveSkill_3043", - "text": "草原专家Lv3" + "text": "草原专家Ⅲ" }, "Param0": "", "Param1": "", @@ -88823,7 +88833,7 @@ "Key": "PassiveSkill_3044", "Name": { "key": "PassiveSkill_3044", - "text": "草原专家Lv4" + "text": "草原专家Ⅳ" }, "Param0": "", "Param1": "", @@ -88833,7 +88843,7 @@ "Key": "PassiveSkill_3045", "Name": { "key": "PassiveSkill_3045", - "text": "草原专家Lv5" + "text": "草原专家Ⅴ" }, "Param0": "", "Param1": "", @@ -88843,7 +88853,7 @@ "Key": "PassiveSkill_3051", "Name": { "key": "PassiveSkill_3051", - "text": "草原之王Lv1" + "text": "草原之王Ⅰ" }, "Param0": "", "Param1": "", @@ -88853,7 +88863,7 @@ "Key": "PassiveSkill_3052", "Name": { "key": "PassiveSkill_3052", - "text": "草原之王Lv2" + "text": "草原之王Ⅱ" }, "Param0": "", "Param1": "", @@ -88863,7 +88873,7 @@ "Key": "PassiveSkill_3053", "Name": { "key": "PassiveSkill_3053", - "text": "草原之王Lv3" + "text": "草原之王Ⅲ" }, "Param0": "", "Param1": "", @@ -88873,7 +88883,7 @@ "Key": "PassiveSkill_3054", "Name": { "key": "PassiveSkill_3054", - "text": "草原之王Lv4" + "text": "草原之王Ⅳ" }, "Param0": "", "Param1": "", @@ -88883,7 +88893,7 @@ "Key": "PassiveSkill_3055", "Name": { "key": "PassiveSkill_3055", - "text": "草原之王Lv5" + "text": "草原之王Ⅴ" }, "Param0": "", "Param1": "", @@ -88893,7 +88903,7 @@ "Key": "PassiveSkill_3061", "Name": { "key": "PassiveSkill_3061", - "text": "草原杀手Lv1" + "text": "草原猎手Ⅰ" }, "Param0": "", "Param1": "", @@ -88903,7 +88913,7 @@ "Key": "PassiveSkill_3062", "Name": { "key": "PassiveSkill_3062", - "text": "草原杀手Lv2" + "text": "草原猎手Ⅱ" }, "Param0": "", "Param1": "", @@ -88913,7 +88923,7 @@ "Key": "PassiveSkill_3063", "Name": { "key": "PassiveSkill_3063", - "text": "草原杀手Lv3" + "text": "草原猎手Ⅲ" }, "Param0": "", "Param1": "", @@ -88923,7 +88933,7 @@ "Key": "PassiveSkill_3064", "Name": { "key": "PassiveSkill_3064", - "text": "草原杀手Lv4" + "text": "草原猎手Ⅳ" }, "Param0": "", "Param1": "", @@ -88933,7 +88943,7 @@ "Key": "PassiveSkill_3065", "Name": { "key": "PassiveSkill_3065", - "text": "草原杀手Lv5" + "text": "草原猎手Ⅴ" }, "Param0": "", "Param1": "", @@ -88943,7 +88953,7 @@ "Key": "PassiveSkill_4011", "Name": { "key": "PassiveSkill_4011", - "text": "林地领袖Lv1" + "text": "林地领袖Ⅰ" }, "Param0": "", "Param1": "", @@ -88953,7 +88963,7 @@ "Key": "PassiveSkill_4012", "Name": { "key": "PassiveSkill_4012", - "text": "林地领袖Lv2" + "text": "林地领袖Ⅱ" }, "Param0": "", "Param1": "", @@ -88963,7 +88973,7 @@ "Key": "PassiveSkill_4013", "Name": { "key": "PassiveSkill_4013", - "text": "林地领袖Lv3" + "text": "林地领袖Ⅲ" }, "Param0": "", "Param1": "", @@ -88973,7 +88983,7 @@ "Key": "PassiveSkill_4014", "Name": { "key": "PassiveSkill_4014", - "text": "林地领袖Lv4" + "text": "林地领袖Ⅳ" }, "Param0": "", "Param1": "", @@ -88983,7 +88993,7 @@ "Key": "PassiveSkill_4015", "Name": { "key": "PassiveSkill_4015", - "text": "林地领袖Lv5" + "text": "林地领袖Ⅴ" }, "Param0": "", "Param1": "", @@ -88993,7 +89003,7 @@ "Key": "PassiveSkill_4021", "Name": { "key": "PassiveSkill_4021", - "text": "林地生存Lv1" + "text": "林地生存Ⅰ" }, "Param0": "", "Param1": "", @@ -89003,7 +89013,7 @@ "Key": "PassiveSkill_4022", "Name": { "key": "PassiveSkill_4022", - "text": "林地生存Lv2" + "text": "林地生存Ⅱ" }, "Param0": "", "Param1": "", @@ -89013,7 +89023,7 @@ "Key": "PassiveSkill_4023", "Name": { "key": "PassiveSkill_4023", - "text": "林地生存Lv3" + "text": "林地生存Ⅲ" }, "Param0": "", "Param1": "", @@ -89023,7 +89033,7 @@ "Key": "PassiveSkill_4024", "Name": { "key": "PassiveSkill_4024", - "text": "林地生存Lv4" + "text": "林地生存Ⅳ" }, "Param0": "", "Param1": "", @@ -89033,7 +89043,7 @@ "Key": "PassiveSkill_4025", "Name": { "key": "PassiveSkill_4025", - "text": "林地生存Lv5" + "text": "林地生存Ⅴ" }, "Param0": "", "Param1": "", @@ -89043,7 +89053,7 @@ "Key": "PassiveSkill_4031", "Name": { "key": "PassiveSkill_4031", - "text": "林地射手Lv1" + "text": "林地射手Ⅰ" }, "Param0": "", "Param1": "", @@ -89053,7 +89063,7 @@ "Key": "PassiveSkill_4032", "Name": { "key": "PassiveSkill_4032", - "text": "林地射手Lv2" + "text": "林地射手Ⅱ" }, "Param0": "", "Param1": "", @@ -89063,7 +89073,7 @@ "Key": "PassiveSkill_4033", "Name": { "key": "PassiveSkill_4033", - "text": "林地射手Lv3" + "text": "林地射手Ⅲ" }, "Param0": "", "Param1": "", @@ -89073,7 +89083,7 @@ "Key": "PassiveSkill_4034", "Name": { "key": "PassiveSkill_4034", - "text": "林地射手Lv4" + "text": "林地射手Ⅳ" }, "Param0": "", "Param1": "", @@ -89083,7 +89093,7 @@ "Key": "PassiveSkill_4035", "Name": { "key": "PassiveSkill_4035", - "text": "林地射手Lv5" + "text": "林地射手Ⅴ" }, "Param0": "", "Param1": "", @@ -89093,7 +89103,7 @@ "Key": "PassiveSkill_4041", "Name": { "key": "PassiveSkill_4041", - "text": "林地专家Lv1" + "text": "林地专家Ⅰ" }, "Param0": "", "Param1": "", @@ -89103,7 +89113,7 @@ "Key": "PassiveSkill_4042", "Name": { "key": "PassiveSkill_4042", - "text": "林地专家Lv2" + "text": "林地专家Ⅱ" }, "Param0": "", "Param1": "", @@ -89113,7 +89123,7 @@ "Key": "PassiveSkill_4043", "Name": { "key": "PassiveSkill_4043", - "text": "林地专家Lv3" + "text": "林地专家Ⅲ" }, "Param0": "", "Param1": "", @@ -89123,7 +89133,7 @@ "Key": "PassiveSkill_4044", "Name": { "key": "PassiveSkill_4044", - "text": "林地专家Lv4" + "text": "林地专家Ⅳ" }, "Param0": "", "Param1": "", @@ -89133,7 +89143,7 @@ "Key": "PassiveSkill_4045", "Name": { "key": "PassiveSkill_4045", - "text": "林地专家Lv5" + "text": "林地专家Ⅴ" }, "Param0": "", "Param1": "", @@ -89143,7 +89153,7 @@ "Key": "PassiveSkill_4051", "Name": { "key": "PassiveSkill_4051", - "text": "林地之王Lv1" + "text": "林地之王Ⅰ" }, "Param0": "", "Param1": "", @@ -89153,7 +89163,7 @@ "Key": "PassiveSkill_4052", "Name": { "key": "PassiveSkill_4052", - "text": "林地之王Lv2" + "text": "林地之王Ⅱ" }, "Param0": "", "Param1": "", @@ -89163,7 +89173,7 @@ "Key": "PassiveSkill_4053", "Name": { "key": "PassiveSkill_4053", - "text": "林地之王Lv3" + "text": "林地之王Ⅲ" }, "Param0": "", "Param1": "", @@ -89173,7 +89183,7 @@ "Key": "PassiveSkill_4054", "Name": { "key": "PassiveSkill_4054", - "text": "林地之王Lv4" + "text": "林地之王Ⅳ" }, "Param0": "", "Param1": "", @@ -89183,7 +89193,7 @@ "Key": "PassiveSkill_4055", "Name": { "key": "PassiveSkill_4055", - "text": "林地之王Lv5" + "text": "林地之王Ⅴ" }, "Param0": "", "Param1": "", @@ -89193,7 +89203,7 @@ "Key": "PassiveSkill_4061", "Name": { "key": "PassiveSkill_4061", - "text": "林地杀手Lv1" + "text": "林地猎手Ⅰ" }, "Param0": "", "Param1": "", @@ -89203,7 +89213,7 @@ "Key": "PassiveSkill_4062", "Name": { "key": "PassiveSkill_4062", - "text": "林地杀手Lv2" + "text": "林地猎手Ⅱ" }, "Param0": "", "Param1": "", @@ -89213,7 +89223,7 @@ "Key": "PassiveSkill_4063", "Name": { "key": "PassiveSkill_4063", - "text": "林地杀手Lv3" + "text": "林地猎手Ⅲ" }, "Param0": "", "Param1": "", @@ -89223,7 +89233,7 @@ "Key": "PassiveSkill_4064", "Name": { "key": "PassiveSkill_4064", - "text": "林地杀手Lv4" + "text": "林地猎手Ⅳ" }, "Param0": "", "Param1": "", @@ -89233,7 +89243,7 @@ "Key": "PassiveSkill_4065", "Name": { "key": "PassiveSkill_4065", - "text": "林地杀手Lv5" + "text": "林地猎手Ⅴ" }, "Param0": "", "Param1": "", @@ -89243,7 +89253,7 @@ "Key": "PassiveSkill_5011", "Name": { "key": "PassiveSkill_5011", - "text": "雪地领袖Lv1" + "text": "雪地领袖Ⅰ" }, "Param0": "", "Param1": "", @@ -89253,7 +89263,7 @@ "Key": "PassiveSkill_5012", "Name": { "key": "PassiveSkill_5012", - "text": "雪地领袖Lv2" + "text": "雪地领袖Ⅱ" }, "Param0": "", "Param1": "", @@ -89263,7 +89273,7 @@ "Key": "PassiveSkill_5013", "Name": { "key": "PassiveSkill_5013", - "text": "雪地领袖Lv3" + "text": "雪地领袖Ⅲ" }, "Param0": "", "Param1": "", @@ -89273,7 +89283,7 @@ "Key": "PassiveSkill_5014", "Name": { "key": "PassiveSkill_5014", - "text": "雪地领袖Lv4" + "text": "雪地领袖Ⅳ" }, "Param0": "", "Param1": "", @@ -89283,7 +89293,7 @@ "Key": "PassiveSkill_5015", "Name": { "key": "PassiveSkill_5015", - "text": "雪地领袖Lv5" + "text": "雪地领袖Ⅴ" }, "Param0": "", "Param1": "", @@ -89293,7 +89303,7 @@ "Key": "PassiveSkill_5021", "Name": { "key": "PassiveSkill_5021", - "text": "雪地生存Lv1" + "text": "雪地生存Ⅰ" }, "Param0": "", "Param1": "", @@ -89303,7 +89313,7 @@ "Key": "PassiveSkill_5022", "Name": { "key": "PassiveSkill_5022", - "text": "雪地生存Lv2" + "text": "雪地生存Ⅱ" }, "Param0": "", "Param1": "", @@ -89313,7 +89323,7 @@ "Key": "PassiveSkill_5023", "Name": { "key": "PassiveSkill_5023", - "text": "雪地生存Lv3" + "text": "雪地生存Ⅲ" }, "Param0": "", "Param1": "", @@ -89323,7 +89333,7 @@ "Key": "PassiveSkill_5024", "Name": { "key": "PassiveSkill_5024", - "text": "雪地生存Lv4" + "text": "雪地生存Ⅳ" }, "Param0": "", "Param1": "", @@ -89333,7 +89343,7 @@ "Key": "PassiveSkill_5025", "Name": { "key": "PassiveSkill_5025", - "text": "雪地生存Lv5" + "text": "雪地生存Ⅴ" }, "Param0": "", "Param1": "", @@ -89343,7 +89353,7 @@ "Key": "PassiveSkill_5031", "Name": { "key": "PassiveSkill_5031", - "text": "雪地射手Lv1" + "text": "雪地射手Ⅰ" }, "Param0": "", "Param1": "", @@ -89353,7 +89363,7 @@ "Key": "PassiveSkill_5032", "Name": { "key": "PassiveSkill_5032", - "text": "雪地射手Lv2" + "text": "雪地射手Ⅱ" }, "Param0": "", "Param1": "", @@ -89363,7 +89373,7 @@ "Key": "PassiveSkill_5033", "Name": { "key": "PassiveSkill_5033", - "text": "雪地射手Lv3" + "text": "雪地射手Ⅲ" }, "Param0": "", "Param1": "", @@ -89373,7 +89383,7 @@ "Key": "PassiveSkill_5034", "Name": { "key": "PassiveSkill_5034", - "text": "雪地射手Lv4" + "text": "雪地射手Ⅳ" }, "Param0": "", "Param1": "", @@ -89383,7 +89393,7 @@ "Key": "PassiveSkill_5035", "Name": { "key": "PassiveSkill_5035", - "text": "雪地射手Lv5" + "text": "雪地射手Ⅴ" }, "Param0": "", "Param1": "", @@ -89393,7 +89403,7 @@ "Key": "PassiveSkill_5041", "Name": { "key": "PassiveSkill_5041", - "text": "雪地专家Lv1" + "text": "雪地专家Ⅰ" }, "Param0": "", "Param1": "", @@ -89403,7 +89413,7 @@ "Key": "PassiveSkill_5042", "Name": { "key": "PassiveSkill_5042", - "text": "雪地专家Lv2" + "text": "雪地专家Ⅱ" }, "Param0": "", "Param1": "", @@ -89413,7 +89423,7 @@ "Key": "PassiveSkill_5043", "Name": { "key": "PassiveSkill_5043", - "text": "雪地专家Lv3" + "text": "雪地专家Ⅲ" }, "Param0": "", "Param1": "", @@ -89423,7 +89433,7 @@ "Key": "PassiveSkill_5044", "Name": { "key": "PassiveSkill_5044", - "text": "雪地专家Lv4" + "text": "雪地专家Ⅳ" }, "Param0": "", "Param1": "", @@ -89433,7 +89443,7 @@ "Key": "PassiveSkill_5045", "Name": { "key": "PassiveSkill_5045", - "text": "雪地专家Lv5" + "text": "雪地专家Ⅴ" }, "Param0": "", "Param1": "", @@ -89443,7 +89453,7 @@ "Key": "PassiveSkill_5051", "Name": { "key": "PassiveSkill_5051", - "text": "雪地之王Lv1" + "text": "雪地之王Ⅰ" }, "Param0": "", "Param1": "", @@ -89453,7 +89463,7 @@ "Key": "PassiveSkill_5052", "Name": { "key": "PassiveSkill_5052", - "text": "雪地之王Lv2" + "text": "雪地之王Ⅱ" }, "Param0": "", "Param1": "", @@ -89463,7 +89473,7 @@ "Key": "PassiveSkill_5053", "Name": { "key": "PassiveSkill_5053", - "text": "雪地之王Lv3" + "text": "雪地之王Ⅲ" }, "Param0": "", "Param1": "", @@ -89473,7 +89483,7 @@ "Key": "PassiveSkill_5054", "Name": { "key": "PassiveSkill_5054", - "text": "雪地之王Lv4" + "text": "雪地之王Ⅳ" }, "Param0": "", "Param1": "", @@ -89483,7 +89493,7 @@ "Key": "PassiveSkill_5055", "Name": { "key": "PassiveSkill_5055", - "text": "雪地之王Lv5" + "text": "雪地之王Ⅴ" }, "Param0": "", "Param1": "", @@ -89493,7 +89503,7 @@ "Key": "PassiveSkill_5061", "Name": { "key": "PassiveSkill_5061", - "text": "雪地杀手Lv1" + "text": "雪地猎手Ⅰ" }, "Param0": "", "Param1": "", @@ -89503,7 +89513,7 @@ "Key": "PassiveSkill_5062", "Name": { "key": "PassiveSkill_5062", - "text": "雪地杀手Lv2" + "text": "雪地猎手Ⅱ" }, "Param0": "", "Param1": "", @@ -89513,7 +89523,7 @@ "Key": "PassiveSkill_5063", "Name": { "key": "PassiveSkill_5063", - "text": "雪地杀手Lv3" + "text": "雪地猎手Ⅲ" }, "Param0": "", "Param1": "", @@ -89523,7 +89533,7 @@ "Key": "PassiveSkill_5064", "Name": { "key": "PassiveSkill_5064", - "text": "雪地杀手Lv4" + "text": "雪地猎手Ⅳ" }, "Param0": "", "Param1": "", @@ -89533,7 +89543,7 @@ "Key": "PassiveSkill_5065", "Name": { "key": "PassiveSkill_5065", - "text": "雪地杀手Lv5" + "text": "雪地猎手Ⅴ" }, "Param0": "", "Param1": "", @@ -89543,7 +89553,7 @@ "Key": "PassiveSkill_6011", "Name": { "key": "PassiveSkill_6011", - "text": "泥地领袖Lv1" + "text": "泥地领袖Ⅰ" }, "Param0": "", "Param1": "", @@ -89553,7 +89563,7 @@ "Key": "PassiveSkill_6012", "Name": { "key": "PassiveSkill_6012", - "text": "泥地领袖Lv2" + "text": "泥地领袖Ⅱ" }, "Param0": "", "Param1": "", @@ -89563,7 +89573,7 @@ "Key": "PassiveSkill_6013", "Name": { "key": "PassiveSkill_6013", - "text": "泥地领袖Lv3" + "text": "泥地领袖Ⅲ" }, "Param0": "", "Param1": "", @@ -89573,7 +89583,7 @@ "Key": "PassiveSkill_6014", "Name": { "key": "PassiveSkill_6014", - "text": "泥地领袖Lv4" + "text": "泥地领袖Ⅳ" }, "Param0": "", "Param1": "", @@ -89583,7 +89593,7 @@ "Key": "PassiveSkill_6015", "Name": { "key": "PassiveSkill_6015", - "text": "泥地领袖Lv5" + "text": "泥地领袖Ⅴ" }, "Param0": "", "Param1": "", @@ -89593,7 +89603,7 @@ "Key": "PassiveSkill_6021", "Name": { "key": "PassiveSkill_6021", - "text": "泥地生存Lv1" + "text": "泥地生存Ⅰ" }, "Param0": "", "Param1": "", @@ -89603,7 +89613,7 @@ "Key": "PassiveSkill_6022", "Name": { "key": "PassiveSkill_6022", - "text": "泥地生存Lv2" + "text": "泥地生存Ⅱ" }, "Param0": "", "Param1": "", @@ -89613,7 +89623,7 @@ "Key": "PassiveSkill_6023", "Name": { "key": "PassiveSkill_6023", - "text": "泥地生存Lv3" + "text": "泥地生存Ⅲ" }, "Param0": "", "Param1": "", @@ -89623,7 +89633,7 @@ "Key": "PassiveSkill_6024", "Name": { "key": "PassiveSkill_6024", - "text": "泥地生存Lv4" + "text": "泥地生存Ⅳ" }, "Param0": "", "Param1": "", @@ -89633,7 +89643,7 @@ "Key": "PassiveSkill_6025", "Name": { "key": "PassiveSkill_6025", - "text": "泥地生存Lv5" + "text": "泥地生存Ⅴ" }, "Param0": "", "Param1": "", @@ -89643,7 +89653,7 @@ "Key": "PassiveSkill_6031", "Name": { "key": "PassiveSkill_6031", - "text": "泥地射手Lv1" + "text": "泥地射手Ⅰ" }, "Param0": "", "Param1": "", @@ -89653,7 +89663,7 @@ "Key": "PassiveSkill_6032", "Name": { "key": "PassiveSkill_6032", - "text": "泥地射手Lv2" + "text": "泥地射手Ⅱ" }, "Param0": "", "Param1": "", @@ -89663,7 +89673,7 @@ "Key": "PassiveSkill_6033", "Name": { "key": "PassiveSkill_6033", - "text": "泥地射手Lv3" + "text": "泥地射手Ⅲ" }, "Param0": "", "Param1": "", @@ -89673,7 +89683,7 @@ "Key": "PassiveSkill_6034", "Name": { "key": "PassiveSkill_6034", - "text": "泥地射手Lv4" + "text": "泥地射手Ⅳ" }, "Param0": "", "Param1": "", @@ -89683,7 +89693,7 @@ "Key": "PassiveSkill_6035", "Name": { "key": "PassiveSkill_6035", - "text": "泥地射手Lv5" + "text": "泥地射手Ⅴ" }, "Param0": "", "Param1": "", @@ -89693,7 +89703,7 @@ "Key": "PassiveSkill_6041", "Name": { "key": "PassiveSkill_6041", - "text": "泥地专家Lv1" + "text": "泥地专家Ⅰ" }, "Param0": "", "Param1": "", @@ -89703,7 +89713,7 @@ "Key": "PassiveSkill_6042", "Name": { "key": "PassiveSkill_6042", - "text": "泥地专家Lv2" + "text": "泥地专家Ⅱ" }, "Param0": "", "Param1": "", @@ -89713,7 +89723,7 @@ "Key": "PassiveSkill_6043", "Name": { "key": "PassiveSkill_6043", - "text": "泥地专家Lv3" + "text": "泥地专家Ⅲ" }, "Param0": "", "Param1": "", @@ -89723,7 +89733,7 @@ "Key": "PassiveSkill_6044", "Name": { "key": "PassiveSkill_6044", - "text": "泥地专家Lv4" + "text": "泥地专家Ⅳ" }, "Param0": "", "Param1": "", @@ -89733,7 +89743,7 @@ "Key": "PassiveSkill_6045", "Name": { "key": "PassiveSkill_6045", - "text": "泥地专家Lv5" + "text": "泥地专家Ⅴ" }, "Param0": "", "Param1": "", @@ -89743,7 +89753,7 @@ "Key": "PassiveSkill_6051", "Name": { "key": "PassiveSkill_6051", - "text": "泥地之王Lv1" + "text": "泥地之王Ⅰ" }, "Param0": "", "Param1": "", @@ -89753,7 +89763,7 @@ "Key": "PassiveSkill_6052", "Name": { "key": "PassiveSkill_6052", - "text": "泥地之王Lv2" + "text": "泥地之王Ⅱ" }, "Param0": "", "Param1": "", @@ -89763,7 +89773,7 @@ "Key": "PassiveSkill_6053", "Name": { "key": "PassiveSkill_6053", - "text": "泥地之王Lv3" + "text": "泥地之王Ⅲ" }, "Param0": "", "Param1": "", @@ -89773,7 +89783,7 @@ "Key": "PassiveSkill_6054", "Name": { "key": "PassiveSkill_6054", - "text": "泥地之王Lv4" + "text": "泥地之王Ⅳ" }, "Param0": "", "Param1": "", @@ -89783,7 +89793,7 @@ "Key": "PassiveSkill_6055", "Name": { "key": "PassiveSkill_6055", - "text": "泥地之王Lv5" + "text": "泥地之王Ⅴ" }, "Param0": "", "Param1": "", @@ -89793,7 +89803,7 @@ "Key": "PassiveSkill_6061", "Name": { "key": "PassiveSkill_6061", - "text": "泥地杀手Lv1" + "text": "泥地猎手Ⅰ" }, "Param0": "", "Param1": "", @@ -89803,7 +89813,7 @@ "Key": "PassiveSkill_6062", "Name": { "key": "PassiveSkill_6062", - "text": "泥地杀手Lv2" + "text": "泥地猎手Ⅱ" }, "Param0": "", "Param1": "", @@ -89813,7 +89823,7 @@ "Key": "PassiveSkill_6063", "Name": { "key": "PassiveSkill_6063", - "text": "泥地杀手Lv3" + "text": "泥地猎手Ⅲ" }, "Param0": "", "Param1": "", @@ -89823,7 +89833,7 @@ "Key": "PassiveSkill_6064", "Name": { "key": "PassiveSkill_6064", - "text": "泥地杀手Lv4" + "text": "泥地猎手Ⅳ" }, "Param0": "", "Param1": "", @@ -89833,7 +89843,7 @@ "Key": "PassiveSkill_6065", "Name": { "key": "PassiveSkill_6065", - "text": "泥地杀手Lv5" + "text": "泥地猎手Ⅴ" }, "Param0": "", "Param1": "", @@ -98873,7 +98883,7 @@ "Key": "ItemIntroduction_102011", "Name": { "key": "ItemIntroduction_102011", - "text": "联合领势力角色的低级考核材料。\n\n“空气在颤抖,仿佛天空在燃烧。”" + "text": "联合领势力战斗员的低级考核材料。\n\n“空气在颤抖,仿佛天空在燃烧。”" }, "Param0": "", "Param1": "", @@ -98883,7 +98893,7 @@ "Key": "ItemIntroduction_102012", "Name": { "key": "ItemIntroduction_102012", - "text": "联合领势力角色的中级考核材料。\n\n“有时候两个人中的一个难免要离开…但他是为了,尽快归来。”" + "text": "联合领势力战斗员的中级考核材料。\n\n“有时候两个人中的一个难免要离开……但他是为了,尽快归来。”" }, "Param0": "", "Param1": "", @@ -98893,7 +98903,7 @@ "Key": "ItemIntroduction_102013", "Name": { "key": "ItemIntroduction_102013", - "text": "联合领势力角色的高级考核材料。\n\n“你哭什么呀,你瞧,胜利了!战争结束了!”" + "text": "联合领势力战斗员的高级考核材料。\n\n“你哭什么呀,你瞧,胜利了!战争结束了!”" }, "Param0": "", "Param1": "", @@ -98903,7 +98913,7 @@ "Key": "ItemIntroduction_102021", "Name": { "key": "ItemIntroduction_102021", - "text": "露维拉势力角色的低级考核材料。\n\n从最低级的看守到最显赫的旗队统帅——所有骑士一律平等。" + "text": "露维拉势力战斗员的低级考核材料。\n\n从最低级的看守到最显赫的旗队统帅——所有骑士一律平等。" }, "Param0": "", "Param1": "", @@ -98913,7 +98923,7 @@ "Key": "ItemIntroduction_102022", "Name": { "key": "ItemIntroduction_102022", - "text": "露维拉势力角色的中级考核材料。\n\n每名扈从的背包里都有一根团长的棱锤权标。" + "text": "露维拉势力战斗员的中级考核材料。\n\n每名扈从的背包里都有一根团长的棱锤权标。" }, "Param0": "", "Param1": "", @@ -98923,7 +98933,7 @@ "Key": "ItemIntroduction_102023", "Name": { "key": "ItemIntroduction_102023", - "text": "露维拉势力角色的高级考核材料。\n\n象征了游侠的传统精神:勇敢,伸张正义。原产于地球。" + "text": "露维拉势力战斗员的高级考核材料。\n\n象征了游侠的传统精神:勇敢,伸张正义。原产于地球。" }, "Param0": "", "Param1": "", @@ -98933,7 +98943,7 @@ "Key": "ItemIntroduction_102031", "Name": { "key": "ItemIntroduction_102031", - "text": "瓦伦提亚势力角色的低级考核材料。\n\n地球并非净土,天外自有圣月。" + "text": "瓦伦提亚势力战斗员的低级考核材料。\n\n地球并非净土,天外自有圣月。" }, "Param0": "", "Param1": "", @@ -98943,7 +98953,7 @@ "Key": "ItemIntroduction_102032", "Name": { "key": "ItemIntroduction_102032", - "text": "瓦伦提亚势力角色的中级考核材料。\n\n一颗念珠象征一年修习,正式修女至少有代表“抄写员”的12颗。" + "text": "瓦伦提亚势力战斗员的中级考核材料。\n\n一颗念珠象征一年修习,正式修女至少有代表“抄写员”的12颗。" }, "Param0": "", "Param1": "", @@ -98953,7 +98963,7 @@ "Key": "ItemIntroduction_102033", "Name": { "key": "ItemIntroduction_102033", - "text": "瓦伦提亚势力角色的高级考核材料。\n\n圣月之力足够强大,但缺了点炫酷的光芒。" + "text": "瓦伦提亚势力战斗员的高级考核材料。\n\n圣月之力足够强大,但缺了点炫酷的光芒。" }, "Param0": "", "Param1": "", @@ -98963,7 +98973,7 @@ "Key": "ItemIntroduction_102041", "Name": { "key": "ItemIntroduction_102041", - "text": "扎拉布山区势力角色的低级考核材料。\n\n“子弹出膛以前,枪械受到的后坐力是极微小的”。" + "text": "扎拉布山区势力战斗员的低级考核材料。\n\n“子弹出膛以前,枪械受到的后坐力是极微小的”。" }, "Param0": "", "Param1": "", @@ -98973,7 +98983,7 @@ "Key": "ItemIntroduction_102042", "Name": { "key": "ItemIntroduction_102042", - "text": "扎拉布山区势力角色的中级考核材料。\n\n“看到原子弹爆炸闪光时,立即就地扑倒,脸朝下,眼紧闭,嘴半张。”" + "text": "扎拉布山区势力战斗员的中级考核材料。\n\n“看到原子弹爆炸闪光时,立即就地扑倒,脸朝下,眼紧闭,嘴半张。”" }, "Param0": "", "Param1": "", @@ -98983,7 +98993,7 @@ "Key": "ItemIntroduction_102043", "Name": { "key": "ItemIntroduction_102043", - "text": "扎拉布山区势力角色的高级考核材料。\n\n“在敌红外夜视器材观察的方向,可设置反光物体,造成敌之错觉。”" + "text": "扎拉布山区势力战斗员的高级考核材料。\n\n“在敌红外夜视器材观察的方向,可设置反光物体,造成敌之错觉。”" }, "Param0": "", "Param1": "", @@ -98993,7 +99003,7 @@ "Key": "ItemIntroduction_102051", "Name": { "key": "ItemIntroduction_102051", - "text": "协约组织势力角色的低级考核材料。\n\n由车辆变形组合为巨大机器人的儿童玩具,最终大部分销售量由成年人贡献。" + "text": "协约组织势力战斗员的低级考核材料。\n\n由车辆变形组合为巨大机器人的儿童玩具,最终大部分销售量由成年人贡献。" }, "Param0": "", "Param1": "", @@ -99003,7 +99013,7 @@ "Key": "ItemIntroduction_102052", "Name": { "key": "ItemIntroduction_102052", - "text": "协约组织势力角色的中级考核材料。\n\n“准尉,头号通缉目标,赏金五千万威镑。”" + "text": "协约组织势力战斗员的中级考核材料。\n\n“准尉,头号通缉目标,赏金五千万威镑。”" }, "Param0": "", "Param1": "", @@ -99013,7 +99023,7 @@ "Key": "ItemIntroduction_102053", "Name": { "key": "ItemIntroduction_102053", - "text": "协约组织势力角色的高级考核材料。\n\n最初的登月宇航员很想在诺克斯星球上发现它。" + "text": "协约组织势力战斗员的高级考核材料。\n\n最初的登月宇航员很想在诺克斯星球上发现它。" }, "Param0": "", "Param1": "", @@ -99023,7 +99033,7 @@ "Key": "ItemIntroduction_102061", "Name": { "key": "ItemIntroduction_102061", - "text": "前联盟地区势力角色的低级考核材料。\n\n联盟人在太空是无敌的!" + "text": "前联盟地区势力战斗员的低级考核材料。\n\n联盟人在太空是无敌的!" }, "Param0": "", "Param1": "", @@ -99033,7 +99043,7 @@ "Key": "ItemIntroduction_102062", "Name": { "key": "ItemIntroduction_102062", - "text": "前联盟地区势力角色的中级考核材料。\n\n傻瓜才会在飞船里用铅笔。" + "text": "前联盟地区势力战斗员的中级考核材料。\n\n傻瓜才会在飞船里用铅笔。" }, "Param0": "", "Param1": "", @@ -99043,7 +99053,7 @@ "Key": "ItemIntroduction_102063", "Name": { "key": "ItemIntroduction_102063", - "text": "前联盟地区势力角色的高级考核材料。\n\n每个青年都想成为加加林。" + "text": "前联盟地区势力战斗员的高级考核材料。\n\n每个青年都想成为加加林。" }, "Param0": "", "Param1": "", @@ -99163,7 +99173,7 @@ "Key": "ItemIntroduction_1110002", "Name": { "key": "ItemIntroduction_1110002", - "text": "本计划可用于一次特殊战斗员“招募”。\n\n宁静的发射场,草原上点点星光…那是她在送我们远航。" + "text": "本计划可用于一次特殊战斗员“招募”。\n\n宁静的发射场,草原上点点星光……那是她在送我们远航。" }, "Param0": "", "Param1": "", @@ -99603,7 +99613,7 @@ "Key": "Dialogue_100001007", "Name": { "key": "Dialogue_100001007", - "text": "我无权干涉战士的兴趣,但卡琳看的那些小说实在太荒谬了。“相爱相杀”是怎么回事,如果真的相爱,应该是想要在一起才对吧?" + "text": "我无权干涉战士的兴趣,但卡琳看的那些小说实在太荒谬了。“相爱相残”是怎么回事,如果真的相爱,应该是想要在一起才对吧?" }, "Param0": "", "Param1": "", @@ -99803,7 +99813,7 @@ "Key": "Dialogue_100002003", "Name": { "key": "Dialogue_100002003", - "text": "准尉同志那投向丽达的眼神,多么温柔,多么体贴————……啊,并不是那种关系?我懂得我懂得,这种禁断的秘密恋情,一旦暴露会引发怎样的惊涛骇浪……我会替你们好好保守保密哒——" + "text": "准尉同志那投向丽达的眼神,多么温柔,多么体贴——啊,并不是那种关系?我懂得我懂得,这种禁断的秘密恋情,一旦暴露会引发怎样的惊涛骇浪……我会替你们好好保守保密哒——" }, "Param0": "", "Param1": "", @@ -99823,7 +99833,7 @@ "Key": "Dialogue_100002005", "Name": { "key": "Dialogue_100002005", - "text": "恋爱中的男女散发出的香甜的气息,让人根本无法抗拒啊————我的八卦之心也就因此总是抑制不住啦!" + "text": "恋爱中的男女散发出的香甜的气息,让人根本无法抗拒啊——我的八卦之心也就因此总是抑制不住啦!" }, "Param0": "", "Param1": "", @@ -99993,7 +100003,7 @@ "Key": "Dialogue_100002040", "Name": { "key": "Dialogue_100002040", - "text": "我抱——————嘿嘿,这么冷的天里准尉同志还这么单薄的衣服,这倔强的样子到底是怎么回事呀?放心吧,我可不会让准尉同志感冒的哦。" + "text": "我抱————嘿嘿,这么冷的天里准尉同志还这么单薄的衣服,这倔强的样子到底是怎么回事呀?放心吧,我可不会让准尉同志感冒的哦。" }, "Param0": "", "Param1": "", @@ -100563,7 +100573,7 @@ "Key": "Dialogue_100005007", "Name": { "key": "Dialogue_100005007", - "text": "啪嗒——啪嗒——滴答——滴答——咔哒——咔哒————————" + "text": "啪嗒——啪嗒——滴答——滴答——咔哒——咔哒————" }, "Param0": "", "Param1": "", @@ -101003,7 +101013,7 @@ "Key": "Dialogue_100007003", "Name": { "key": "Dialogue_100007003", - "text": "这个游戏机怎么会在您的抽屉里面呢?啊哇哇,长官居然会对艾丽卡最心爱的小玩具下手,害得她小珍珠都掉下来了,真是一个喜欢弄哭女孩子的坏人呀————" + "text": "这个游戏机怎么会在您的抽屉里面呢?啊哇哇,长官居然会对艾丽卡最心爱的小玩具下手,害得她小珍珠都掉下来了,真是一个喜欢弄哭女孩子的坏人呀——" }, "Param0": "", "Param1": "", @@ -101063,7 +101073,7 @@ "Key": "Dialogue_100007009", "Name": { "key": "Dialogue_100007009", - "text": "长官,要不要猜猜这是今天第几次和人家见面呢?……啊哇哇,居然说对了,人家精心准备几个小时的变装完全都被长官看穿啦————小狐狸的心里好受伤,坏心眼的长官快来安慰一下吧。" + "text": "长官,要不要猜猜这是今天第几次和人家见面呢?……啊哇哇,居然说对了,人家精心准备几个小时的变装完全都被长官看穿啦——小狐狸的心里好受伤,坏心眼的长官快来安慰一下吧。" }, "Param0": "", "Param1": "", @@ -101173,7 +101183,7 @@ "Key": "Dialogue_100007038", "Name": { "key": "Dialogue_100007038", - "text": "我的好长官,晚餐的面包不要再放那——么多香菜籽啦,好不好嘛——————再这样下去,讨厌香菜的小狐狸可要饿肚子啦——" + "text": "我的好长官,晚餐的面包不要再放那——么多香菜籽啦,好不好嘛————再这样下去,讨厌香菜的小狐狸可要饿肚子啦——" }, "Param0": "", "Param1": "", @@ -101193,7 +101203,7 @@ "Key": "Dialogue_100007040", "Name": { "key": "Dialogue_100007040", - "text": "深夜是罪犯和密探的时间,好孩子还是快快去睡觉吧——……呃,也是特种部队行动的时间?" + "text": "深夜是罪犯和密探的时间,好孩子还是快快去睡觉吧——呃,也是特种部队行动的时间?" }, "Param0": "", "Param1": "", @@ -101303,7 +101313,7 @@ "Key": "Dialogue_100008009", "Name": { "key": "Dialogue_100008009", - "text": "哦,你来的正好,帮我决定一下救谁比较好吧!————什么叫“谁和你一起掉进水里了”?我说的是游戏的选项啦!嗯……和我想的不一样呢,不过,我想见识一下准尉大人所想见识的未来,所以勉为其难的救一下你选的那边吧!" + "text": "哦,你来的正好,帮我决定一下救谁比较好吧!——什么叫“谁和你一起掉进水里了”?我说的是游戏的选项啦!嗯……和我想的不一样呢,不过,我想见识一下准尉大人所想见识的未来,所以勉为其难的救一下你选的那边吧!" }, "Param0": "", "Param1": "", @@ -101503,7 +101513,7 @@ "Key": "Dialogue_100009005", "Name": { "key": "Dialogue_100009005", - "text": "嗝————嘿!你已经喝的够多了,把车、车钥匙给我……我来开……哦,对,我现在没在午夜狂欢会里。你、你好啊,准尉,我现在在……嗝、值班……有什么事以后再说吧……" + "text": "嗝——嘿!你已经喝的够多了,把车、车钥匙给我……我来开……哦,对,我现在没在午夜狂欢会里。你、你好啊,准尉,我现在在……嗝、值班……有什么事以后再说吧……" }, "Param0": "", "Param1": "", @@ -101523,7 +101533,7 @@ "Key": "Dialogue_100009007", "Name": { "key": "Dialogue_100009007", - "text": "喵——喵——小猫咪,过来呀——挠挠下巴,这就舒服的呼噜呼噜了?蹭蹭蹭蹭,嘿嘿,跟我的小可爱贴贴—— ————!准尉!?你几时来的!?" + "text": "喵——喵——小猫咪,过来呀——挠挠下巴,这就舒服的呼噜呼噜了?蹭蹭蹭蹭,嘿嘿,跟我的小可爱贴贴—— ——准尉!?你几时来的!?" }, "Param0": "", "Param1": "", @@ -105123,7 +105133,7 @@ "Key": "Dialogue_100030007", "Name": { "key": "Dialogue_100030007", - "text": "哼————哼哼————哼哼————哼 ————(哼歌)" + "text": "哼——哼哼——哼哼——哼 ——(哼歌)" }, "Param0": "", "Param1": "", @@ -105423,7 +105433,7 @@ "Key": "Dialogue_100031013", "Name": { "key": "Dialogue_100031013", - "text": "哈——哈——……拍子太快了呀,这种速度的旋转恐怕只有马苏德能做到吧。" + "text": "哈——哈——拍子太快了呀,这种速度的旋转恐怕只有马苏德能做到吧。" }, "Param0": "", "Param1": "", @@ -107503,7 +107513,7 @@ "Key": "Dialogue_100081005", "Name": { "key": "Dialogue_100081005", - "text": "呜——……提交的报告又被教授驳回了,说我弄错了石器和骨器……明明他自己的论文里面也把铜器当成了金的。" + "text": "呜——提交的报告又被教授驳回了,说我弄错了石器和骨器……明明他自己的论文里面也把铜器当成了金的。" }, "Param0": "", "Param1": "", @@ -107663,7 +107673,7 @@ "Key": "Dialogue_100081039", "Name": { "key": "Dialogue_100081039", - "text": "呼——呼——……诶,我刚才睡着了?萨摩叶德文化,太深奥了,研究着研究着,就不由自主地犯困……" + "text": "呼——呼——诶,我刚才睡着了?萨摩叶德文化,太深奥了,研究着研究着,就不由自主地犯困……" }, "Param0": "", "Param1": "", @@ -109143,7 +109153,7 @@ "Key": "Dialogue_100091001", "Name": { "key": "Dialogue_100091001", - "text": "呼————呼————哈啊,准、准尉中午好!我是海军陆战队成员,海伦!你问我为什么这么喘?抱歉,我是一路从海岸边跑过来的!真是相当漫长的一段晨跑之旅呢!" + "text": "呼——呼——哈啊,准、准尉中午好!我是海军陆战队成员,海伦!你问我为什么这么喘?抱歉,我是一路从海岸边跑过来的!真是相当漫长的一段晨跑之旅呢!" }, "Param0": "", "Param1": "", @@ -109153,7 +109163,7 @@ "Key": "Dialogue_100091002", "Name": { "key": "Dialogue_100091002", - "text": "哟,准尉!怎么看起来没精打采的,来和我一起伸个懒腰舒服的“呜呼————”一下吧!" + "text": "哟,准尉!怎么看起来没精打采的,来和我一起伸个懒腰舒服的“呜呼——”一下吧!" }, "Param0": "", "Param1": "", @@ -109183,7 +109193,7 @@ "Key": "Dialogue_100091005", "Name": { "key": "Dialogue_100091005", - "text": "准尉!Power up!来!跟我大喊,Power up!哎?你说有人在看着?有人看着就更有喊出来的价值了不是吗!大声点!Power up!Power up!是不是觉得身体充满了力量?————怎么反而一副被抽干力量的样子了!" + "text": "准尉!Power up!来!跟我大喊,Power up!哎?你说有人在看着?有人看着就更有喊出来的价值了不是吗!大声点!Power up!Power up!是不是觉得身体充满了力量?——怎么反而一副被抽干力量的样子了!" }, "Param0": "", "Param1": "", @@ -109243,7 +109253,7 @@ "Key": "Dialogue_100091011", "Name": { "key": "Dialogue_100091011", - "text": "准尉,看好咯!————咻!怎么样,只用手指头弹瓶盖就能打碎玻璃瓶,厉害吧——什、我才没有用EGO的力量呢!这可是我勤勉与自律带来的力量,别说了,现在就和我一起做三百个俯卧撑吧!" + "text": "准尉,看好咯!——咻!怎么样,只用手指头弹瓶盖就能打碎玻璃瓶,厉害吧——什、我才没有用EGO的力量呢!这可是我勤勉与自律带来的力量,别说了,现在就和我一起做三百个俯卧撑吧!" }, "Param0": "", "Param1": "", @@ -109343,7 +109353,7 @@ "Key": "Dialogue_100091039", "Name": { "key": "Dialogue_100091039", - "text": "呜啊————该休息咯准尉,深夜的空气真清新啊——我跟你说哦,我的睡眠时间里有奇迹般的85%都是在深度睡眠状态!!" + "text": "呜啊——该休息咯准尉,深夜的空气真清新啊——我跟你说哦,我的睡眠时间里有奇迹般的85%都是在深度睡眠状态!!" }, "Param0": "", "Param1": "", @@ -109923,7 +109933,7 @@ "Key": "Dialogue_100095007", "Name": { "key": "Dialogue_100095007", - "text": "多冷的隆冬♪——多冷的隆冬♪——多冷的隆冬♪——哒哒哒♪——……多冷的隆冬♪——多冷的隆冬♪——多冷的隆冬♪——哒哒哒♪——……" + "text": "多冷的隆冬♪——多冷的隆冬♪——多冷的隆冬♪——哒哒哒♪——多冷的隆冬♪——多冷的隆冬♪——多冷的隆冬♪——哒哒哒♪——" }, "Param0": "", "Param1": "", @@ -110083,7 +110093,7 @@ "Key": "Dialogue_100095041", "Name": { "key": "Dialogue_100095041", - "text": "什么?我的生日?那东西过了十八岁就没有意义了嘛!诶——?专门给我买的?唔,那……肯定还是要收下的啦!" + "text": "什么?我的生日?那东西过了十八岁就没有意义了嘛!诶——专门给我买的?唔,那……肯定还是要收下的啦!" }, "Param0": "", "Param1": "", @@ -112273,7 +112283,7 @@ "Key": "Scenario_901001_02_002", "Name": { "key": "Scenario_901001_02_002", - "text": "停,停一下吧!我已经跑不动了…" + "text": "停,停一下吧!我已经跑不动了……" }, "Param0": "", "Param1": "", diff --git a/ProjectNLD/Assets/Config/Data/Localize/EN/stringcfg_stringconfig.json b/ProjectNLD/Assets/Config/Data/Localize/EN/stringcfg_stringconfig.json index f5ace8960ef..a3d8e4d8123 100644 --- a/ProjectNLD/Assets/Config/Data/Localize/EN/stringcfg_stringconfig.json +++ b/ProjectNLD/Assets/Config/Data/Localize/EN/stringcfg_stringconfig.json @@ -12219,86 +12219,6 @@ "Param1": "", "Param2": "" }, - { - "Key": "condition_dese_CombatLeastAlliesNPCAlive", - "Name": { - "key": "condition_dese_CombatLeastAlliesNPCAlive", - "text": "condition_dese_CombatLeastAlliesNPCAlive" - }, - "Param0": "", - "Param1": "", - "Param2": "" - }, - { - "Key": "condition_dese_CombatLeastAlliesNPCDead", - "Name": { - "key": "condition_dese_CombatLeastAlliesNPCDead", - "text": "condition_dese_CombatLeastAlliesNPCDead" - }, - "Param0": "", - "Param1": "", - "Param2": "" - }, - { - "Key": "condition_desc_CombatLeastFaction", - "Name": { - "key": "condition_desc_CombatLeastFaction", - "text": "condition_desc_CombatLeastFaction" - }, - "Param0": "", - "Param1": "", - "Param2": "" - }, - { - "Key": "condition_desc_CombatLeastJob", - "Name": { - "key": "condition_desc_CombatLeastJob", - "text": "condition_desc_CombatLeastJob" - }, - "Param0": "", - "Param1": "", - "Param2": "" - }, - { - "Key": "condition_desc_CombatLeastOccupy", - "Name": { - "key": "condition_desc_CombatLeastOccupy", - "text": "condition_desc_CombatLeastOccupy" - }, - "Param0": "", - "Param1": "", - "Param2": "" - }, - { - "Key": "condition_desc_CombatLeastRarity", - "Name": { - "key": "condition_desc_CombatLeastRarity", - "text": "condition_desc_CombatLeastRarity" - }, - "Param0": "", - "Param1": "", - "Param2": "" - }, - { - "Key": "condition_desc_CombatLeastTime", - "Name": { - "key": "condition_desc_CombatLeastTime", - "text": "condition_desc_CombatLeastTime" - }, - "Param0": "", - "Param1": "", - "Param2": "" - }, - { - "Key": "condition_desc_CombatSubmitFlag", - "Name": { - "key": "condition_desc_CombatSubmitFlag", - "text": "condition_desc_CombatSubmitFlag" - }, - "Param0": "", - "Param1": "", - "Param2": "" - }, { "Key": "condition_desc_Character", "Name": { @@ -18659,6 +18579,16 @@ "Param1": "", "Param2": "" }, + { + "Key": "cultivate_LevelUpOutRange", + "Name": { + "key": "cultivate_LevelUpOutRange", + "text": "cultivate_LevelUpOutRange" + }, + "Param0": "", + "Param1": "", + "Param2": "" + }, { "Key": "cultivate_BreakMaterialNotFull", "Name": { @@ -19523,7 +19453,7 @@ "Key": "skill_1000152", "Name": { "key": "skill_1000152", - "text": "获得【射击速度提升】【换弹时间减少Ⅰ】,持续10秒。" + "text": "获得【射击速度提升】【换弹速度提升Ⅰ】,持续10秒。" }, "Param0": "", "Param1": "", @@ -74923,7 +74853,7 @@ "Key": "PassiveSkill_200011", "Name": { "key": "PassiveSkill_200011", - "text": "奇袭Lv1" + "text": "奇袭Ⅰ" }, "Param0": "", "Param1": "", @@ -74933,7 +74863,7 @@ "Key": "PassiveSkill_200012", "Name": { "key": "PassiveSkill_200012", - "text": "奇袭Lv2" + "text": "奇袭Ⅱ" }, "Param0": "", "Param1": "", @@ -74943,7 +74873,7 @@ "Key": "PassiveSkill_200013", "Name": { "key": "PassiveSkill_200013", - "text": "奇袭Lv3" + "text": "奇袭Ⅲ" }, "Param0": "", "Param1": "", @@ -74953,7 +74883,7 @@ "Key": "PassiveSkill_200014", "Name": { "key": "PassiveSkill_200014", - "text": "奇袭Lv4" + "text": "奇袭Ⅳ" }, "Param0": "", "Param1": "", @@ -74963,7 +74893,7 @@ "Key": "PassiveSkill_200015", "Name": { "key": "PassiveSkill_200015", - "text": "奇袭Lv5" + "text": "奇袭Ⅴ" }, "Param0": "", "Param1": "", @@ -74973,7 +74903,7 @@ "Key": "PassiveSkill_200016", "Name": { "key": "PassiveSkill_200016", - "text": "奇袭Lv6" + "text": "奇袭Ⅵ" }, "Param0": "", "Param1": "", @@ -74983,7 +74913,7 @@ "Key": "PassiveSkill_200021", "Name": { "key": "PassiveSkill_200021", - "text": "紧急补充Lv1" + "text": "紧急补充Ⅰ" }, "Param0": "", "Param1": "", @@ -74993,7 +74923,7 @@ "Key": "PassiveSkill_200022", "Name": { "key": "PassiveSkill_200022", - "text": "紧急补充Lv2" + "text": "紧急补充Ⅱ" }, "Param0": "", "Param1": "", @@ -75003,7 +74933,7 @@ "Key": "PassiveSkill_200023", "Name": { "key": "PassiveSkill_200023", - "text": "紧急补充Lv3" + "text": "紧急补充Ⅲ" }, "Param0": "", "Param1": "", @@ -75013,7 +74943,7 @@ "Key": "PassiveSkill_200024", "Name": { "key": "PassiveSkill_200024", - "text": "紧急补充Lv4" + "text": "紧急补充Ⅳ" }, "Param0": "", "Param1": "", @@ -75023,7 +74953,7 @@ "Key": "PassiveSkill_200025", "Name": { "key": "PassiveSkill_200025", - "text": "紧急补充Lv5" + "text": "紧急补充Ⅴ" }, "Param0": "", "Param1": "", @@ -75033,7 +74963,7 @@ "Key": "PassiveSkill_200026", "Name": { "key": "PassiveSkill_200026", - "text": "紧急补充Lv6" + "text": "紧急补充Ⅵ" }, "Param0": "", "Param1": "", @@ -75043,7 +74973,7 @@ "Key": "PassiveSkill_200031", "Name": { "key": "PassiveSkill_200031", - "text": "杀戮之心Lv1" + "text": "杀戮之心Ⅰ" }, "Param0": "", "Param1": "", @@ -75053,7 +74983,7 @@ "Key": "PassiveSkill_200032", "Name": { "key": "PassiveSkill_200032", - "text": "杀戮之心Lv2" + "text": "杀戮之心Ⅱ" }, "Param0": "", "Param1": "", @@ -75063,7 +74993,7 @@ "Key": "PassiveSkill_200033", "Name": { "key": "PassiveSkill_200033", - "text": "杀戮之心Lv3" + "text": "杀戮之心Ⅲ" }, "Param0": "", "Param1": "", @@ -75073,7 +75003,7 @@ "Key": "PassiveSkill_200034", "Name": { "key": "PassiveSkill_200034", - "text": "杀戮之心Lv4" + "text": "杀戮之心Ⅳ" }, "Param0": "", "Param1": "", @@ -75083,7 +75013,7 @@ "Key": "PassiveSkill_200035", "Name": { "key": "PassiveSkill_200035", - "text": "杀戮之心Lv5" + "text": "杀戮之心Ⅴ" }, "Param0": "", "Param1": "", @@ -75093,7 +75023,7 @@ "Key": "PassiveSkill_200036", "Name": { "key": "PassiveSkill_200036", - "text": "杀戮之心Lv6" + "text": "杀戮之心Ⅵ" }, "Param0": "", "Param1": "", @@ -75103,7 +75033,7 @@ "Key": "PassiveSkill_200041", "Name": { "key": "PassiveSkill_200041", - "text": "料敌于先Lv1" + "text": "料敌于先Ⅰ" }, "Param0": "", "Param1": "", @@ -75113,7 +75043,7 @@ "Key": "PassiveSkill_200042", "Name": { "key": "PassiveSkill_200042", - "text": "料敌于先Lv2" + "text": "料敌于先Ⅱ" }, "Param0": "", "Param1": "", @@ -75123,7 +75053,7 @@ "Key": "PassiveSkill_200043", "Name": { "key": "PassiveSkill_200043", - "text": "料敌于先Lv3" + "text": "料敌于先Ⅲ" }, "Param0": "", "Param1": "", @@ -75133,7 +75063,7 @@ "Key": "PassiveSkill_200044", "Name": { "key": "PassiveSkill_200044", - "text": "料敌于先Lv4" + "text": "料敌于先Ⅳ" }, "Param0": "", "Param1": "", @@ -75143,7 +75073,7 @@ "Key": "PassiveSkill_200045", "Name": { "key": "PassiveSkill_200045", - "text": "料敌于先Lv5" + "text": "料敌于先Ⅴ" }, "Param0": "", "Param1": "", @@ -75153,7 +75083,7 @@ "Key": "PassiveSkill_200046", "Name": { "key": "PassiveSkill_200046", - "text": "料敌于先Lv6" + "text": "料敌于先Ⅵ" }, "Param0": "", "Param1": "", @@ -75163,7 +75093,7 @@ "Key": "PassiveSkill_200051", "Name": { "key": "PassiveSkill_200051", - "text": "融入自然Lv1" + "text": "融入自然Ⅰ" }, "Param0": "", "Param1": "", @@ -75173,7 +75103,7 @@ "Key": "PassiveSkill_200052", "Name": { "key": "PassiveSkill_200052", - "text": "融入自然Lv2" + "text": "融入自然Ⅱ" }, "Param0": "", "Param1": "", @@ -75183,7 +75113,7 @@ "Key": "PassiveSkill_200053", "Name": { "key": "PassiveSkill_200053", - "text": "融入自然Lv3" + "text": "融入自然Ⅲ" }, "Param0": "", "Param1": "", @@ -75193,7 +75123,7 @@ "Key": "PassiveSkill_200054", "Name": { "key": "PassiveSkill_200054", - "text": "融入自然Lv4" + "text": "融入自然Ⅳ" }, "Param0": "", "Param1": "", @@ -75203,7 +75133,7 @@ "Key": "PassiveSkill_200055", "Name": { "key": "PassiveSkill_200055", - "text": "融入自然Lv5" + "text": "融入自然Ⅴ" }, "Param0": "", "Param1": "", @@ -75213,7 +75143,7 @@ "Key": "PassiveSkill_200056", "Name": { "key": "PassiveSkill_200056", - "text": "融入自然Lv6" + "text": "融入自然Ⅵ" }, "Param0": "", "Param1": "", @@ -75223,7 +75153,7 @@ "Key": "PassiveSkill_200061", "Name": { "key": "PassiveSkill_200061", - "text": "骑士信仰Lv1" + "text": "骑士信仰Ⅰ" }, "Param0": "", "Param1": "", @@ -75233,7 +75163,7 @@ "Key": "PassiveSkill_200062", "Name": { "key": "PassiveSkill_200062", - "text": "骑士信仰Lv2" + "text": "骑士信仰Ⅱ" }, "Param0": "", "Param1": "", @@ -75243,7 +75173,7 @@ "Key": "PassiveSkill_200063", "Name": { "key": "PassiveSkill_200063", - "text": "骑士信仰Lv3" + "text": "骑士信仰Ⅲ" }, "Param0": "", "Param1": "", @@ -75253,7 +75183,7 @@ "Key": "PassiveSkill_200064", "Name": { "key": "PassiveSkill_200064", - "text": "骑士信仰Lv4" + "text": "骑士信仰Ⅳ" }, "Param0": "", "Param1": "", @@ -75263,7 +75193,7 @@ "Key": "PassiveSkill_200065", "Name": { "key": "PassiveSkill_200065", - "text": "骑士信仰Lv5" + "text": "骑士信仰Ⅴ" }, "Param0": "", "Param1": "", @@ -75273,7 +75203,7 @@ "Key": "PassiveSkill_200066", "Name": { "key": "PassiveSkill_200066", - "text": "骑士信仰Lv6" + "text": "骑士信仰Ⅵ" }, "Param0": "", "Param1": "", @@ -75523,7 +75453,7 @@ "Key": "PassiveSkill_200111", "Name": { "key": "PassiveSkill_200111", - "text": "母性之光Lv1" + "text": "母性之光Ⅰ" }, "Param0": "", "Param1": "", @@ -75533,7 +75463,7 @@ "Key": "PassiveSkill_200112", "Name": { "key": "PassiveSkill_200112", - "text": "母性之光Lv2" + "text": "母性之光Ⅱ" }, "Param0": "", "Param1": "", @@ -75543,7 +75473,7 @@ "Key": "PassiveSkill_200113", "Name": { "key": "PassiveSkill_200113", - "text": "母性之光Lv3" + "text": "母性之光Ⅲ" }, "Param0": "", "Param1": "", @@ -75553,7 +75483,7 @@ "Key": "PassiveSkill_200114", "Name": { "key": "PassiveSkill_200114", - "text": "母性之光Lv4" + "text": "母性之光Ⅳ" }, "Param0": "", "Param1": "", @@ -75563,7 +75493,7 @@ "Key": "PassiveSkill_200115", "Name": { "key": "PassiveSkill_200115", - "text": "母性之光Lv5" + "text": "母性之光Ⅴ" }, "Param0": "", "Param1": "", @@ -75573,7 +75503,7 @@ "Key": "PassiveSkill_200116", "Name": { "key": "PassiveSkill_200116", - "text": "母性之光Lv6" + "text": "母性之光Ⅵ" }, "Param0": "", "Param1": "", @@ -75583,7 +75513,7 @@ "Key": "PassiveSkill_200121", "Name": { "key": "PassiveSkill_200121", - "text": "大将之风Lv1" + "text": "大将之风Ⅰ" }, "Param0": "", "Param1": "", @@ -75593,7 +75523,7 @@ "Key": "PassiveSkill_200122", "Name": { "key": "PassiveSkill_200122", - "text": "大将之风Lv2" + "text": "大将之风Ⅱ" }, "Param0": "", "Param1": "", @@ -75603,7 +75533,7 @@ "Key": "PassiveSkill_200123", "Name": { "key": "PassiveSkill_200123", - "text": "大将之风Lv3" + "text": "大将之风Ⅲ" }, "Param0": "", "Param1": "", @@ -75613,7 +75543,7 @@ "Key": "PassiveSkill_200124", "Name": { "key": "PassiveSkill_200124", - "text": "大将之风Lv4" + "text": "大将之风Ⅳ" }, "Param0": "", "Param1": "", @@ -75623,7 +75553,7 @@ "Key": "PassiveSkill_200125", "Name": { "key": "PassiveSkill_200125", - "text": "大将之风Lv5" + "text": "大将之风Ⅴ" }, "Param0": "", "Param1": "", @@ -75633,7 +75563,7 @@ "Key": "PassiveSkill_200126", "Name": { "key": "PassiveSkill_200126", - "text": "大将之风Lv6" + "text": "大将之风Ⅵ" }, "Param0": "", "Param1": "", @@ -75643,7 +75573,7 @@ "Key": "PassiveSkill_200131", "Name": { "key": "PassiveSkill_200131", - "text": "超大套餐Lv1" + "text": "超大套餐Ⅰ" }, "Param0": "", "Param1": "", @@ -75653,7 +75583,7 @@ "Key": "PassiveSkill_200132", "Name": { "key": "PassiveSkill_200132", - "text": "超大套餐Lv2" + "text": "超大套餐Ⅱ" }, "Param0": "", "Param1": "", @@ -75663,7 +75593,7 @@ "Key": "PassiveSkill_200133", "Name": { "key": "PassiveSkill_200133", - "text": "超大套餐Lv3" + "text": "超大套餐Ⅲ" }, "Param0": "", "Param1": "", @@ -75673,7 +75603,7 @@ "Key": "PassiveSkill_200134", "Name": { "key": "PassiveSkill_200134", - "text": "超大套餐Lv4" + "text": "超大套餐Ⅳ" }, "Param0": "", "Param1": "", @@ -75683,7 +75613,7 @@ "Key": "PassiveSkill_200135", "Name": { "key": "PassiveSkill_200135", - "text": "超大套餐Lv5" + "text": "超大套餐Ⅴ" }, "Param0": "", "Param1": "", @@ -75693,7 +75623,7 @@ "Key": "PassiveSkill_200136", "Name": { "key": "PassiveSkill_200136", - "text": "超大套餐Lv6" + "text": "超大套餐Ⅵ" }, "Param0": "", "Param1": "", @@ -75703,7 +75633,7 @@ "Key": "PassiveSkill_200141", "Name": { "key": "PassiveSkill_200141", - "text": "重装高达Lv1" + "text": "重装科斯莫Ⅰ" }, "Param0": "", "Param1": "", @@ -75713,7 +75643,7 @@ "Key": "PassiveSkill_200142", "Name": { "key": "PassiveSkill_200142", - "text": "重装高达Lv2" + "text": "重装科斯莫Ⅱ" }, "Param0": "", "Param1": "", @@ -75723,7 +75653,7 @@ "Key": "PassiveSkill_200143", "Name": { "key": "PassiveSkill_200143", - "text": "重装高达Lv3" + "text": "重装科斯莫Ⅲ" }, "Param0": "", "Param1": "", @@ -75733,7 +75663,7 @@ "Key": "PassiveSkill_200144", "Name": { "key": "PassiveSkill_200144", - "text": "重装高达Lv4" + "text": "重装科斯莫Ⅳ" }, "Param0": "", "Param1": "", @@ -75743,7 +75673,7 @@ "Key": "PassiveSkill_200145", "Name": { "key": "PassiveSkill_200145", - "text": "重装高达Lv5" + "text": "重装科斯莫Ⅴ" }, "Param0": "", "Param1": "", @@ -75753,7 +75683,7 @@ "Key": "PassiveSkill_200146", "Name": { "key": "PassiveSkill_200146", - "text": "重装高达Lv6" + "text": "重装科斯莫Ⅵ" }, "Param0": "", "Param1": "", @@ -75763,7 +75693,7 @@ "Key": "PassiveSkill_200151", "Name": { "key": "PassiveSkill_200151", - "text": "致命知识Lv1" + "text": "致命知识Ⅰ" }, "Param0": "", "Param1": "", @@ -75773,7 +75703,7 @@ "Key": "PassiveSkill_200152", "Name": { "key": "PassiveSkill_200152", - "text": "致命知识Lv2" + "text": "致命知识Ⅱ" }, "Param0": "", "Param1": "", @@ -75783,7 +75713,7 @@ "Key": "PassiveSkill_200153", "Name": { "key": "PassiveSkill_200153", - "text": "致命知识Lv3" + "text": "致命知识Ⅲ" }, "Param0": "", "Param1": "", @@ -75793,7 +75723,7 @@ "Key": "PassiveSkill_200154", "Name": { "key": "PassiveSkill_200154", - "text": "致命知识Lv4" + "text": "致命知识Ⅳ" }, "Param0": "", "Param1": "", @@ -75803,7 +75733,7 @@ "Key": "PassiveSkill_200155", "Name": { "key": "PassiveSkill_200155", - "text": "致命知识Lv5" + "text": "致命知识Ⅴ" }, "Param0": "", "Param1": "", @@ -75813,7 +75743,7 @@ "Key": "PassiveSkill_200156", "Name": { "key": "PassiveSkill_200156", - "text": "致命知识Lv6" + "text": "致命知识Ⅵ" }, "Param0": "", "Param1": "", @@ -76363,7 +76293,7 @@ "Key": "PassiveSkill_200251", "Name": { "key": "PassiveSkill_200251", - "text": "驱散黑暗Lv1" + "text": "驱散黑暗Ⅰ" }, "Param0": "", "Param1": "", @@ -76373,7 +76303,7 @@ "Key": "PassiveSkill_200252", "Name": { "key": "PassiveSkill_200252", - "text": "驱散黑暗Lv2" + "text": "驱散黑暗Ⅱ" }, "Param0": "", "Param1": "", @@ -76383,7 +76313,7 @@ "Key": "PassiveSkill_200253", "Name": { "key": "PassiveSkill_200253", - "text": "驱散黑暗Lv3" + "text": "驱散黑暗Ⅲ" }, "Param0": "", "Param1": "", @@ -76393,7 +76323,7 @@ "Key": "PassiveSkill_200254", "Name": { "key": "PassiveSkill_200254", - "text": "驱散黑暗Lv4" + "text": "驱散黑暗Ⅳ" }, "Param0": "", "Param1": "", @@ -76403,7 +76333,7 @@ "Key": "PassiveSkill_200255", "Name": { "key": "PassiveSkill_200255", - "text": "驱散黑暗Lv5" + "text": "驱散黑暗Ⅴ" }, "Param0": "", "Param1": "", @@ -76413,7 +76343,7 @@ "Key": "PassiveSkill_200256", "Name": { "key": "PassiveSkill_200256", - "text": "驱散黑暗Lv6" + "text": "驱散黑暗Ⅵ" }, "Param0": "", "Param1": "", @@ -76423,7 +76353,7 @@ "Key": "PassiveSkill_200261", "Name": { "key": "PassiveSkill_200261", - "text": "压力衰减Lv1" + "text": "压力衰减Ⅰ" }, "Param0": "", "Param1": "", @@ -76433,7 +76363,7 @@ "Key": "PassiveSkill_200262", "Name": { "key": "PassiveSkill_200262", - "text": "压力衰减Lv2" + "text": "压力衰减Ⅱ" }, "Param0": "", "Param1": "", @@ -76443,7 +76373,7 @@ "Key": "PassiveSkill_200263", "Name": { "key": "PassiveSkill_200263", - "text": "压力衰减Lv3" + "text": "压力衰减Ⅲ" }, "Param0": "", "Param1": "", @@ -76453,7 +76383,7 @@ "Key": "PassiveSkill_200264", "Name": { "key": "PassiveSkill_200264", - "text": "压力衰减Lv4" + "text": "压力衰减Ⅳ" }, "Param0": "", "Param1": "", @@ -76463,7 +76393,7 @@ "Key": "PassiveSkill_200265", "Name": { "key": "PassiveSkill_200265", - "text": "压力衰减Lv5" + "text": "压力衰减Ⅴ" }, "Param0": "", "Param1": "", @@ -76473,7 +76403,7 @@ "Key": "PassiveSkill_200266", "Name": { "key": "PassiveSkill_200266", - "text": "压力衰减Lv6" + "text": "压力衰减Ⅵ" }, "Param0": "", "Param1": "", @@ -76723,7 +76653,7 @@ "Key": "PassiveSkill_200311", "Name": { "key": "PassiveSkill_200311", - "text": "曼妙舞步Lv1" + "text": "曼妙舞步Ⅰ" }, "Param0": "", "Param1": "", @@ -76733,7 +76663,7 @@ "Key": "PassiveSkill_200312", "Name": { "key": "PassiveSkill_200312", - "text": "曼妙舞步Lv2" + "text": "曼妙舞步Ⅱ" }, "Param0": "", "Param1": "", @@ -76743,7 +76673,7 @@ "Key": "PassiveSkill_200313", "Name": { "key": "PassiveSkill_200313", - "text": "曼妙舞步Lv3" + "text": "曼妙舞步Ⅲ" }, "Param0": "", "Param1": "", @@ -76753,7 +76683,7 @@ "Key": "PassiveSkill_200314", "Name": { "key": "PassiveSkill_200314", - "text": "曼妙舞步Lv4" + "text": "曼妙舞步Ⅳ" }, "Param0": "", "Param1": "", @@ -76763,7 +76693,7 @@ "Key": "PassiveSkill_200315", "Name": { "key": "PassiveSkill_200315", - "text": "曼妙舞步Lv5" + "text": "曼妙舞步Ⅴ" }, "Param0": "", "Param1": "", @@ -76773,7 +76703,7 @@ "Key": "PassiveSkill_200316", "Name": { "key": "PassiveSkill_200316", - "text": "曼妙舞步Lv6" + "text": "曼妙舞步Ⅵ" }, "Param0": "", "Param1": "", @@ -76783,7 +76713,7 @@ "Key": "PassiveSkill_200321", "Name": { "key": "PassiveSkill_200321", - "text": "鼓舞乐章Lv1" + "text": "鼓舞乐章Ⅰ" }, "Param0": "", "Param1": "", @@ -76793,7 +76723,7 @@ "Key": "PassiveSkill_200322", "Name": { "key": "PassiveSkill_200322", - "text": "鼓舞乐章Lv2" + "text": "鼓舞乐章Ⅱ" }, "Param0": "", "Param1": "", @@ -76803,7 +76733,7 @@ "Key": "PassiveSkill_200323", "Name": { "key": "PassiveSkill_200323", - "text": "鼓舞乐章Lv3" + "text": "鼓舞乐章Ⅲ" }, "Param0": "", "Param1": "", @@ -76813,7 +76743,7 @@ "Key": "PassiveSkill_200324", "Name": { "key": "PassiveSkill_200324", - "text": "鼓舞乐章Lv4" + "text": "鼓舞乐章Ⅳ" }, "Param0": "", "Param1": "", @@ -76823,7 +76753,7 @@ "Key": "PassiveSkill_200325", "Name": { "key": "PassiveSkill_200325", - "text": "鼓舞乐章Lv5" + "text": "鼓舞乐章Ⅴ" }, "Param0": "", "Param1": "", @@ -76833,7 +76763,7 @@ "Key": "PassiveSkill_200326", "Name": { "key": "PassiveSkill_200326", - "text": "鼓舞乐章Lv6" + "text": "鼓舞乐章Ⅵ" }, "Param0": "", "Param1": "", @@ -76843,7 +76773,7 @@ "Key": "PassiveSkill_200331", "Name": { "key": "PassiveSkill_200331", - "text": "魔音入耳Lv1" + "text": "魔音入耳Ⅰ" }, "Param0": "", "Param1": "", @@ -76853,7 +76783,7 @@ "Key": "PassiveSkill_200332", "Name": { "key": "PassiveSkill_200332", - "text": "魔音入耳Lv2" + "text": "魔音入耳Ⅱ" }, "Param0": "", "Param1": "", @@ -76863,7 +76793,7 @@ "Key": "PassiveSkill_200333", "Name": { "key": "PassiveSkill_200333", - "text": "魔音入耳Lv3" + "text": "魔音入耳Ⅲ" }, "Param0": "", "Param1": "", @@ -76873,7 +76803,7 @@ "Key": "PassiveSkill_200334", "Name": { "key": "PassiveSkill_200334", - "text": "魔音入耳Lv4" + "text": "魔音入耳Ⅳ" }, "Param0": "", "Param1": "", @@ -76883,7 +76813,7 @@ "Key": "PassiveSkill_200335", "Name": { "key": "PassiveSkill_200335", - "text": "魔音入耳Lv5" + "text": "魔音入耳Ⅴ" }, "Param0": "", "Param1": "", @@ -76893,7 +76823,7 @@ "Key": "PassiveSkill_200336", "Name": { "key": "PassiveSkill_200336", - "text": "魔音入耳Lv6" + "text": "魔音入耳Ⅵ" }, "Param0": "", "Param1": "", @@ -76903,7 +76833,7 @@ "Key": "PassiveSkill_200341", "Name": { "key": "PassiveSkill_200341", - "text": "占卜揭示Lv1" + "text": "占卜揭示Ⅰ" }, "Param0": "", "Param1": "", @@ -76913,7 +76843,7 @@ "Key": "PassiveSkill_200342", "Name": { "key": "PassiveSkill_200342", - "text": "占卜揭示Lv2" + "text": "占卜揭示Ⅱ" }, "Param0": "", "Param1": "", @@ -76923,7 +76853,7 @@ "Key": "PassiveSkill_200343", "Name": { "key": "PassiveSkill_200343", - "text": "占卜揭示Lv3" + "text": "占卜揭示Ⅲ" }, "Param0": "", "Param1": "", @@ -76933,7 +76863,7 @@ "Key": "PassiveSkill_200344", "Name": { "key": "PassiveSkill_200344", - "text": "占卜揭示Lv4" + "text": "占卜揭示Ⅳ" }, "Param0": "", "Param1": "", @@ -76943,7 +76873,7 @@ "Key": "PassiveSkill_200345", "Name": { "key": "PassiveSkill_200345", - "text": "占卜揭示Lv5" + "text": "占卜揭示Ⅴ" }, "Param0": "", "Param1": "", @@ -76953,7 +76883,7 @@ "Key": "PassiveSkill_200346", "Name": { "key": "PassiveSkill_200346", - "text": "占卜揭示Lv6" + "text": "占卜揭示Ⅵ" }, "Param0": "", "Param1": "", @@ -76963,7 +76893,7 @@ "Key": "PassiveSkill_200351", "Name": { "key": "PassiveSkill_200351", - "text": "流水之音Lv1" + "text": "流水之音Ⅰ" }, "Param0": "", "Param1": "", @@ -76973,7 +76903,7 @@ "Key": "PassiveSkill_200352", "Name": { "key": "PassiveSkill_200352", - "text": "流水之音Lv2" + "text": "流水之音Ⅱ" }, "Param0": "", "Param1": "", @@ -76983,7 +76913,7 @@ "Key": "PassiveSkill_200353", "Name": { "key": "PassiveSkill_200353", - "text": "流水之音Lv3" + "text": "流水之音Ⅲ" }, "Param0": "", "Param1": "", @@ -76993,7 +76923,7 @@ "Key": "PassiveSkill_200354", "Name": { "key": "PassiveSkill_200354", - "text": "流水之音Lv4" + "text": "流水之音Ⅳ" }, "Param0": "", "Param1": "", @@ -77003,7 +76933,7 @@ "Key": "PassiveSkill_200355", "Name": { "key": "PassiveSkill_200355", - "text": "流水之音Lv5" + "text": "流水之音Ⅴ" }, "Param0": "", "Param1": "", @@ -77013,7 +76943,7 @@ "Key": "PassiveSkill_200356", "Name": { "key": "PassiveSkill_200356", - "text": "流水之音Lv6" + "text": "流水之音Ⅵ" }, "Param0": "", "Param1": "", @@ -77983,7 +77913,7 @@ "Key": "PassiveSkill_200521", "Name": { "key": "PassiveSkill_200521", - "text": "骚扰加倍Lv1" + "text": "骚扰加倍Ⅰ" }, "Param0": "", "Param1": "", @@ -77993,7 +77923,7 @@ "Key": "PassiveSkill_200522", "Name": { "key": "PassiveSkill_200522", - "text": "骚扰加倍Lv2" + "text": "骚扰加倍Ⅱ" }, "Param0": "", "Param1": "", @@ -78003,7 +77933,7 @@ "Key": "PassiveSkill_200523", "Name": { "key": "PassiveSkill_200523", - "text": "骚扰加倍Lv3" + "text": "骚扰加倍Ⅲ" }, "Param0": "", "Param1": "", @@ -78013,7 +77943,7 @@ "Key": "PassiveSkill_200524", "Name": { "key": "PassiveSkill_200524", - "text": "骚扰加倍Lv4" + "text": "骚扰加倍Ⅳ" }, "Param0": "", "Param1": "", @@ -78023,7 +77953,7 @@ "Key": "PassiveSkill_200525", "Name": { "key": "PassiveSkill_200525", - "text": "骚扰加倍Lv5" + "text": "骚扰加倍Ⅴ" }, "Param0": "", "Param1": "", @@ -78033,7 +77963,7 @@ "Key": "PassiveSkill_200526", "Name": { "key": "PassiveSkill_200526", - "text": "骚扰加倍Lv6" + "text": "骚扰加倍Ⅵ" }, "Param0": "", "Param1": "", @@ -78163,7 +78093,7 @@ "Key": "PassiveSkill_200551", "Name": { "key": "PassiveSkill_200551", - "text": "死撑Lv1" + "text": "死撑Ⅰ" }, "Param0": "", "Param1": "", @@ -78173,7 +78103,7 @@ "Key": "PassiveSkill_200552", "Name": { "key": "PassiveSkill_200552", - "text": "死撑Lv2" + "text": "死撑Ⅱ" }, "Param0": "", "Param1": "", @@ -78183,7 +78113,7 @@ "Key": "PassiveSkill_200553", "Name": { "key": "PassiveSkill_200553", - "text": "死撑Lv3" + "text": "死撑Ⅲ" }, "Param0": "", "Param1": "", @@ -78193,7 +78123,7 @@ "Key": "PassiveSkill_200554", "Name": { "key": "PassiveSkill_200554", - "text": "死撑Lv4" + "text": "死撑Ⅳ" }, "Param0": "", "Param1": "", @@ -78203,7 +78133,7 @@ "Key": "PassiveSkill_200555", "Name": { "key": "PassiveSkill_200555", - "text": "死撑Lv5" + "text": "死撑Ⅴ" }, "Param0": "", "Param1": "", @@ -78213,7 +78143,7 @@ "Key": "PassiveSkill_200556", "Name": { "key": "PassiveSkill_200556", - "text": "死撑Lv6" + "text": "死撑Ⅵ" }, "Param0": "", "Param1": "", @@ -79723,7 +79653,7 @@ "Key": "PassiveSkill_200811", "Name": { "key": "PassiveSkill_200811", - "text": "迅速离场Lv1" + "text": "迅速离场Ⅰ" }, "Param0": "", "Param1": "", @@ -79733,7 +79663,7 @@ "Key": "PassiveSkill_200812", "Name": { "key": "PassiveSkill_200812", - "text": "迅速离场Lv2" + "text": "迅速离场Ⅱ" }, "Param0": "", "Param1": "", @@ -79743,7 +79673,7 @@ "Key": "PassiveSkill_200813", "Name": { "key": "PassiveSkill_200813", - "text": "迅速离场Lv3" + "text": "迅速离场Ⅲ" }, "Param0": "", "Param1": "", @@ -79753,7 +79683,7 @@ "Key": "PassiveSkill_200814", "Name": { "key": "PassiveSkill_200814", - "text": "迅速离场Lv4" + "text": "迅速离场Ⅳ" }, "Param0": "", "Param1": "", @@ -79763,7 +79693,7 @@ "Key": "PassiveSkill_200815", "Name": { "key": "PassiveSkill_200815", - "text": "迅速离场Lv5" + "text": "迅速离场Ⅴ" }, "Param0": "", "Param1": "", @@ -79773,7 +79703,7 @@ "Key": "PassiveSkill_200816", "Name": { "key": "PassiveSkill_200816", - "text": "迅速离场Lv6" + "text": "迅速离场Ⅵ" }, "Param0": "", "Param1": "", @@ -79783,7 +79713,7 @@ "Key": "PassiveSkill_200821", "Name": { "key": "PassiveSkill_200821", - "text": "”异常“的鼓励Lv1" + "text": "”异常“的鼓励Ⅰ" }, "Param0": "", "Param1": "", @@ -79793,7 +79723,7 @@ "Key": "PassiveSkill_200822", "Name": { "key": "PassiveSkill_200822", - "text": "”异常“的鼓励Lv2" + "text": "”异常“的鼓励Ⅱ" }, "Param0": "", "Param1": "", @@ -79803,7 +79733,7 @@ "Key": "PassiveSkill_200823", "Name": { "key": "PassiveSkill_200823", - "text": "”异常“的鼓励Lv3" + "text": "”异常“的鼓励Ⅲ" }, "Param0": "", "Param1": "", @@ -79813,7 +79743,7 @@ "Key": "PassiveSkill_200824", "Name": { "key": "PassiveSkill_200824", - "text": "”异常“的鼓励Lv4" + "text": "”异常“的鼓励Ⅳ" }, "Param0": "", "Param1": "", @@ -79823,7 +79753,7 @@ "Key": "PassiveSkill_200825", "Name": { "key": "PassiveSkill_200825", - "text": "”异常“的鼓励Lv5" + "text": "”异常“的鼓励Ⅴ" }, "Param0": "", "Param1": "", @@ -79833,7 +79763,7 @@ "Key": "PassiveSkill_200826", "Name": { "key": "PassiveSkill_200826", - "text": "”异常“的鼓励Lv6" + "text": "”异常“的鼓励Ⅵ" }, "Param0": "", "Param1": "", @@ -79843,7 +79773,7 @@ "Key": "PassiveSkill_200831", "Name": { "key": "PassiveSkill_200831", - "text": "后顾无忧Lv1" + "text": "后顾无忧Ⅰ" }, "Param0": "", "Param1": "", @@ -79853,7 +79783,7 @@ "Key": "PassiveSkill_200832", "Name": { "key": "PassiveSkill_200832", - "text": "后顾无忧Lv2" + "text": "后顾无忧Ⅱ" }, "Param0": "", "Param1": "", @@ -79863,7 +79793,7 @@ "Key": "PassiveSkill_200833", "Name": { "key": "PassiveSkill_200833", - "text": "后顾无忧Lv3" + "text": "后顾无忧Ⅲ" }, "Param0": "", "Param1": "", @@ -79873,7 +79803,7 @@ "Key": "PassiveSkill_200834", "Name": { "key": "PassiveSkill_200834", - "text": "后顾无忧Lv4" + "text": "后顾无忧Ⅳ" }, "Param0": "", "Param1": "", @@ -79883,7 +79813,7 @@ "Key": "PassiveSkill_200835", "Name": { "key": "PassiveSkill_200835", - "text": "后顾无忧Lv5" + "text": "后顾无忧Ⅴ" }, "Param0": "", "Param1": "", @@ -79893,7 +79823,7 @@ "Key": "PassiveSkill_200836", "Name": { "key": "PassiveSkill_200836", - "text": "后顾无忧Lv6" + "text": "后顾无忧Ⅵ" }, "Param0": "", "Param1": "", @@ -80083,7 +80013,7 @@ "Key": "PassiveSkill_200871", "Name": { "key": "PassiveSkill_200871", - "text": "无惧冲锋Lv1" + "text": "无惧冲锋Ⅰ" }, "Param0": "", "Param1": "", @@ -80093,7 +80023,7 @@ "Key": "PassiveSkill_200872", "Name": { "key": "PassiveSkill_200872", - "text": "无惧冲锋Lv2" + "text": "无惧冲锋Ⅱ" }, "Param0": "", "Param1": "", @@ -80103,7 +80033,7 @@ "Key": "PassiveSkill_200873", "Name": { "key": "PassiveSkill_200873", - "text": "无惧冲锋Lv3" + "text": "无惧冲锋Ⅲ" }, "Param0": "", "Param1": "", @@ -80113,7 +80043,7 @@ "Key": "PassiveSkill_200874", "Name": { "key": "PassiveSkill_200874", - "text": "无惧冲锋Lv4" + "text": "无惧冲锋Ⅳ" }, "Param0": "", "Param1": "", @@ -80123,7 +80053,7 @@ "Key": "PassiveSkill_200875", "Name": { "key": "PassiveSkill_200875", - "text": "无惧冲锋Lv5" + "text": "无惧冲锋Ⅴ" }, "Param0": "", "Param1": "", @@ -80133,7 +80063,7 @@ "Key": "PassiveSkill_200876", "Name": { "key": "PassiveSkill_200876", - "text": "无惧冲锋Lv6" + "text": "无惧冲锋Ⅵ" }, "Param0": "", "Param1": "", @@ -80143,7 +80073,7 @@ "Key": "PassiveSkill_200881", "Name": { "key": "PassiveSkill_200881", - "text": "狂轰乱炸Lv1" + "text": "狂轰乱炸Ⅰ" }, "Param0": "", "Param1": "", @@ -80153,7 +80083,7 @@ "Key": "PassiveSkill_200882", "Name": { "key": "PassiveSkill_200882", - "text": "狂轰乱炸Lv2" + "text": "狂轰乱炸Ⅱ" }, "Param0": "", "Param1": "", @@ -80163,7 +80093,7 @@ "Key": "PassiveSkill_200883", "Name": { "key": "PassiveSkill_200883", - "text": "狂轰乱炸Lv3" + "text": "狂轰乱炸Ⅲ" }, "Param0": "", "Param1": "", @@ -80173,7 +80103,7 @@ "Key": "PassiveSkill_200884", "Name": { "key": "PassiveSkill_200884", - "text": "狂轰乱炸Lv4" + "text": "狂轰乱炸Ⅳ" }, "Param0": "", "Param1": "", @@ -80183,7 +80113,7 @@ "Key": "PassiveSkill_200885", "Name": { "key": "PassiveSkill_200885", - "text": "狂轰乱炸Lv5" + "text": "狂轰乱炸Ⅴ" }, "Param0": "", "Param1": "", @@ -80193,7 +80123,7 @@ "Key": "PassiveSkill_200886", "Name": { "key": "PassiveSkill_200886", - "text": "狂轰乱炸Lv6" + "text": "狂轰乱炸Ⅵ" }, "Param0": "", "Param1": "", @@ -80383,7 +80313,7 @@ "Key": "PassiveSkill_200921", "Name": { "key": "PassiveSkill_200921", - "text": "不计代价Lv1" + "text": "不计代价Ⅰ" }, "Param0": "", "Param1": "", @@ -80393,7 +80323,7 @@ "Key": "PassiveSkill_200922", "Name": { "key": "PassiveSkill_200922", - "text": "不计代价Lv2" + "text": "不计代价Ⅱ" }, "Param0": "", "Param1": "", @@ -80403,7 +80333,7 @@ "Key": "PassiveSkill_200923", "Name": { "key": "PassiveSkill_200923", - "text": "不计代价Lv3" + "text": "不计代价Ⅲ" }, "Param0": "", "Param1": "", @@ -80413,7 +80343,7 @@ "Key": "PassiveSkill_200924", "Name": { "key": "PassiveSkill_200924", - "text": "不计代价Lv4" + "text": "不计代价Ⅳ" }, "Param0": "", "Param1": "", @@ -80423,7 +80353,7 @@ "Key": "PassiveSkill_200925", "Name": { "key": "PassiveSkill_200925", - "text": "不计代价Lv5" + "text": "不计代价Ⅴ" }, "Param0": "", "Param1": "", @@ -80433,7 +80363,7 @@ "Key": "PassiveSkill_200926", "Name": { "key": "PassiveSkill_200926", - "text": "不计代价Lv6" + "text": "不计代价Ⅵ" }, "Param0": "", "Param1": "", @@ -80623,7 +80553,7 @@ "Key": "PassiveSkill_200961", "Name": { "key": "PassiveSkill_200961", - "text": "疯狂Lv1" + "text": "疯狂Ⅰ" }, "Param0": "", "Param1": "", @@ -80633,7 +80563,7 @@ "Key": "PassiveSkill_200962", "Name": { "key": "PassiveSkill_200962", - "text": "疯狂Lv2" + "text": "疯狂Ⅱ" }, "Param0": "", "Param1": "", @@ -80643,7 +80573,7 @@ "Key": "PassiveSkill_200963", "Name": { "key": "PassiveSkill_200963", - "text": "疯狂Lv3" + "text": "疯狂Ⅲ" }, "Param0": "", "Param1": "", @@ -80653,7 +80583,7 @@ "Key": "PassiveSkill_200964", "Name": { "key": "PassiveSkill_200964", - "text": "疯狂Lv4" + "text": "疯狂Ⅳ" }, "Param0": "", "Param1": "", @@ -80663,7 +80593,7 @@ "Key": "PassiveSkill_200965", "Name": { "key": "PassiveSkill_200965", - "text": "疯狂Lv5" + "text": "疯狂Ⅴ" }, "Param0": "", "Param1": "", @@ -80673,7 +80603,7 @@ "Key": "PassiveSkill_200966", "Name": { "key": "PassiveSkill_200966", - "text": "疯狂Lv6" + "text": "疯狂Ⅵ" }, "Param0": "", "Param1": "", @@ -80923,7 +80853,7 @@ "Key": "PassiveSkill_201011", "Name": { "key": "PassiveSkill_201011", - "text": "潜移默化Lv1" + "text": "潜移默化Ⅰ" }, "Param0": "", "Param1": "", @@ -80933,7 +80863,7 @@ "Key": "PassiveSkill_201012", "Name": { "key": "PassiveSkill_201012", - "text": "潜移默化Lv2" + "text": "潜移默化Ⅱ" }, "Param0": "", "Param1": "", @@ -80943,7 +80873,7 @@ "Key": "PassiveSkill_201013", "Name": { "key": "PassiveSkill_201013", - "text": "潜移默化Lv3" + "text": "潜移默化Ⅲ" }, "Param0": "", "Param1": "", @@ -80953,7 +80883,7 @@ "Key": "PassiveSkill_201014", "Name": { "key": "PassiveSkill_201014", - "text": "潜移默化Lv4" + "text": "潜移默化Ⅳ" }, "Param0": "", "Param1": "", @@ -80963,7 +80893,7 @@ "Key": "PassiveSkill_201015", "Name": { "key": "PassiveSkill_201015", - "text": "潜移默化Lv5" + "text": "潜移默化Ⅴ" }, "Param0": "", "Param1": "", @@ -80973,7 +80903,7 @@ "Key": "PassiveSkill_201016", "Name": { "key": "PassiveSkill_201016", - "text": "潜移默化Lv6" + "text": "潜移默化Ⅵ" }, "Param0": "", "Param1": "", diff --git a/ProjectNLD/Assets/Config/Data/actorcfg_item.json b/ProjectNLD/Assets/Config/Data/actorcfg_item.json index d1de5da98a2..e8f1dfeb9a5 100644 --- a/ProjectNLD/Assets/Config/Data/actorcfg_item.json +++ b/ProjectNLD/Assets/Config/Data/actorcfg_item.json @@ -11444,8 +11444,8 @@ }, { "ID": 21, - "Type": 5, - "NameLocal": "丛林猎手", + "Type": 1, + "NameLocal": "", "Param1": 1000, "Param2": 0, "Param3": 0, @@ -11467,8 +11467,8 @@ }, { "ID": 22, - "Type": 5, - "NameLocal": "毒藤", + "Type": 1, + "NameLocal": "", "Param1": 2000, "Param2": 0, "Param3": 0, @@ -11490,8 +11490,8 @@ }, { "ID": 23, - "Type": 5, - "NameLocal": "丛林伪装", + "Type": 1, + "NameLocal": "", "Param1": 3000, "Param2": 0, "Param3": 0, @@ -11513,8 +11513,8 @@ }, { "ID": 24, - "Type": 5, - "NameLocal": "圣诞狂欢", + "Type": 1, + "NameLocal": "", "Param1": 1001, "Param2": 0, "Param3": 0, @@ -11536,8 +11536,8 @@ }, { "ID": 25, - "Type": 5, - "NameLocal": "糖果Pro", + "Type": 1, + "NameLocal": "", "Param1": 2001, "Param2": 0, "Param3": 0, @@ -11559,8 +11559,8 @@ }, { "ID": 26, - "Type": 5, - "NameLocal": "麋鹿奔跑", + "Type": 1, + "NameLocal": "", "Param1": 3001, "Param2": 0, "Param3": 0, @@ -11580,6 +11580,351 @@ "Acquisition": [], "ExchangeParam": [] }, + { + "ID": 27, + "Type": 1, + "NameLocal": "", + "Param1": 1002, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300007.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 28, + "Type": 1, + "NameLocal": "", + "Param1": 2002, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300008.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 29, + "Type": 1, + "NameLocal": "", + "Param1": 3002, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300009.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 30, + "Type": 1, + "NameLocal": "", + "Param1": 1003, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300010.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 31, + "Type": 1, + "NameLocal": "", + "Param1": 2003, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300011.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 32, + "Type": 1, + "NameLocal": "", + "Param1": 3003, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300012.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 33, + "Type": 1, + "NameLocal": "", + "Param1": 1004, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300013.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 34, + "Type": 1, + "NameLocal": "", + "Param1": 2004, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300014.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 35, + "Type": 1, + "NameLocal": "", + "Param1": 3004, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300015.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 36, + "Type": 1, + "NameLocal": "", + "Param1": 1005, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300016.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 37, + "Type": 1, + "NameLocal": "", + "Param1": 2005, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300017.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 38, + "Type": 1, + "NameLocal": "", + "Param1": 3005, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300018.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 39, + "Type": 1, + "NameLocal": "", + "Param1": 1006, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300019.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 40, + "Type": 1, + "NameLocal": "", + "Param1": 2006, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300020.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, + { + "ID": 41, + "Type": 1, + "NameLocal": "", + "Param1": 3006, + "Param2": 0, + "Param3": 0, + "Rarity": 0, + "BatchUsing": false, + "MaxCount": 0, + "IconPath": "Assets/Art/UI/Texture/Icon/MaterialFragment/Icon_300021.png", + "CoinIconPath": "", + "Selections": [], + "MaxUseCount": 0, + "ExpireTransfor": 0, + "ShowInStorage": true, + "StorageType": 2, + "IntroductionKey": "", + "JumpToPos": 0, + "JumpToParam": 0, + "Acquisition": [], + "ExchangeParam": [] + }, { "ID": 1010001, "Type": 6, diff --git a/ProjectNLD/Assets/Config/Data/charactercfg_characterlevelexp.json b/ProjectNLD/Assets/Config/Data/charactercfg_characterlevelexp.json index cdf48ff05e8..e5bc1172450 100644 --- a/ProjectNLD/Assets/Config/Data/charactercfg_characterlevelexp.json +++ b/ProjectNLD/Assets/Config/Data/charactercfg_characterlevelexp.json @@ -1,7 +1,7 @@ [ { "Level": 1, - "EXP": 1000 + "EXP": 0 }, { "Level": 2, diff --git a/ProjectNLD/Assets/Config/Data/chargecfg_currencyshopcfg.json b/ProjectNLD/Assets/Config/Data/chargecfg_currencyshopcfg.json index 5a31f1ba22c..7ae8f6f2349 100644 --- a/ProjectNLD/Assets/Config/Data/chargecfg_currencyshopcfg.json +++ b/ProjectNLD/Assets/Config/Data/chargecfg_currencyshopcfg.json @@ -2,6 +2,7 @@ { "Id": 1, "AppleProductID": "Try_Consumable_099_15", + "PhxhProductID": "Phxh_Try_Consumable_099_15", "AppleBuyType": 0, "Name": "测试消耗品1", "NameLocal": "CurrencyShop_GoodsName_001", @@ -15,6 +16,7 @@ { "Id": 2, "AppleProductID": "Try_Consumable_099_16", + "PhxhProductID": "Phxh_Try_Consumable_099_16", "AppleBuyType": 0, "Name": "测试消耗品2", "NameLocal": "CurrencyShop_GoodsName_002", @@ -28,6 +30,7 @@ { "Id": 3, "AppleProductID": "Try_Consumable_099_17", + "PhxhProductID": "Phxh_Try_Consumable_099_17", "AppleBuyType": 0, "Name": "测试消耗品3", "NameLocal": "CurrencyShop_GoodsName_003", @@ -41,6 +44,7 @@ { "Id": 4, "AppleProductID": "Test_NonConsumable_099_20", + "PhxhProductID": "Phxh_Test_NonConsumable_099_20", "AppleBuyType": 1, "Name": "测试非消耗品1", "NameLocal": "CurrencyShop_GoodsName_004", @@ -54,6 +58,7 @@ { "Id": 5, "AppleProductID": "Test_NonConsumable_199_21", + "PhxhProductID": "Phxh_Test_NonConsumable_199_21", "AppleBuyType": 1, "Name": "测试非消耗品2", "NameLocal": "CurrencyShop_GoodsName_005", @@ -67,6 +72,7 @@ { "Id": 6, "AppleProductID": "", + "PhxhProductID": "", "AppleBuyType": 0, "Name": "测试消耗品4", "NameLocal": "CurrencyShop_GoodsName_006", diff --git a/ProjectNLD/Assets/Config/Data/conditionconfig.json b/ProjectNLD/Assets/Config/Data/conditionconfig.json index 0e1108bc8fd..b5b0b8f70ea 100644 --- a/ProjectNLD/Assets/Config/Data/conditionconfig.json +++ b/ProjectNLD/Assets/Config/Data/conditionconfig.json @@ -747,5 +747,124 @@ "Param1": 412001, "Param2": 0, "Param3": 0 + }, + { + "Id": 500000, + "Type": 22, + "Param1": 300001, + "Param2": 3000010102, + "Param3": 0 + }, + { + "Id": 500001, + "Type": 22, + "Param1": 300004, + "Param2": 3000040103, + "Param3": 0 + }, + { + "Id": 500002, + "Type": 22, + "Param1": 300001, + "Param2": 3000010101, + "Param3": 0 + }, + { + "Id": 500003, + "Type": 22, + "Param1": 300001, + "Param2": 3000010301, + "Param3": 0 + }, + { + "Id": 500004, + "Type": 22, + "Param1": 300004, + "Param2": 3000040101, + "Param3": 0 + }, + { + "Id": 500005, + "Type": 22, + "Param1": 300004, + "Param2": 3000040102, + "Param3": 0 + }, + { + "Id": 500006, + "Type": 22, + "Param1": 300008, + "Param2": 3000080101, + "Param3": 0 + }, + { + "Id": 500007, + "Type": 22, + "Param1": 300010, + "Param2": 3000100101, + "Param3": 0 + }, + { + "Id": 500008, + "Type": 22, + "Param1": 300010, + "Param2": 3000100301, + "Param3": 0 + }, + { + "Id": 500009, + "Type": 22, + "Param1": 300014, + "Param2": 3000140101, + "Param3": 0 + }, + { + "Id": 500010, + "Type": 22, + "Param1": 300014, + "Param2": 3000140301, + "Param3": 0 + }, + { + "Id": 500011, + "Type": 22, + "Param1": 310001, + "Param2": 3100010101, + "Param3": 0 + }, + { + "Id": 500012, + "Type": 22, + "Param1": 310001, + "Param2": 3100010102, + "Param3": 0 + }, + { + "Id": 500013, + "Type": 22, + "Param1": 320001, + "Param2": 3200010101, + "Param3": 0 + }, + { + "Id": 500014, + "Type": 22, + "Param1": 320001, + "Param2": 3200010102, + "Param3": 0 + }, + { + "Id": 500015, + "Type": 22, + "Param1": 330001, + "Param2": 3300010101, + "Param3": 0 + }, + { + "Id": 500016, + "Type": 22, + "Param1": 330001, + "Param2": 3300010102, + "Param3": 0 } ] \ No newline at end of file diff --git a/ProjectNLD/Assets/Config/Data/effectcfg_effectconfig.json b/ProjectNLD/Assets/Config/Data/effectcfg_effectconfig.json index e6c1a2eec55..07c813fe302 100644 --- a/ProjectNLD/Assets/Config/Data/effectcfg_effectconfig.json +++ b/ProjectNLD/Assets/Config/Data/effectcfg_effectconfig.json @@ -1300,5 +1300,19 @@ "IsUIEffect": false, "NeedPreload": true, "ExistTime": -1 + }, + { + "RoleID": 20001, + "PrefabPath": "Zhanling_likai", + "IsUIEffect": false, + "NeedPreload": true, + "ExistTime": 5 + }, + { + "RoleID": 20002, + "PrefabPath": "capture_point_end", + "IsUIEffect": false, + "NeedPreload": true, + "ExistTime": 5 } ] \ No newline at end of file diff --git a/ProjectNLD/Assets/Config/Data/globalconfig.json b/ProjectNLD/Assets/Config/Data/globalconfig.json index 9417f841411..ae8b2a84044 100644 --- a/ProjectNLD/Assets/Config/Data/globalconfig.json +++ b/ProjectNLD/Assets/Config/Data/globalconfig.json @@ -38,7 +38,7 @@ "PvpScoreDown": 1, "PvpScoreFailed": 20, "PvpScoreDefence": 10, - "PvpPageCount": 10, + "PvpPageCount": 200, "PvpCost": { "Id": 6, "Count": 5 diff --git a/ProjectNLD/Assets/Config/Data/skillcfg_skillconfig.json b/ProjectNLD/Assets/Config/Data/skillcfg_skillconfig.json index d193fd3c131..53cc879ca5b 100644 --- a/ProjectNLD/Assets/Config/Data/skillcfg_skillconfig.json +++ b/ProjectNLD/Assets/Config/Data/skillcfg_skillconfig.json @@ -1559,7 +1559,7 @@ "ReferIds": [ 530047 ], - "IconPath": "" + "IconPath": "Icon_skill_10407.png" }, { "ID": 10408, @@ -1586,7 +1586,7 @@ "ReferIds": [ 530048 ], - "IconPath": "" + "IconPath": "Icon_skill_10408.png" }, { "ID": 1000110, @@ -1615,7 +1615,7 @@ "ReferIds": [ 1000110 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000120, @@ -1644,7 +1644,7 @@ "ReferIds": [ 1000120 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000130, @@ -1673,7 +1673,7 @@ "ReferIds": [ 1000130 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000140, @@ -1702,7 +1702,7 @@ "ReferIds": [ 1000140 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000150, @@ -1731,7 +1731,7 @@ "ReferIds": [ 1000150 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000111, @@ -1760,7 +1760,7 @@ "ReferIds": [ 1000110 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000121, @@ -1789,7 +1789,7 @@ "ReferIds": [ 1000120 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000131, @@ -1818,7 +1818,7 @@ "ReferIds": [ 1000130 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000141, @@ -1847,7 +1847,7 @@ "ReferIds": [ 1000140 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000151, @@ -1876,7 +1876,7 @@ "ReferIds": [ 1000150 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000112, @@ -1905,7 +1905,7 @@ "ReferIds": [ 1000110 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000122, @@ -1934,7 +1934,7 @@ "ReferIds": [ 1000120 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000132, @@ -1963,7 +1963,7 @@ "ReferIds": [ 1000130 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000142, @@ -1992,7 +1992,7 @@ "ReferIds": [ 1000140 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000152, @@ -2021,7 +2021,7 @@ "ReferIds": [ 1000150 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000113, @@ -2050,7 +2050,7 @@ "ReferIds": [ 1000110 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000123, @@ -2079,7 +2079,7 @@ "ReferIds": [ 1000120 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000133, @@ -2108,7 +2108,7 @@ "ReferIds": [ 1000130 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000143, @@ -2137,7 +2137,7 @@ "ReferIds": [ 1000140 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000153, @@ -2166,7 +2166,7 @@ "ReferIds": [ 1000150 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000114, @@ -2195,7 +2195,7 @@ "ReferIds": [ 1000110 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000124, @@ -2224,7 +2224,7 @@ "ReferIds": [ 1000120 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000134, @@ -2253,7 +2253,7 @@ "ReferIds": [ 1000130 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000144, @@ -2282,7 +2282,7 @@ "ReferIds": [ 1000140 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000154, @@ -2311,7 +2311,7 @@ "ReferIds": [ 1000150 ], - "IconPath": "" + "IconPath": "Icon_skill_10001.png" }, { "ID": 1000210, @@ -2340,7 +2340,7 @@ "ReferIds": [ 1000210 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000220, @@ -2369,7 +2369,7 @@ "ReferIds": [ 1000220 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000230, @@ -2398,7 +2398,7 @@ "ReferIds": [ 1000230 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000240, @@ -2427,7 +2427,7 @@ "ReferIds": [ 1000240 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000250, @@ -2456,7 +2456,7 @@ "ReferIds": [ 1000250 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000211, @@ -2485,7 +2485,7 @@ "ReferIds": [ 1000210 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000221, @@ -2514,7 +2514,7 @@ "ReferIds": [ 1000220 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000231, @@ -2543,7 +2543,7 @@ "ReferIds": [ 1000230 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000241, @@ -2572,7 +2572,7 @@ "ReferIds": [ 1000240 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000251, @@ -2601,7 +2601,7 @@ "ReferIds": [ 1000250 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000212, @@ -2630,7 +2630,7 @@ "ReferIds": [ 1000210 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000222, @@ -2659,7 +2659,7 @@ "ReferIds": [ 1000220 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000232, @@ -2688,7 +2688,7 @@ "ReferIds": [ 1000230 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000242, @@ -2717,7 +2717,7 @@ "ReferIds": [ 1000240 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000252, @@ -2746,7 +2746,7 @@ "ReferIds": [ 1000250 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000213, @@ -2775,7 +2775,7 @@ "ReferIds": [ 1000210 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000223, @@ -2804,7 +2804,7 @@ "ReferIds": [ 1000220 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000233, @@ -2833,7 +2833,7 @@ "ReferIds": [ 1000230 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000243, @@ -2862,7 +2862,7 @@ "ReferIds": [ 1000240 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000253, @@ -2891,7 +2891,7 @@ "ReferIds": [ 1000250 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000214, @@ -2920,7 +2920,7 @@ "ReferIds": [ 1000210 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000224, @@ -2949,7 +2949,7 @@ "ReferIds": [ 1000220 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000234, @@ -2978,7 +2978,7 @@ "ReferIds": [ 1000230 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000244, @@ -3007,7 +3007,7 @@ "ReferIds": [ 1000240 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000254, @@ -3036,7 +3036,7 @@ "ReferIds": [ 1000250 ], - "IconPath": "" + "IconPath": "Icon_skill_10002.png" }, { "ID": 1000310, @@ -3065,7 +3065,7 @@ "ReferIds": [ 1000310 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000320, @@ -3094,7 +3094,7 @@ "ReferIds": [ 1000320 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000330, @@ -3123,7 +3123,7 @@ "ReferIds": [ 1000330 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000340, @@ -3152,7 +3152,7 @@ "ReferIds": [ 1000340 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000350, @@ -3181,7 +3181,7 @@ "ReferIds": [ 1000350 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000311, @@ -3210,7 +3210,7 @@ "ReferIds": [ 1000310 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000321, @@ -3239,7 +3239,7 @@ "ReferIds": [ 1000320 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000331, @@ -3268,7 +3268,7 @@ "ReferIds": [ 1000330 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000341, @@ -3297,7 +3297,7 @@ "ReferIds": [ 1000340 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000351, @@ -3326,7 +3326,7 @@ "ReferIds": [ 1000350 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000312, @@ -3355,7 +3355,7 @@ "ReferIds": [ 1000310 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000322, @@ -3384,7 +3384,7 @@ "ReferIds": [ 1000320 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000332, @@ -3413,7 +3413,7 @@ "ReferIds": [ 1000330 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000342, @@ -3442,7 +3442,7 @@ "ReferIds": [ 1000340 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000352, @@ -3471,7 +3471,7 @@ "ReferIds": [ 1000350 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000313, @@ -3500,7 +3500,7 @@ "ReferIds": [ 1000310 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000323, @@ -3529,7 +3529,7 @@ "ReferIds": [ 1000320 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000333, @@ -3558,7 +3558,7 @@ "ReferIds": [ 1000330 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000343, @@ -3587,7 +3587,7 @@ "ReferIds": [ 1000340 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000353, @@ -3616,7 +3616,7 @@ "ReferIds": [ 1000350 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000314, @@ -3645,7 +3645,7 @@ "ReferIds": [ 1000310 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000324, @@ -3674,7 +3674,7 @@ "ReferIds": [ 1000320 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000334, @@ -3703,7 +3703,7 @@ "ReferIds": [ 1000330 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000344, @@ -3732,7 +3732,7 @@ "ReferIds": [ 1000340 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000354, @@ -3761,7 +3761,7 @@ "ReferIds": [ 1000350 ], - "IconPath": "" + "IconPath": "Icon_skill_10003.png" }, { "ID": 1000410, @@ -3790,7 +3790,7 @@ "ReferIds": [ 1000410 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000420, @@ -3819,7 +3819,7 @@ "ReferIds": [ 1000420 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000430, @@ -3848,7 +3848,7 @@ "ReferIds": [ 1000430 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000440, @@ -3877,7 +3877,7 @@ "ReferIds": [ 1000440 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000450, @@ -3906,7 +3906,7 @@ "ReferIds": [ 1000450 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000411, @@ -3935,7 +3935,7 @@ "ReferIds": [ 1000410 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000421, @@ -3964,7 +3964,7 @@ "ReferIds": [ 1000420 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000431, @@ -3993,7 +3993,7 @@ "ReferIds": [ 1000430 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000441, @@ -4022,7 +4022,7 @@ "ReferIds": [ 1000440 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000451, @@ -4051,7 +4051,7 @@ "ReferIds": [ 1000450 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000412, @@ -4080,7 +4080,7 @@ "ReferIds": [ 1000410 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000422, @@ -4109,7 +4109,7 @@ "ReferIds": [ 1000420 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000432, @@ -4138,7 +4138,7 @@ "ReferIds": [ 1000430 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000442, @@ -4167,7 +4167,7 @@ "ReferIds": [ 1000440 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000452, @@ -4196,7 +4196,7 @@ "ReferIds": [ 1000450 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000413, @@ -4225,7 +4225,7 @@ "ReferIds": [ 1000410 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000423, @@ -4254,7 +4254,7 @@ "ReferIds": [ 1000420 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000433, @@ -4283,7 +4283,7 @@ "ReferIds": [ 1000430 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000443, @@ -4312,7 +4312,7 @@ "ReferIds": [ 1000440 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000453, @@ -4341,7 +4341,7 @@ "ReferIds": [ 1000450 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000414, @@ -4370,7 +4370,7 @@ "ReferIds": [ 1000410 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000424, @@ -4399,7 +4399,7 @@ "ReferIds": [ 1000420 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000434, @@ -4428,7 +4428,7 @@ "ReferIds": [ 1000430 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000444, @@ -4457,7 +4457,7 @@ "ReferIds": [ 1000440 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000454, @@ -4486,7 +4486,7 @@ "ReferIds": [ 1000450 ], - "IconPath": "" + "IconPath": "Icon_skill_10004.png" }, { "ID": 1000510, @@ -4515,7 +4515,7 @@ "ReferIds": [ 1000510 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000520, @@ -4544,7 +4544,7 @@ "ReferIds": [ 1000520 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000530, @@ -4573,7 +4573,7 @@ "ReferIds": [ 1000530 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000540, @@ -4602,7 +4602,7 @@ "ReferIds": [ 1000540 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000550, @@ -4631,7 +4631,7 @@ "ReferIds": [ 1000550 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000511, @@ -4660,7 +4660,7 @@ "ReferIds": [ 1000510 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000521, @@ -4689,7 +4689,7 @@ "ReferIds": [ 1000520 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000531, @@ -4718,7 +4718,7 @@ "ReferIds": [ 1000530 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000541, @@ -4747,7 +4747,7 @@ "ReferIds": [ 1000540 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000551, @@ -4776,7 +4776,7 @@ "ReferIds": [ 1000550 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000512, @@ -4805,7 +4805,7 @@ "ReferIds": [ 1000510 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000522, @@ -4834,7 +4834,7 @@ "ReferIds": [ 1000520 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000532, @@ -4863,7 +4863,7 @@ "ReferIds": [ 1000530 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000542, @@ -4892,7 +4892,7 @@ "ReferIds": [ 1000540 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000552, @@ -4921,7 +4921,7 @@ "ReferIds": [ 1000550 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000513, @@ -4950,7 +4950,7 @@ "ReferIds": [ 1000510 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000523, @@ -4979,7 +4979,7 @@ "ReferIds": [ 1000520 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000533, @@ -5008,7 +5008,7 @@ "ReferIds": [ 1000530 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000543, @@ -5037,7 +5037,7 @@ "ReferIds": [ 1000540 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000553, @@ -5066,7 +5066,7 @@ "ReferIds": [ 1000550 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000514, @@ -5095,7 +5095,7 @@ "ReferIds": [ 1000510 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000524, @@ -5124,7 +5124,7 @@ "ReferIds": [ 1000520 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000534, @@ -5153,7 +5153,7 @@ "ReferIds": [ 1000530 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000544, @@ -5182,7 +5182,7 @@ "ReferIds": [ 1000540 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000554, @@ -5211,7 +5211,7 @@ "ReferIds": [ 1000550 ], - "IconPath": "" + "IconPath": "Icon_skill_10005.png" }, { "ID": 1000610, @@ -5240,7 +5240,7 @@ "ReferIds": [ 1000610 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000620, @@ -5269,7 +5269,7 @@ "ReferIds": [ 1000620 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000630, @@ -5298,7 +5298,7 @@ "ReferIds": [ 1000630 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000640, @@ -5327,7 +5327,7 @@ "ReferIds": [ 1000640 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000650, @@ -5356,7 +5356,7 @@ "ReferIds": [ 1000650 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000611, @@ -5385,7 +5385,7 @@ "ReferIds": [ 1000610 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000621, @@ -5414,7 +5414,7 @@ "ReferIds": [ 1000620 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000631, @@ -5443,7 +5443,7 @@ "ReferIds": [ 1000630 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000641, @@ -5472,7 +5472,7 @@ "ReferIds": [ 1000640 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000651, @@ -5501,7 +5501,7 @@ "ReferIds": [ 1000650 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000612, @@ -5530,7 +5530,7 @@ "ReferIds": [ 1000610 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000622, @@ -5559,7 +5559,7 @@ "ReferIds": [ 1000620 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000632, @@ -5588,7 +5588,7 @@ "ReferIds": [ 1000630 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000642, @@ -5617,7 +5617,7 @@ "ReferIds": [ 1000640 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000652, @@ -5646,7 +5646,7 @@ "ReferIds": [ 1000650 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000613, @@ -5675,7 +5675,7 @@ "ReferIds": [ 1000610 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000623, @@ -5704,7 +5704,7 @@ "ReferIds": [ 1000620 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000633, @@ -5733,7 +5733,7 @@ "ReferIds": [ 1000630 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000643, @@ -5762,7 +5762,7 @@ "ReferIds": [ 1000640 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000653, @@ -5791,7 +5791,7 @@ "ReferIds": [ 1000650 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000614, @@ -5820,7 +5820,7 @@ "ReferIds": [ 1000610 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000624, @@ -5849,7 +5849,7 @@ "ReferIds": [ 1000620 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000634, @@ -5878,7 +5878,7 @@ "ReferIds": [ 1000630 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000644, @@ -5907,7 +5907,7 @@ "ReferIds": [ 1000640 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000654, @@ -5936,7 +5936,7 @@ "ReferIds": [ 1000650 ], - "IconPath": "" + "IconPath": "Icon_skill_10006.png" }, { "ID": 1000710, @@ -5965,7 +5965,7 @@ "ReferIds": [ 1000710 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000720, @@ -5994,7 +5994,7 @@ "ReferIds": [ 1000720 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000730, @@ -6023,7 +6023,7 @@ "ReferIds": [ 1000730 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000740, @@ -6052,7 +6052,7 @@ "ReferIds": [ 1000740 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000750, @@ -6081,7 +6081,7 @@ "ReferIds": [ 1000750 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000711, @@ -6110,7 +6110,7 @@ "ReferIds": [ 1000710 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000721, @@ -6139,7 +6139,7 @@ "ReferIds": [ 1000720 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000731, @@ -6168,7 +6168,7 @@ "ReferIds": [ 1000730 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000741, @@ -6197,7 +6197,7 @@ "ReferIds": [ 1000740 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000751, @@ -6226,7 +6226,7 @@ "ReferIds": [ 1000750 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000712, @@ -6255,7 +6255,7 @@ "ReferIds": [ 1000710 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000722, @@ -6284,7 +6284,7 @@ "ReferIds": [ 1000720 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000732, @@ -6313,7 +6313,7 @@ "ReferIds": [ 1000730 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000742, @@ -6342,7 +6342,7 @@ "ReferIds": [ 1000740 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000752, @@ -6371,7 +6371,7 @@ "ReferIds": [ 1000750 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000713, @@ -6400,7 +6400,7 @@ "ReferIds": [ 1000710 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000723, @@ -6429,7 +6429,7 @@ "ReferIds": [ 1000720 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000733, @@ -6458,7 +6458,7 @@ "ReferIds": [ 1000730 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000743, @@ -6487,7 +6487,7 @@ "ReferIds": [ 1000740 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000753, @@ -6516,7 +6516,7 @@ "ReferIds": [ 1000750 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000714, @@ -6545,7 +6545,7 @@ "ReferIds": [ 1000710 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000724, @@ -6574,7 +6574,7 @@ "ReferIds": [ 1000720 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000734, @@ -6603,7 +6603,7 @@ "ReferIds": [ 1000730 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000744, @@ -6632,7 +6632,7 @@ "ReferIds": [ 1000740 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000754, @@ -6661,7 +6661,7 @@ "ReferIds": [ 1000750 ], - "IconPath": "" + "IconPath": "Icon_skill_10007.png" }, { "ID": 1000810, @@ -6690,7 +6690,7 @@ "ReferIds": [ 1000810 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000820, @@ -6719,7 +6719,7 @@ "ReferIds": [ 1000820 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000830, @@ -6748,7 +6748,7 @@ "ReferIds": [ 1000830 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000840, @@ -6777,7 +6777,7 @@ "ReferIds": [ 1000840 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000850, @@ -6806,7 +6806,7 @@ "ReferIds": [ 1000850 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000811, @@ -6835,7 +6835,7 @@ "ReferIds": [ 1000810 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000821, @@ -6864,7 +6864,7 @@ "ReferIds": [ 1000820 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000831, @@ -6893,7 +6893,7 @@ "ReferIds": [ 1000830 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000841, @@ -6922,7 +6922,7 @@ "ReferIds": [ 1000840 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000851, @@ -6951,7 +6951,7 @@ "ReferIds": [ 1000850 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000812, @@ -6980,7 +6980,7 @@ "ReferIds": [ 1000810 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000822, @@ -7009,7 +7009,7 @@ "ReferIds": [ 1000820 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000832, @@ -7038,7 +7038,7 @@ "ReferIds": [ 1000830 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000842, @@ -7067,7 +7067,7 @@ "ReferIds": [ 1000840 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000852, @@ -7096,7 +7096,7 @@ "ReferIds": [ 1000850 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000813, @@ -7125,7 +7125,7 @@ "ReferIds": [ 1000810 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000823, @@ -7154,7 +7154,7 @@ "ReferIds": [ 1000820 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000833, @@ -7183,7 +7183,7 @@ "ReferIds": [ 1000830 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000843, @@ -7212,7 +7212,7 @@ "ReferIds": [ 1000840 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000853, @@ -7241,7 +7241,7 @@ "ReferIds": [ 1000850 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000814, @@ -7270,7 +7270,7 @@ "ReferIds": [ 1000810 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000824, @@ -7299,7 +7299,7 @@ "ReferIds": [ 1000820 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000834, @@ -7328,7 +7328,7 @@ "ReferIds": [ 1000830 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000844, @@ -7357,7 +7357,7 @@ "ReferIds": [ 1000840 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000854, @@ -7386,7 +7386,7 @@ "ReferIds": [ 1000850 ], - "IconPath": "" + "IconPath": "Icon_skill_10008.png" }, { "ID": 1000910, @@ -7415,7 +7415,7 @@ "ReferIds": [ 1000910 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000920, @@ -7444,7 +7444,7 @@ "ReferIds": [ 1000920 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000930, @@ -7473,7 +7473,7 @@ "ReferIds": [ 1000930 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000940, @@ -7502,7 +7502,7 @@ "ReferIds": [ 1000940 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000950, @@ -7531,7 +7531,7 @@ "ReferIds": [ 1000950 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000911, @@ -7560,7 +7560,7 @@ "ReferIds": [ 1000910 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000921, @@ -7589,7 +7589,7 @@ "ReferIds": [ 1000920 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000931, @@ -7618,7 +7618,7 @@ "ReferIds": [ 1000930 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000941, @@ -7647,7 +7647,7 @@ "ReferIds": [ 1000940 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000951, @@ -7676,7 +7676,7 @@ "ReferIds": [ 1000950 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000912, @@ -7705,7 +7705,7 @@ "ReferIds": [ 1000910 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000922, @@ -7734,7 +7734,7 @@ "ReferIds": [ 1000920 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000932, @@ -7763,7 +7763,7 @@ "ReferIds": [ 1000930 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000942, @@ -7792,7 +7792,7 @@ "ReferIds": [ 1000940 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000952, @@ -7821,7 +7821,7 @@ "ReferIds": [ 1000950 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000913, @@ -7850,7 +7850,7 @@ "ReferIds": [ 1000910 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000923, @@ -7879,7 +7879,7 @@ "ReferIds": [ 1000920 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000933, @@ -7908,7 +7908,7 @@ "ReferIds": [ 1000930 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000943, @@ -7937,7 +7937,7 @@ "ReferIds": [ 1000940 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000953, @@ -7966,7 +7966,7 @@ "ReferIds": [ 1000950 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000914, @@ -7995,7 +7995,7 @@ "ReferIds": [ 1000910 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000924, @@ -8024,7 +8024,7 @@ "ReferIds": [ 1000920 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000934, @@ -8053,7 +8053,7 @@ "ReferIds": [ 1000930 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000944, @@ -8082,7 +8082,7 @@ "ReferIds": [ 1000940 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1000954, @@ -8111,7 +8111,7 @@ "ReferIds": [ 1000950 ], - "IconPath": "" + "IconPath": "Icon_skill_10009.png" }, { "ID": 1001010, @@ -8140,7 +8140,7 @@ "ReferIds": [ 1001010 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001020, @@ -8169,7 +8169,7 @@ "ReferIds": [ 1001020 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001030, @@ -8198,7 +8198,7 @@ "ReferIds": [ 1001030 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001040, @@ -8227,7 +8227,7 @@ "ReferIds": [ 1001040 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001050, @@ -8256,7 +8256,7 @@ "ReferIds": [ 1001050 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001011, @@ -8285,7 +8285,7 @@ "ReferIds": [ 1001010 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001021, @@ -8314,7 +8314,7 @@ "ReferIds": [ 1001020 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001031, @@ -8343,7 +8343,7 @@ "ReferIds": [ 1001030 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001041, @@ -8372,7 +8372,7 @@ "ReferIds": [ 1001040 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001051, @@ -8401,7 +8401,7 @@ "ReferIds": [ 1001050 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001012, @@ -8430,7 +8430,7 @@ "ReferIds": [ 1001010 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001022, @@ -8459,7 +8459,7 @@ "ReferIds": [ 1001020 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001032, @@ -8488,7 +8488,7 @@ "ReferIds": [ 1001030 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001042, @@ -8517,7 +8517,7 @@ "ReferIds": [ 1001040 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001052, @@ -8546,7 +8546,7 @@ "ReferIds": [ 1001050 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001013, @@ -8575,7 +8575,7 @@ "ReferIds": [ 1001010 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001023, @@ -8604,7 +8604,7 @@ "ReferIds": [ 1001020 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001033, @@ -8633,7 +8633,7 @@ "ReferIds": [ 1001030 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001043, @@ -8662,7 +8662,7 @@ "ReferIds": [ 1001040 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001053, @@ -8691,7 +8691,7 @@ "ReferIds": [ 1001050 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001014, @@ -8720,7 +8720,7 @@ "ReferIds": [ 1001010 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001024, @@ -8749,7 +8749,7 @@ "ReferIds": [ 1001020 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001034, @@ -8778,7 +8778,7 @@ "ReferIds": [ 1001030 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001044, @@ -8807,7 +8807,7 @@ "ReferIds": [ 1001040 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001054, @@ -8836,7 +8836,7 @@ "ReferIds": [ 1001050 ], - "IconPath": "" + "IconPath": "Icon_skill_10010.png" }, { "ID": 1001110, @@ -8865,7 +8865,7 @@ "ReferIds": [ 1001110 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001120, @@ -8894,7 +8894,7 @@ "ReferIds": [ 1001120 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001130, @@ -8923,7 +8923,7 @@ "ReferIds": [ 1001130 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001140, @@ -8952,7 +8952,7 @@ "ReferIds": [ 1001140 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001150, @@ -8981,7 +8981,7 @@ "ReferIds": [ 1001150 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001111, @@ -9010,7 +9010,7 @@ "ReferIds": [ 1001110 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001121, @@ -9039,7 +9039,7 @@ "ReferIds": [ 1001120 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001131, @@ -9068,7 +9068,7 @@ "ReferIds": [ 1001130 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001141, @@ -9097,7 +9097,7 @@ "ReferIds": [ 1001140 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001151, @@ -9126,7 +9126,7 @@ "ReferIds": [ 1001150 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001112, @@ -9155,7 +9155,7 @@ "ReferIds": [ 1001110 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001122, @@ -9184,7 +9184,7 @@ "ReferIds": [ 1001120 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001132, @@ -9213,7 +9213,7 @@ "ReferIds": [ 1001130 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001142, @@ -9242,7 +9242,7 @@ "ReferIds": [ 1001140 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001152, @@ -9271,7 +9271,7 @@ "ReferIds": [ 1001150 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001113, @@ -9300,7 +9300,7 @@ "ReferIds": [ 1001110 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001123, @@ -9329,7 +9329,7 @@ "ReferIds": [ 1001120 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001133, @@ -9358,7 +9358,7 @@ "ReferIds": [ 1001130 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001143, @@ -9387,7 +9387,7 @@ "ReferIds": [ 1001140 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001153, @@ -9416,7 +9416,7 @@ "ReferIds": [ 1001150 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001114, @@ -9445,7 +9445,7 @@ "ReferIds": [ 1001110 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001124, @@ -9474,7 +9474,7 @@ "ReferIds": [ 1001120 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001134, @@ -9503,7 +9503,7 @@ "ReferIds": [ 1001130 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001144, @@ -9532,7 +9532,7 @@ "ReferIds": [ 1001140 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001154, @@ -9561,7 +9561,7 @@ "ReferIds": [ 1001150 ], - "IconPath": "" + "IconPath": "Icon_skill_10011.png" }, { "ID": 1001210, @@ -9596,7 +9596,7 @@ "ReferIds": [ 1001210 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001220, @@ -9631,7 +9631,7 @@ "ReferIds": [ 1001220 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001230, @@ -9666,7 +9666,7 @@ "ReferIds": [ 1001230 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001240, @@ -9701,7 +9701,7 @@ "ReferIds": [ 1001240 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001250, @@ -9736,7 +9736,7 @@ "ReferIds": [ 1001250 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001211, @@ -9771,7 +9771,7 @@ "ReferIds": [ 1001210 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001221, @@ -9806,7 +9806,7 @@ "ReferIds": [ 1001220 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001231, @@ -9841,7 +9841,7 @@ "ReferIds": [ 1001230 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001241, @@ -9876,7 +9876,7 @@ "ReferIds": [ 1001240 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001251, @@ -9911,7 +9911,7 @@ "ReferIds": [ 1001250 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001212, @@ -9946,7 +9946,7 @@ "ReferIds": [ 1001210 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001222, @@ -9981,7 +9981,7 @@ "ReferIds": [ 1001220 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001232, @@ -10016,7 +10016,7 @@ "ReferIds": [ 1001230 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001242, @@ -10051,7 +10051,7 @@ "ReferIds": [ 1001240 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001252, @@ -10086,7 +10086,7 @@ "ReferIds": [ 1001250 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001213, @@ -10121,7 +10121,7 @@ "ReferIds": [ 1001210 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001223, @@ -10156,7 +10156,7 @@ "ReferIds": [ 1001220 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001233, @@ -10191,7 +10191,7 @@ "ReferIds": [ 1001230 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001243, @@ -10226,7 +10226,7 @@ "ReferIds": [ 1001240 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001253, @@ -10261,7 +10261,7 @@ "ReferIds": [ 1001250 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001214, @@ -10296,7 +10296,7 @@ "ReferIds": [ 1001210 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001224, @@ -10331,7 +10331,7 @@ "ReferIds": [ 1001220 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001234, @@ -10366,7 +10366,7 @@ "ReferIds": [ 1001230 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001244, @@ -10401,7 +10401,7 @@ "ReferIds": [ 1001240 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001254, @@ -10436,7 +10436,7 @@ "ReferIds": [ 1001250 ], - "IconPath": "" + "IconPath": "Icon_skill_10012.png" }, { "ID": 1001310, @@ -10465,7 +10465,7 @@ "ReferIds": [ 1001310 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001320, @@ -10494,7 +10494,7 @@ "ReferIds": [ 1001320 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001330, @@ -10523,7 +10523,7 @@ "ReferIds": [ 1001330 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001340, @@ -10552,7 +10552,7 @@ "ReferIds": [ 1001340 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001350, @@ -10581,7 +10581,7 @@ "ReferIds": [ 1001350 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001311, @@ -10610,7 +10610,7 @@ "ReferIds": [ 1001310 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001321, @@ -10639,7 +10639,7 @@ "ReferIds": [ 1001320 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001331, @@ -10668,7 +10668,7 @@ "ReferIds": [ 1001330 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001341, @@ -10697,7 +10697,7 @@ "ReferIds": [ 1001340 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001351, @@ -10726,7 +10726,7 @@ "ReferIds": [ 1001350 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001312, @@ -10755,7 +10755,7 @@ "ReferIds": [ 1001310 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001322, @@ -10784,7 +10784,7 @@ "ReferIds": [ 1001320 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001332, @@ -10813,7 +10813,7 @@ "ReferIds": [ 1001330 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001342, @@ -10842,7 +10842,7 @@ "ReferIds": [ 1001340 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001352, @@ -10871,7 +10871,7 @@ "ReferIds": [ 1001350 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001313, @@ -10900,7 +10900,7 @@ "ReferIds": [ 1001310 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001323, @@ -10929,7 +10929,7 @@ "ReferIds": [ 1001320 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001333, @@ -10958,7 +10958,7 @@ "ReferIds": [ 1001330 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001343, @@ -10987,7 +10987,7 @@ "ReferIds": [ 1001340 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001353, @@ -11016,7 +11016,7 @@ "ReferIds": [ 1001350 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001314, @@ -11045,7 +11045,7 @@ "ReferIds": [ 1001310 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001324, @@ -11074,7 +11074,7 @@ "ReferIds": [ 1001320 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001334, @@ -11103,7 +11103,7 @@ "ReferIds": [ 1001330 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001344, @@ -11132,7 +11132,7 @@ "ReferIds": [ 1001340 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001354, @@ -11161,7 +11161,7 @@ "ReferIds": [ 1001350 ], - "IconPath": "" + "IconPath": "Icon_skill_10013.png" }, { "ID": 1001410, @@ -11190,7 +11190,7 @@ "ReferIds": [ 1001410 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001420, @@ -11219,7 +11219,7 @@ "ReferIds": [ 1001420 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001430, @@ -11248,7 +11248,7 @@ "ReferIds": [ 1001430 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001440, @@ -11277,7 +11277,7 @@ "ReferIds": [ 1001440 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001450, @@ -11306,7 +11306,7 @@ "ReferIds": [ 1001450 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001411, @@ -11335,7 +11335,7 @@ "ReferIds": [ 1001410 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001421, @@ -11364,7 +11364,7 @@ "ReferIds": [ 1001420 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001431, @@ -11393,7 +11393,7 @@ "ReferIds": [ 1001430 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001441, @@ -11422,7 +11422,7 @@ "ReferIds": [ 1001440 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001451, @@ -11451,7 +11451,7 @@ "ReferIds": [ 1001450 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001412, @@ -11480,7 +11480,7 @@ "ReferIds": [ 1001410 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001422, @@ -11509,7 +11509,7 @@ "ReferIds": [ 1001420 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001432, @@ -11538,7 +11538,7 @@ "ReferIds": [ 1001430 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001442, @@ -11567,7 +11567,7 @@ "ReferIds": [ 1001440 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001452, @@ -11596,7 +11596,7 @@ "ReferIds": [ 1001450 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001413, @@ -11625,7 +11625,7 @@ "ReferIds": [ 1001410 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001423, @@ -11654,7 +11654,7 @@ "ReferIds": [ 1001420 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001433, @@ -11683,7 +11683,7 @@ "ReferIds": [ 1001430 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001443, @@ -11712,7 +11712,7 @@ "ReferIds": [ 1001440 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001453, @@ -11741,7 +11741,7 @@ "ReferIds": [ 1001450 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001414, @@ -11770,7 +11770,7 @@ "ReferIds": [ 1001410 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001424, @@ -11799,7 +11799,7 @@ "ReferIds": [ 1001420 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001434, @@ -11828,7 +11828,7 @@ "ReferIds": [ 1001430 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001444, @@ -11857,7 +11857,7 @@ "ReferIds": [ 1001440 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001454, @@ -11886,7 +11886,7 @@ "ReferIds": [ 1001450 ], - "IconPath": "" + "IconPath": "Icon_skill_10014.png" }, { "ID": 1001510, @@ -11915,7 +11915,7 @@ "ReferIds": [ 1001510 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001520, @@ -11944,7 +11944,7 @@ "ReferIds": [ 1001520 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001530, @@ -11973,7 +11973,7 @@ "ReferIds": [ 1001530 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001540, @@ -12002,7 +12002,7 @@ "ReferIds": [ 1001540 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001550, @@ -12031,7 +12031,7 @@ "ReferIds": [ 1001550 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001511, @@ -12060,7 +12060,7 @@ "ReferIds": [ 1001510 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001521, @@ -12089,7 +12089,7 @@ "ReferIds": [ 1001520 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001531, @@ -12118,7 +12118,7 @@ "ReferIds": [ 1001530 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001541, @@ -12147,7 +12147,7 @@ "ReferIds": [ 1001540 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001551, @@ -12176,7 +12176,7 @@ "ReferIds": [ 1001550 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001512, @@ -12205,7 +12205,7 @@ "ReferIds": [ 1001510 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001522, @@ -12234,7 +12234,7 @@ "ReferIds": [ 1001520 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001532, @@ -12263,7 +12263,7 @@ "ReferIds": [ 1001530 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001542, @@ -12292,7 +12292,7 @@ "ReferIds": [ 1001540 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001552, @@ -12321,7 +12321,7 @@ "ReferIds": [ 1001550 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001513, @@ -12350,7 +12350,7 @@ "ReferIds": [ 1001510 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001523, @@ -12379,7 +12379,7 @@ "ReferIds": [ 1001520 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001533, @@ -12408,7 +12408,7 @@ "ReferIds": [ 1001530 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001543, @@ -12437,7 +12437,7 @@ "ReferIds": [ 1001540 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001553, @@ -12466,7 +12466,7 @@ "ReferIds": [ 1001550 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001514, @@ -12495,7 +12495,7 @@ "ReferIds": [ 1001510 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001524, @@ -12524,7 +12524,7 @@ "ReferIds": [ 1001520 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001534, @@ -12553,7 +12553,7 @@ "ReferIds": [ 1001530 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001544, @@ -12582,7 +12582,7 @@ "ReferIds": [ 1001540 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001554, @@ -12611,7 +12611,7 @@ "ReferIds": [ 1001550 ], - "IconPath": "" + "IconPath": "Icon_skill_10015.png" }, { "ID": 1001610, @@ -12638,7 +12638,7 @@ "ReferIds": [ 1001610 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001620, @@ -12665,7 +12665,7 @@ "ReferIds": [ 1001620 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001630, @@ -12692,7 +12692,7 @@ "ReferIds": [ 1001630 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001640, @@ -12719,7 +12719,7 @@ "ReferIds": [ 1001640 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001650, @@ -12746,7 +12746,7 @@ "ReferIds": [ 1001650 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001611, @@ -12773,7 +12773,7 @@ "ReferIds": [ 1001610 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001621, @@ -12800,7 +12800,7 @@ "ReferIds": [ 1001620 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001631, @@ -12827,7 +12827,7 @@ "ReferIds": [ 1001630 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001641, @@ -12854,7 +12854,7 @@ "ReferIds": [ 1001640 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001651, @@ -12881,7 +12881,7 @@ "ReferIds": [ 1001650 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001612, @@ -12908,7 +12908,7 @@ "ReferIds": [ 1001610 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001622, @@ -12935,7 +12935,7 @@ "ReferIds": [ 1001620 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001632, @@ -12962,7 +12962,7 @@ "ReferIds": [ 1001630 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001642, @@ -12989,7 +12989,7 @@ "ReferIds": [ 1001640 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001652, @@ -13016,7 +13016,7 @@ "ReferIds": [ 1001650 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001613, @@ -13043,7 +13043,7 @@ "ReferIds": [ 1001610 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001623, @@ -13070,7 +13070,7 @@ "ReferIds": [ 1001620 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001633, @@ -13097,7 +13097,7 @@ "ReferIds": [ 1001630 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001643, @@ -13124,7 +13124,7 @@ "ReferIds": [ 1001640 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001653, @@ -13151,7 +13151,7 @@ "ReferIds": [ 1001650 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001614, @@ -13178,7 +13178,7 @@ "ReferIds": [ 1001610 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001624, @@ -13205,7 +13205,7 @@ "ReferIds": [ 1001620 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001634, @@ -13232,7 +13232,7 @@ "ReferIds": [ 1001630 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001644, @@ -13259,7 +13259,7 @@ "ReferIds": [ 1001640 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1001654, @@ -13286,7 +13286,7 @@ "ReferIds": [ 1001650 ], - "IconPath": "" + "IconPath": "Icon_skill_10016.png" }, { "ID": 1002210, @@ -13315,7 +13315,7 @@ "ReferIds": [ 1002210 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002220, @@ -13344,7 +13344,7 @@ "ReferIds": [ 1002220 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002230, @@ -13373,7 +13373,7 @@ "ReferIds": [ 1002230 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002240, @@ -13402,7 +13402,7 @@ "ReferIds": [ 1002240 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002250, @@ -13431,7 +13431,7 @@ "ReferIds": [ 1002250 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002211, @@ -13460,7 +13460,7 @@ "ReferIds": [ 1002210 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002221, @@ -13489,7 +13489,7 @@ "ReferIds": [ 1002220 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002231, @@ -13518,7 +13518,7 @@ "ReferIds": [ 1002230 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002241, @@ -13547,7 +13547,7 @@ "ReferIds": [ 1002240 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002251, @@ -13576,7 +13576,7 @@ "ReferIds": [ 1002250 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002212, @@ -13605,7 +13605,7 @@ "ReferIds": [ 1002210 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002222, @@ -13634,7 +13634,7 @@ "ReferIds": [ 1002220 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002232, @@ -13663,7 +13663,7 @@ "ReferIds": [ 1002230 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002242, @@ -13692,7 +13692,7 @@ "ReferIds": [ 1002240 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002252, @@ -13721,7 +13721,7 @@ "ReferIds": [ 1002250 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002213, @@ -13750,7 +13750,7 @@ "ReferIds": [ 1002210 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002223, @@ -13779,7 +13779,7 @@ "ReferIds": [ 1002220 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002233, @@ -13808,7 +13808,7 @@ "ReferIds": [ 1002230 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002243, @@ -13837,7 +13837,7 @@ "ReferIds": [ 1002240 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002253, @@ -13866,7 +13866,7 @@ "ReferIds": [ 1002250 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002214, @@ -13895,7 +13895,7 @@ "ReferIds": [ 1002210 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002224, @@ -13924,7 +13924,7 @@ "ReferIds": [ 1002220 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002234, @@ -13953,7 +13953,7 @@ "ReferIds": [ 1002230 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002244, @@ -13982,7 +13982,7 @@ "ReferIds": [ 1002240 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002254, @@ -14011,7 +14011,7 @@ "ReferIds": [ 1002250 ], - "IconPath": "" + "IconPath": "Icon_skill_10022.png" }, { "ID": 1002410, @@ -14040,7 +14040,7 @@ "ReferIds": [ 1002410 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002420, @@ -14069,7 +14069,7 @@ "ReferIds": [ 1002420 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002430, @@ -14098,7 +14098,7 @@ "ReferIds": [ 1002430 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002440, @@ -14127,7 +14127,7 @@ "ReferIds": [ 1002440 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002450, @@ -14156,7 +14156,7 @@ "ReferIds": [ 1002450 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002411, @@ -14185,7 +14185,7 @@ "ReferIds": [ 1002410 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002421, @@ -14214,7 +14214,7 @@ "ReferIds": [ 1002420 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002431, @@ -14243,7 +14243,7 @@ "ReferIds": [ 1002430 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002441, @@ -14272,7 +14272,7 @@ "ReferIds": [ 1002440 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002451, @@ -14301,7 +14301,7 @@ "ReferIds": [ 1002450 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002412, @@ -14330,7 +14330,7 @@ "ReferIds": [ 1002410 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002422, @@ -14359,7 +14359,7 @@ "ReferIds": [ 1002420 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002432, @@ -14388,7 +14388,7 @@ "ReferIds": [ 1002430 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002442, @@ -14417,7 +14417,7 @@ "ReferIds": [ 1002440 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002452, @@ -14446,7 +14446,7 @@ "ReferIds": [ 1002450 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002413, @@ -14475,7 +14475,7 @@ "ReferIds": [ 1002410 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002423, @@ -14504,7 +14504,7 @@ "ReferIds": [ 1002420 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002433, @@ -14533,7 +14533,7 @@ "ReferIds": [ 1002430 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002443, @@ -14562,7 +14562,7 @@ "ReferIds": [ 1002440 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002453, @@ -14591,7 +14591,7 @@ "ReferIds": [ 1002450 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002414, @@ -14620,7 +14620,7 @@ "ReferIds": [ 1002410 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002424, @@ -14649,7 +14649,7 @@ "ReferIds": [ 1002420 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002434, @@ -14678,7 +14678,7 @@ "ReferIds": [ 1002430 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002444, @@ -14707,7 +14707,7 @@ "ReferIds": [ 1002440 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002454, @@ -14736,7 +14736,7 @@ "ReferIds": [ 1002450 ], - "IconPath": "" + "IconPath": "Icon_skill_10024.png" }, { "ID": 1002510, @@ -14765,7 +14765,7 @@ "ReferIds": [ 1002510 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002520, @@ -14794,7 +14794,7 @@ "ReferIds": [ 1002520 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002530, @@ -14823,7 +14823,7 @@ "ReferIds": [ 1002530 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002540, @@ -14852,7 +14852,7 @@ "ReferIds": [ 1002540 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002550, @@ -14881,7 +14881,7 @@ "ReferIds": [ 1002550 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002511, @@ -14910,7 +14910,7 @@ "ReferIds": [ 1002510 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002521, @@ -14939,7 +14939,7 @@ "ReferIds": [ 1002520 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002531, @@ -14968,7 +14968,7 @@ "ReferIds": [ 1002530 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002541, @@ -14997,7 +14997,7 @@ "ReferIds": [ 1002540 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002551, @@ -15026,7 +15026,7 @@ "ReferIds": [ 1002550 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002512, @@ -15055,7 +15055,7 @@ "ReferIds": [ 1002510 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002522, @@ -15084,7 +15084,7 @@ "ReferIds": [ 1002520 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002532, @@ -15113,7 +15113,7 @@ "ReferIds": [ 1002530 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002542, @@ -15142,7 +15142,7 @@ "ReferIds": [ 1002540 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002552, @@ -15171,7 +15171,7 @@ "ReferIds": [ 1002550 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002513, @@ -15200,7 +15200,7 @@ "ReferIds": [ 1002510 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002523, @@ -15229,7 +15229,7 @@ "ReferIds": [ 1002520 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002533, @@ -15258,7 +15258,7 @@ "ReferIds": [ 1002530 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002543, @@ -15287,7 +15287,7 @@ "ReferIds": [ 1002540 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002553, @@ -15316,7 +15316,7 @@ "ReferIds": [ 1002550 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002514, @@ -15345,7 +15345,7 @@ "ReferIds": [ 1002510 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002524, @@ -15374,7 +15374,7 @@ "ReferIds": [ 1002520 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002534, @@ -15403,7 +15403,7 @@ "ReferIds": [ 1002530 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002544, @@ -15432,7 +15432,7 @@ "ReferIds": [ 1002540 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002554, @@ -15461,7 +15461,7 @@ "ReferIds": [ 1002550 ], - "IconPath": "" + "IconPath": "Icon_skill_10025.png" }, { "ID": 1002610, @@ -15490,7 +15490,7 @@ "ReferIds": [ 1002610 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002620, @@ -15519,7 +15519,7 @@ "ReferIds": [ 1002620 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002630, @@ -15548,7 +15548,7 @@ "ReferIds": [ 1002630 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002640, @@ -15577,7 +15577,7 @@ "ReferIds": [ 1002640 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002650, @@ -15606,7 +15606,7 @@ "ReferIds": [ 1002650 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002611, @@ -15635,7 +15635,7 @@ "ReferIds": [ 1002610 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002621, @@ -15664,7 +15664,7 @@ "ReferIds": [ 1002620 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002631, @@ -15693,7 +15693,7 @@ "ReferIds": [ 1002630 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002641, @@ -15722,7 +15722,7 @@ "ReferIds": [ 1002640 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002651, @@ -15751,7 +15751,7 @@ "ReferIds": [ 1002650 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002612, @@ -15780,7 +15780,7 @@ "ReferIds": [ 1002610 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002622, @@ -15809,7 +15809,7 @@ "ReferIds": [ 1002620 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002632, @@ -15838,7 +15838,7 @@ "ReferIds": [ 1002630 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002642, @@ -15867,7 +15867,7 @@ "ReferIds": [ 1002640 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002652, @@ -15896,7 +15896,7 @@ "ReferIds": [ 1002650 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002613, @@ -15925,7 +15925,7 @@ "ReferIds": [ 1002610 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002623, @@ -15954,7 +15954,7 @@ "ReferIds": [ 1002620 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002633, @@ -15983,7 +15983,7 @@ "ReferIds": [ 1002630 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002643, @@ -16012,7 +16012,7 @@ "ReferIds": [ 1002640 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002653, @@ -16041,7 +16041,7 @@ "ReferIds": [ 1002650 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002614, @@ -16070,7 +16070,7 @@ "ReferIds": [ 1002610 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002624, @@ -16099,7 +16099,7 @@ "ReferIds": [ 1002620 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002634, @@ -16128,7 +16128,7 @@ "ReferIds": [ 1002630 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002644, @@ -16157,7 +16157,7 @@ "ReferIds": [ 1002640 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002654, @@ -16186,7 +16186,7 @@ "ReferIds": [ 1002650 ], - "IconPath": "" + "IconPath": "Icon_skill_10026.png" }, { "ID": 1002710, @@ -16215,7 +16215,7 @@ "ReferIds": [ 1002710 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002720, @@ -16244,7 +16244,7 @@ "ReferIds": [ 1002720 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002730, @@ -16273,7 +16273,7 @@ "ReferIds": [ 1002730 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002740, @@ -16302,7 +16302,7 @@ "ReferIds": [ 1002740 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002750, @@ -16331,7 +16331,7 @@ "ReferIds": [ 1002750 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002711, @@ -16360,7 +16360,7 @@ "ReferIds": [ 1002710 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002721, @@ -16389,7 +16389,7 @@ "ReferIds": [ 1002720 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002731, @@ -16418,7 +16418,7 @@ "ReferIds": [ 1002730 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002741, @@ -16447,7 +16447,7 @@ "ReferIds": [ 1002740 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002751, @@ -16476,7 +16476,7 @@ "ReferIds": [ 1002750 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002712, @@ -16505,7 +16505,7 @@ "ReferIds": [ 1002710 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002722, @@ -16534,7 +16534,7 @@ "ReferIds": [ 1002720 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002732, @@ -16563,7 +16563,7 @@ "ReferIds": [ 1002730 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002742, @@ -16592,7 +16592,7 @@ "ReferIds": [ 1002740 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002752, @@ -16621,7 +16621,7 @@ "ReferIds": [ 1002750 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002713, @@ -16650,7 +16650,7 @@ "ReferIds": [ 1002710 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002723, @@ -16679,7 +16679,7 @@ "ReferIds": [ 1002720 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002733, @@ -16708,7 +16708,7 @@ "ReferIds": [ 1002730 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002743, @@ -16737,7 +16737,7 @@ "ReferIds": [ 1002740 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002753, @@ -16766,7 +16766,7 @@ "ReferIds": [ 1002750 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002714, @@ -16795,7 +16795,7 @@ "ReferIds": [ 1002710 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002724, @@ -16824,7 +16824,7 @@ "ReferIds": [ 1002720 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002734, @@ -16853,7 +16853,7 @@ "ReferIds": [ 1002730 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002744, @@ -16882,7 +16882,7 @@ "ReferIds": [ 1002740 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002754, @@ -16911,7 +16911,7 @@ "ReferIds": [ 1002750 ], - "IconPath": "" + "IconPath": "Icon_skill_10027.png" }, { "ID": 1002810, @@ -16940,7 +16940,7 @@ "ReferIds": [ 1002810 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002820, @@ -16969,7 +16969,7 @@ "ReferIds": [ 1002820 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002830, @@ -16998,7 +16998,7 @@ "ReferIds": [ 1002830 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002840, @@ -17027,7 +17027,7 @@ "ReferIds": [ 1002840 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002850, @@ -17056,7 +17056,7 @@ "ReferIds": [ 1002850 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002811, @@ -17085,7 +17085,7 @@ "ReferIds": [ 1002810 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002821, @@ -17114,7 +17114,7 @@ "ReferIds": [ 1002820 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002831, @@ -17143,7 +17143,7 @@ "ReferIds": [ 1002830 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002841, @@ -17172,7 +17172,7 @@ "ReferIds": [ 1002840 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002851, @@ -17201,7 +17201,7 @@ "ReferIds": [ 1002850 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002812, @@ -17230,7 +17230,7 @@ "ReferIds": [ 1002810 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002822, @@ -17259,7 +17259,7 @@ "ReferIds": [ 1002820 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002832, @@ -17288,7 +17288,7 @@ "ReferIds": [ 1002830 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002842, @@ -17317,7 +17317,7 @@ "ReferIds": [ 1002840 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002852, @@ -17346,7 +17346,7 @@ "ReferIds": [ 1002850 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002813, @@ -17375,7 +17375,7 @@ "ReferIds": [ 1002810 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002823, @@ -17404,7 +17404,7 @@ "ReferIds": [ 1002820 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002833, @@ -17433,7 +17433,7 @@ "ReferIds": [ 1002830 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002843, @@ -17462,7 +17462,7 @@ "ReferIds": [ 1002840 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002853, @@ -17491,7 +17491,7 @@ "ReferIds": [ 1002850 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002814, @@ -17520,7 +17520,7 @@ "ReferIds": [ 1002810 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002824, @@ -17549,7 +17549,7 @@ "ReferIds": [ 1002820 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002834, @@ -17578,7 +17578,7 @@ "ReferIds": [ 1002830 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002844, @@ -17607,7 +17607,7 @@ "ReferIds": [ 1002840 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002854, @@ -17636,7 +17636,7 @@ "ReferIds": [ 1002850 ], - "IconPath": "" + "IconPath": "Icon_skill_10028.png" }, { "ID": 1002910, @@ -17665,7 +17665,7 @@ "ReferIds": [ 1002910 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002920, @@ -17694,7 +17694,7 @@ "ReferIds": [ 1002920 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002930, @@ -17723,7 +17723,7 @@ "ReferIds": [ 1002930 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002940, @@ -17752,7 +17752,7 @@ "ReferIds": [ 1002940 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002950, @@ -17781,7 +17781,7 @@ "ReferIds": [ 1002950 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002911, @@ -17810,7 +17810,7 @@ "ReferIds": [ 1002910 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002921, @@ -17839,7 +17839,7 @@ "ReferIds": [ 1002920 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002931, @@ -17868,7 +17868,7 @@ "ReferIds": [ 1002930 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002941, @@ -17897,7 +17897,7 @@ "ReferIds": [ 1002940 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002951, @@ -17926,7 +17926,7 @@ "ReferIds": [ 1002950 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002912, @@ -17955,7 +17955,7 @@ "ReferIds": [ 1002910 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002922, @@ -17984,7 +17984,7 @@ "ReferIds": [ 1002920 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002932, @@ -18013,7 +18013,7 @@ "ReferIds": [ 1002930 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002942, @@ -18042,7 +18042,7 @@ "ReferIds": [ 1002940 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002952, @@ -18071,7 +18071,7 @@ "ReferIds": [ 1002950 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002913, @@ -18100,7 +18100,7 @@ "ReferIds": [ 1002910 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002923, @@ -18129,7 +18129,7 @@ "ReferIds": [ 1002920 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002933, @@ -18158,7 +18158,7 @@ "ReferIds": [ 1002930 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002943, @@ -18187,7 +18187,7 @@ "ReferIds": [ 1002940 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002953, @@ -18216,7 +18216,7 @@ "ReferIds": [ 1002950 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002914, @@ -18245,7 +18245,7 @@ "ReferIds": [ 1002910 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002924, @@ -18274,7 +18274,7 @@ "ReferIds": [ 1002920 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002934, @@ -18303,7 +18303,7 @@ "ReferIds": [ 1002930 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002944, @@ -18332,7 +18332,7 @@ "ReferIds": [ 1002940 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1002954, @@ -18361,7 +18361,7 @@ "ReferIds": [ 1002950 ], - "IconPath": "" + "IconPath": "Icon_skill_10029.png" }, { "ID": 1003010, @@ -18390,7 +18390,7 @@ "ReferIds": [ 1003010 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003020, @@ -18419,7 +18419,7 @@ "ReferIds": [ 1003020 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003030, @@ -18448,7 +18448,7 @@ "ReferIds": [ 1003030 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003040, @@ -18477,7 +18477,7 @@ "ReferIds": [ 1003040 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003050, @@ -18506,7 +18506,7 @@ "ReferIds": [ 1003050 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003011, @@ -18535,7 +18535,7 @@ "ReferIds": [ 1003010 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003021, @@ -18564,7 +18564,7 @@ "ReferIds": [ 1003020 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003031, @@ -18593,7 +18593,7 @@ "ReferIds": [ 1003030 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003041, @@ -18622,7 +18622,7 @@ "ReferIds": [ 1003040 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003051, @@ -18651,7 +18651,7 @@ "ReferIds": [ 1003050 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003012, @@ -18680,7 +18680,7 @@ "ReferIds": [ 1003010 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003022, @@ -18709,7 +18709,7 @@ "ReferIds": [ 1003020 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003032, @@ -18738,7 +18738,7 @@ "ReferIds": [ 1003030 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003042, @@ -18767,7 +18767,7 @@ "ReferIds": [ 1003040 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003052, @@ -18796,7 +18796,7 @@ "ReferIds": [ 1003050 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003013, @@ -18825,7 +18825,7 @@ "ReferIds": [ 1003010 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003023, @@ -18854,7 +18854,7 @@ "ReferIds": [ 1003020 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003033, @@ -18883,7 +18883,7 @@ "ReferIds": [ 1003030 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003043, @@ -18912,7 +18912,7 @@ "ReferIds": [ 1003040 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003053, @@ -18941,7 +18941,7 @@ "ReferIds": [ 1003050 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003014, @@ -18970,7 +18970,7 @@ "ReferIds": [ 1003010 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003024, @@ -18999,7 +18999,7 @@ "ReferIds": [ 1003020 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003034, @@ -19028,7 +19028,7 @@ "ReferIds": [ 1003030 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003044, @@ -19057,7 +19057,7 @@ "ReferIds": [ 1003040 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003054, @@ -19086,7 +19086,7 @@ "ReferIds": [ 1003050 ], - "IconPath": "" + "IconPath": "Icon_skill_10030.png" }, { "ID": 1003110, @@ -19115,7 +19115,7 @@ "ReferIds": [ 1003110 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003120, @@ -19144,7 +19144,7 @@ "ReferIds": [ 1003120 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003130, @@ -19173,7 +19173,7 @@ "ReferIds": [ 1003130 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003140, @@ -19202,7 +19202,7 @@ "ReferIds": [ 1003140 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003150, @@ -19231,7 +19231,7 @@ "ReferIds": [ 1003150 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003111, @@ -19260,7 +19260,7 @@ "ReferIds": [ 1003110 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003121, @@ -19289,7 +19289,7 @@ "ReferIds": [ 1003120 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003131, @@ -19318,7 +19318,7 @@ "ReferIds": [ 1003130 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003141, @@ -19347,7 +19347,7 @@ "ReferIds": [ 1003140 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003151, @@ -19376,7 +19376,7 @@ "ReferIds": [ 1003150 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003112, @@ -19405,7 +19405,7 @@ "ReferIds": [ 1003110 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003122, @@ -19434,7 +19434,7 @@ "ReferIds": [ 1003120 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003132, @@ -19463,7 +19463,7 @@ "ReferIds": [ 1003130 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003142, @@ -19492,7 +19492,7 @@ "ReferIds": [ 1003140 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003152, @@ -19521,7 +19521,7 @@ "ReferIds": [ 1003150 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003113, @@ -19550,7 +19550,7 @@ "ReferIds": [ 1003110 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003123, @@ -19579,7 +19579,7 @@ "ReferIds": [ 1003120 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003133, @@ -19608,7 +19608,7 @@ "ReferIds": [ 1003130 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003143, @@ -19637,7 +19637,7 @@ "ReferIds": [ 1003140 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003153, @@ -19666,7 +19666,7 @@ "ReferIds": [ 1003150 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003114, @@ -19695,7 +19695,7 @@ "ReferIds": [ 1003110 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003124, @@ -19724,7 +19724,7 @@ "ReferIds": [ 1003120 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003134, @@ -19753,7 +19753,7 @@ "ReferIds": [ 1003130 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003144, @@ -19782,7 +19782,7 @@ "ReferIds": [ 1003140 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003154, @@ -19811,7 +19811,7 @@ "ReferIds": [ 1003150 ], - "IconPath": "" + "IconPath": "Icon_skill_10031.png" }, { "ID": 1003210, @@ -19840,7 +19840,7 @@ "ReferIds": [ 1003210 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003220, @@ -19869,7 +19869,7 @@ "ReferIds": [ 1003220 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003230, @@ -19898,7 +19898,7 @@ "ReferIds": [ 1003230 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003240, @@ -19927,7 +19927,7 @@ "ReferIds": [ 1003240 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003250, @@ -19956,7 +19956,7 @@ "ReferIds": [ 1003250 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003211, @@ -19985,7 +19985,7 @@ "ReferIds": [ 1003210 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003221, @@ -20014,7 +20014,7 @@ "ReferIds": [ 1003220 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003231, @@ -20043,7 +20043,7 @@ "ReferIds": [ 1003230 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003241, @@ -20072,7 +20072,7 @@ "ReferIds": [ 1003240 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003251, @@ -20101,7 +20101,7 @@ "ReferIds": [ 1003250 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003212, @@ -20130,7 +20130,7 @@ "ReferIds": [ 1003210 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003222, @@ -20159,7 +20159,7 @@ "ReferIds": [ 1003220 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003232, @@ -20188,7 +20188,7 @@ "ReferIds": [ 1003230 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003242, @@ -20217,7 +20217,7 @@ "ReferIds": [ 1003240 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003252, @@ -20246,7 +20246,7 @@ "ReferIds": [ 1003250 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003213, @@ -20275,7 +20275,7 @@ "ReferIds": [ 1003210 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003223, @@ -20304,7 +20304,7 @@ "ReferIds": [ 1003220 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003233, @@ -20333,7 +20333,7 @@ "ReferIds": [ 1003230 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003243, @@ -20362,7 +20362,7 @@ "ReferIds": [ 1003240 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003253, @@ -20391,7 +20391,7 @@ "ReferIds": [ 1003250 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003214, @@ -20420,7 +20420,7 @@ "ReferIds": [ 1003210 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003224, @@ -20449,7 +20449,7 @@ "ReferIds": [ 1003220 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003234, @@ -20478,7 +20478,7 @@ "ReferIds": [ 1003230 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003244, @@ -20507,7 +20507,7 @@ "ReferIds": [ 1003240 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003254, @@ -20536,7 +20536,7 @@ "ReferIds": [ 1003250 ], - "IconPath": "" + "IconPath": "Icon_skill_10032.png" }, { "ID": 1003310, @@ -20571,7 +20571,7 @@ "ReferIds": [ 1003310 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003320, @@ -20606,7 +20606,7 @@ "ReferIds": [ 1003320 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003330, @@ -20641,7 +20641,7 @@ "ReferIds": [ 1003330 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003340, @@ -20676,7 +20676,7 @@ "ReferIds": [ 1003340 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003350, @@ -20711,7 +20711,7 @@ "ReferIds": [ 1003350 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003311, @@ -20746,7 +20746,7 @@ "ReferIds": [ 1003310 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003321, @@ -20781,7 +20781,7 @@ "ReferIds": [ 1003320 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003331, @@ -20816,7 +20816,7 @@ "ReferIds": [ 1003330 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003341, @@ -20851,7 +20851,7 @@ "ReferIds": [ 1003340 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003351, @@ -20886,7 +20886,7 @@ "ReferIds": [ 1003350 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003312, @@ -20921,7 +20921,7 @@ "ReferIds": [ 1003310 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003322, @@ -20956,7 +20956,7 @@ "ReferIds": [ 1003320 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003332, @@ -20991,7 +20991,7 @@ "ReferIds": [ 1003330 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003342, @@ -21026,7 +21026,7 @@ "ReferIds": [ 1003340 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003352, @@ -21061,7 +21061,7 @@ "ReferIds": [ 1003350 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003313, @@ -21096,7 +21096,7 @@ "ReferIds": [ 1003310 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003323, @@ -21131,7 +21131,7 @@ "ReferIds": [ 1003320 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003333, @@ -21166,7 +21166,7 @@ "ReferIds": [ 1003330 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003343, @@ -21201,7 +21201,7 @@ "ReferIds": [ 1003340 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003353, @@ -21236,7 +21236,7 @@ "ReferIds": [ 1003350 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003314, @@ -21271,7 +21271,7 @@ "ReferIds": [ 1003310 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003324, @@ -21306,7 +21306,7 @@ "ReferIds": [ 1003320 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003334, @@ -21341,7 +21341,7 @@ "ReferIds": [ 1003330 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003344, @@ -21376,7 +21376,7 @@ "ReferIds": [ 1003340 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003354, @@ -21411,7 +21411,7 @@ "ReferIds": [ 1003350 ], - "IconPath": "" + "IconPath": "Icon_skill_10033.png" }, { "ID": 1003410, @@ -21444,7 +21444,7 @@ "ReferIds": [ 1003410 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003420, @@ -21477,7 +21477,7 @@ "ReferIds": [ 1003420 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003430, @@ -21510,7 +21510,7 @@ "ReferIds": [ 1003430 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003440, @@ -21543,7 +21543,7 @@ "ReferIds": [ 1003440 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003450, @@ -21576,7 +21576,7 @@ "ReferIds": [ 1003450 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003411, @@ -21609,7 +21609,7 @@ "ReferIds": [ 1003410 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003421, @@ -21642,7 +21642,7 @@ "ReferIds": [ 1003420 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003431, @@ -21675,7 +21675,7 @@ "ReferIds": [ 1003430 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003441, @@ -21708,7 +21708,7 @@ "ReferIds": [ 1003440 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003451, @@ -21741,7 +21741,7 @@ "ReferIds": [ 1003450 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003412, @@ -21774,7 +21774,7 @@ "ReferIds": [ 1003410 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003422, @@ -21807,7 +21807,7 @@ "ReferIds": [ 1003420 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003432, @@ -21840,7 +21840,7 @@ "ReferIds": [ 1003430 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003442, @@ -21873,7 +21873,7 @@ "ReferIds": [ 1003440 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003452, @@ -21906,7 +21906,7 @@ "ReferIds": [ 1003450 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003413, @@ -21939,7 +21939,7 @@ "ReferIds": [ 1003410 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003423, @@ -21972,7 +21972,7 @@ "ReferIds": [ 1003420 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003433, @@ -22005,7 +22005,7 @@ "ReferIds": [ 1003430 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003443, @@ -22038,7 +22038,7 @@ "ReferIds": [ 1003440 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003453, @@ -22071,7 +22071,7 @@ "ReferIds": [ 1003450 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003414, @@ -22104,7 +22104,7 @@ "ReferIds": [ 1003410 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003424, @@ -22137,7 +22137,7 @@ "ReferIds": [ 1003420 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003434, @@ -22170,7 +22170,7 @@ "ReferIds": [ 1003430 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003444, @@ -22203,7 +22203,7 @@ "ReferIds": [ 1003440 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003454, @@ -22236,7 +22236,7 @@ "ReferIds": [ 1003450 ], - "IconPath": "" + "IconPath": "Icon_skill_10034.png" }, { "ID": 1003510, @@ -22265,7 +22265,7 @@ "ReferIds": [ 1003510 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003520, @@ -22294,7 +22294,7 @@ "ReferIds": [ 1003520 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003530, @@ -22323,7 +22323,7 @@ "ReferIds": [ 1003530 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003540, @@ -22352,7 +22352,7 @@ "ReferIds": [ 1003540 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003550, @@ -22381,7 +22381,7 @@ "ReferIds": [ 1003550 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003511, @@ -22410,7 +22410,7 @@ "ReferIds": [ 1003510 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003521, @@ -22439,7 +22439,7 @@ "ReferIds": [ 1003520 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003531, @@ -22468,7 +22468,7 @@ "ReferIds": [ 1003530 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003541, @@ -22497,7 +22497,7 @@ "ReferIds": [ 1003540 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003551, @@ -22526,7 +22526,7 @@ "ReferIds": [ 1003550 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003512, @@ -22555,7 +22555,7 @@ "ReferIds": [ 1003510 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003522, @@ -22584,7 +22584,7 @@ "ReferIds": [ 1003520 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003532, @@ -22613,7 +22613,7 @@ "ReferIds": [ 1003530 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003542, @@ -22642,7 +22642,7 @@ "ReferIds": [ 1003540 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003552, @@ -22671,7 +22671,7 @@ "ReferIds": [ 1003550 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003513, @@ -22700,7 +22700,7 @@ "ReferIds": [ 1003510 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003523, @@ -22729,7 +22729,7 @@ "ReferIds": [ 1003520 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003533, @@ -22758,7 +22758,7 @@ "ReferIds": [ 1003530 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003543, @@ -22787,7 +22787,7 @@ "ReferIds": [ 1003540 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003553, @@ -22816,7 +22816,7 @@ "ReferIds": [ 1003550 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003514, @@ -22845,7 +22845,7 @@ "ReferIds": [ 1003510 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003524, @@ -22874,7 +22874,7 @@ "ReferIds": [ 1003520 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003534, @@ -22903,7 +22903,7 @@ "ReferIds": [ 1003530 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003544, @@ -22932,7 +22932,7 @@ "ReferIds": [ 1003540 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1003554, @@ -22961,7 +22961,7 @@ "ReferIds": [ 1003550 ], - "IconPath": "" + "IconPath": "Icon_skill_10035.png" }, { "ID": 1005110, @@ -22988,7 +22988,7 @@ "ReferIds": [ 1005110 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005120, @@ -23015,7 +23015,7 @@ "ReferIds": [ 1005120 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005130, @@ -23042,7 +23042,7 @@ "ReferIds": [ 1005130 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005140, @@ -23069,7 +23069,7 @@ "ReferIds": [ 1005140 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005150, @@ -23096,7 +23096,7 @@ "ReferIds": [ 1005150 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005111, @@ -23123,7 +23123,7 @@ "ReferIds": [ 1005110 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005121, @@ -23150,7 +23150,7 @@ "ReferIds": [ 1005120 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005131, @@ -23177,7 +23177,7 @@ "ReferIds": [ 1005130 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005141, @@ -23204,7 +23204,7 @@ "ReferIds": [ 1005140 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005151, @@ -23231,7 +23231,7 @@ "ReferIds": [ 1005150 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005112, @@ -23258,7 +23258,7 @@ "ReferIds": [ 1005110 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005122, @@ -23285,7 +23285,7 @@ "ReferIds": [ 1005120 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005132, @@ -23312,7 +23312,7 @@ "ReferIds": [ 1005130 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005142, @@ -23339,7 +23339,7 @@ "ReferIds": [ 1005140 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005152, @@ -23366,7 +23366,7 @@ "ReferIds": [ 1005150 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005113, @@ -23393,7 +23393,7 @@ "ReferIds": [ 1005110 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005123, @@ -23420,7 +23420,7 @@ "ReferIds": [ 1005120 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005133, @@ -23447,7 +23447,7 @@ "ReferIds": [ 1005130 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005143, @@ -23474,7 +23474,7 @@ "ReferIds": [ 1005140 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005153, @@ -23501,7 +23501,7 @@ "ReferIds": [ 1005150 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005114, @@ -23528,7 +23528,7 @@ "ReferIds": [ 1005110 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005124, @@ -23555,7 +23555,7 @@ "ReferIds": [ 1005120 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005134, @@ -23582,7 +23582,7 @@ "ReferIds": [ 1005130 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005144, @@ -23609,7 +23609,7 @@ "ReferIds": [ 1005140 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005154, @@ -23636,7 +23636,7 @@ "ReferIds": [ 1005150 ], - "IconPath": "" + "IconPath": "Icon_skill_10051.png" }, { "ID": 1005210, @@ -23666,7 +23666,7 @@ "ReferIds": [ 1005210 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005220, @@ -23696,7 +23696,7 @@ "ReferIds": [ 1005220 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005230, @@ -23726,7 +23726,7 @@ "ReferIds": [ 1005230 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005240, @@ -23756,7 +23756,7 @@ "ReferIds": [ 1005240 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005250, @@ -23786,7 +23786,7 @@ "ReferIds": [ 1005250 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005211, @@ -23816,7 +23816,7 @@ "ReferIds": [ 1005211 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005221, @@ -23846,7 +23846,7 @@ "ReferIds": [ 1005221 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005231, @@ -23876,7 +23876,7 @@ "ReferIds": [ 1005231 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005241, @@ -23906,7 +23906,7 @@ "ReferIds": [ 1005241 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005251, @@ -23936,7 +23936,7 @@ "ReferIds": [ 1005251 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005212, @@ -23966,7 +23966,7 @@ "ReferIds": [ 1005212 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005222, @@ -23996,7 +23996,7 @@ "ReferIds": [ 1005222 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005232, @@ -24026,7 +24026,7 @@ "ReferIds": [ 1005232 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005242, @@ -24056,7 +24056,7 @@ "ReferIds": [ 1005242 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005252, @@ -24086,7 +24086,7 @@ "ReferIds": [ 1005252 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005213, @@ -24116,7 +24116,7 @@ "ReferIds": [ 1005213 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005223, @@ -24146,7 +24146,7 @@ "ReferIds": [ 1005223 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005233, @@ -24176,7 +24176,7 @@ "ReferIds": [ 1005233 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005243, @@ -24206,7 +24206,7 @@ "ReferIds": [ 1005243 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005253, @@ -24236,7 +24236,7 @@ "ReferIds": [ 1005253 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005214, @@ -24266,7 +24266,7 @@ "ReferIds": [ 1005214 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005224, @@ -24296,7 +24296,7 @@ "ReferIds": [ 1005224 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005234, @@ -24326,7 +24326,7 @@ "ReferIds": [ 1005234 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005244, @@ -24356,7 +24356,7 @@ "ReferIds": [ 1005244 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005254, @@ -24386,7 +24386,7 @@ "ReferIds": [ 1005254 ], - "IconPath": "" + "IconPath": "Icon_skill_10052.png" }, { "ID": 1005510, @@ -24413,7 +24413,7 @@ "ReferIds": [ 1005510 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005520, @@ -24440,7 +24440,7 @@ "ReferIds": [ 1005520 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005530, @@ -24467,7 +24467,7 @@ "ReferIds": [ 1005530 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005540, @@ -24494,7 +24494,7 @@ "ReferIds": [ 1005540 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005550, @@ -24521,7 +24521,7 @@ "ReferIds": [ 1005550 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005511, @@ -24550,7 +24550,7 @@ "ReferIds": [ 1005510 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005521, @@ -24579,7 +24579,7 @@ "ReferIds": [ 1005520 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005531, @@ -24608,7 +24608,7 @@ "ReferIds": [ 1005530 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005541, @@ -24637,7 +24637,7 @@ "ReferIds": [ 1005540 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005551, @@ -24666,7 +24666,7 @@ "ReferIds": [ 1005550 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005512, @@ -24695,7 +24695,7 @@ "ReferIds": [ 1005510 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005522, @@ -24724,7 +24724,7 @@ "ReferIds": [ 1005520 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005532, @@ -24753,7 +24753,7 @@ "ReferIds": [ 1005530 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005542, @@ -24782,7 +24782,7 @@ "ReferIds": [ 1005540 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005552, @@ -24811,7 +24811,7 @@ "ReferIds": [ 1005550 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005513, @@ -24840,7 +24840,7 @@ "ReferIds": [ 1005510 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005523, @@ -24869,7 +24869,7 @@ "ReferIds": [ 1005520 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005533, @@ -24898,7 +24898,7 @@ "ReferIds": [ 1005530 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005543, @@ -24927,7 +24927,7 @@ "ReferIds": [ 1005540 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005553, @@ -24956,7 +24956,7 @@ "ReferIds": [ 1005550 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005514, @@ -24985,7 +24985,7 @@ "ReferIds": [ 1005510 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005524, @@ -25014,7 +25014,7 @@ "ReferIds": [ 1005520 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005534, @@ -25043,7 +25043,7 @@ "ReferIds": [ 1005530 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005544, @@ -25072,7 +25072,7 @@ "ReferIds": [ 1005540 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1005554, @@ -25101,7 +25101,7 @@ "ReferIds": [ 1005550 ], - "IconPath": "" + "IconPath": "Icon_skill_10055.png" }, { "ID": 1008110, @@ -25131,7 +25131,7 @@ 2008831, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008120, @@ -25161,7 +25161,7 @@ 2008832, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008130, @@ -25191,7 +25191,7 @@ 2008833, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008140, @@ -25221,7 +25221,7 @@ 2008834, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008150, @@ -25251,7 +25251,7 @@ 2008835, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008111, @@ -25281,7 +25281,7 @@ 2008831, 1008101 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008121, @@ -25311,7 +25311,7 @@ 2008832, 1008101 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008131, @@ -25341,7 +25341,7 @@ 2008833, 1008101 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008141, @@ -25371,7 +25371,7 @@ 2008834, 1008101 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008151, @@ -25401,7 +25401,7 @@ 2008835, 1008101 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008112, @@ -25431,7 +25431,7 @@ 2008831, 1008102 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008122, @@ -25461,7 +25461,7 @@ 2008832, 1008102 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008132, @@ -25491,7 +25491,7 @@ 2008833, 1008102 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008142, @@ -25521,7 +25521,7 @@ 2008834, 1008102 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008152, @@ -25551,7 +25551,7 @@ 2008835, 1008102 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008113, @@ -25581,7 +25581,7 @@ 2008831, 1008103 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008123, @@ -25611,7 +25611,7 @@ 2008832, 1008103 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008133, @@ -25641,7 +25641,7 @@ 2008833, 1008103 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008143, @@ -25671,7 +25671,7 @@ 2008834, 1008103 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008153, @@ -25701,7 +25701,7 @@ 2008835, 1008103 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008114, @@ -25731,7 +25731,7 @@ 2008831, 1008104 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008124, @@ -25761,7 +25761,7 @@ 2008832, 1008104 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008134, @@ -25791,7 +25791,7 @@ 2008833, 1008104 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008144, @@ -25821,7 +25821,7 @@ 2008834, 1008104 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008154, @@ -25851,7 +25851,7 @@ 2008835, 1008104 ], - "IconPath": "" + "IconPath": "Icon_skill_10081.png" }, { "ID": 1008210, @@ -25878,7 +25878,7 @@ "ReferIds": [ 1008210 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008220, @@ -25905,7 +25905,7 @@ "ReferIds": [ 1008220 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008230, @@ -25932,7 +25932,7 @@ "ReferIds": [ 1008230 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008240, @@ -25959,7 +25959,7 @@ "ReferIds": [ 1008240 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008250, @@ -25986,7 +25986,7 @@ "ReferIds": [ 1008250 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008211, @@ -26013,7 +26013,7 @@ "ReferIds": [ 1008211 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008221, @@ -26040,7 +26040,7 @@ "ReferIds": [ 1008221 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008231, @@ -26067,7 +26067,7 @@ "ReferIds": [ 1008231 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008241, @@ -26094,7 +26094,7 @@ "ReferIds": [ 1008241 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008251, @@ -26121,7 +26121,7 @@ "ReferIds": [ 1008251 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008212, @@ -26148,7 +26148,7 @@ "ReferIds": [ 1008212 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008222, @@ -26175,7 +26175,7 @@ "ReferIds": [ 1008222 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008232, @@ -26202,7 +26202,7 @@ "ReferIds": [ 1008232 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008242, @@ -26229,7 +26229,7 @@ "ReferIds": [ 1008242 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008252, @@ -26256,7 +26256,7 @@ "ReferIds": [ 1008252 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008213, @@ -26283,7 +26283,7 @@ "ReferIds": [ 1008213 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008223, @@ -26310,7 +26310,7 @@ "ReferIds": [ 1008223 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008233, @@ -26337,7 +26337,7 @@ "ReferIds": [ 1008233 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008243, @@ -26364,7 +26364,7 @@ "ReferIds": [ 1008243 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008253, @@ -26391,7 +26391,7 @@ "ReferIds": [ 1008253 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008214, @@ -26418,7 +26418,7 @@ "ReferIds": [ 1008214 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008224, @@ -26445,7 +26445,7 @@ "ReferIds": [ 1008224 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008234, @@ -26472,7 +26472,7 @@ "ReferIds": [ 1008234 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008244, @@ -26499,7 +26499,7 @@ "ReferIds": [ 1008244 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008254, @@ -26526,7 +26526,7 @@ "ReferIds": [ 1008254 ], - "IconPath": "" + "IconPath": "Icon_skill_10082.png" }, { "ID": 1008310, @@ -26553,7 +26553,7 @@ "ReferIds": [ 1008310 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008320, @@ -26580,7 +26580,7 @@ "ReferIds": [ 1008320 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008330, @@ -26607,7 +26607,7 @@ "ReferIds": [ 1008330 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008340, @@ -26634,7 +26634,7 @@ "ReferIds": [ 1008340 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008350, @@ -26661,7 +26661,7 @@ "ReferIds": [ 1008350 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008311, @@ -26688,7 +26688,7 @@ "ReferIds": [ 1008311 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008321, @@ -26715,7 +26715,7 @@ "ReferIds": [ 1008321 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008331, @@ -26742,7 +26742,7 @@ "ReferIds": [ 1008331 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008341, @@ -26769,7 +26769,7 @@ "ReferIds": [ 1008341 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008351, @@ -26796,7 +26796,7 @@ "ReferIds": [ 1008351 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008312, @@ -26823,7 +26823,7 @@ "ReferIds": [ 1008312 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008322, @@ -26850,7 +26850,7 @@ "ReferIds": [ 1008322 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008332, @@ -26877,7 +26877,7 @@ "ReferIds": [ 1008332 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008342, @@ -26904,7 +26904,7 @@ "ReferIds": [ 1008342 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008352, @@ -26931,7 +26931,7 @@ "ReferIds": [ 1008352 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008313, @@ -26958,7 +26958,7 @@ "ReferIds": [ 1008313 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008323, @@ -26985,7 +26985,7 @@ "ReferIds": [ 1008323 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008333, @@ -27012,7 +27012,7 @@ "ReferIds": [ 1008333 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008343, @@ -27039,7 +27039,7 @@ "ReferIds": [ 1008343 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008353, @@ -27066,7 +27066,7 @@ "ReferIds": [ 1008353 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008314, @@ -27093,7 +27093,7 @@ "ReferIds": [ 1008314 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008324, @@ -27120,7 +27120,7 @@ "ReferIds": [ 1008324 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008334, @@ -27147,7 +27147,7 @@ "ReferIds": [ 1008334 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008344, @@ -27174,7 +27174,7 @@ "ReferIds": [ 1008344 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008354, @@ -27201,7 +27201,7 @@ "ReferIds": [ 1008354 ], - "IconPath": "" + "IconPath": "Icon_skill_10083.png" }, { "ID": 1008410, @@ -27228,7 +27228,7 @@ "ReferIds": [ 1008410 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008420, @@ -27255,7 +27255,7 @@ "ReferIds": [ 1008420 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008430, @@ -27282,7 +27282,7 @@ "ReferIds": [ 1008430 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008440, @@ -27309,7 +27309,7 @@ "ReferIds": [ 1008440 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008450, @@ -27336,7 +27336,7 @@ "ReferIds": [ 1008450 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008411, @@ -27363,7 +27363,7 @@ "ReferIds": [ 1008410 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008421, @@ -27390,7 +27390,7 @@ "ReferIds": [ 1008420 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008431, @@ -27417,7 +27417,7 @@ "ReferIds": [ 1008430 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008441, @@ -27444,7 +27444,7 @@ "ReferIds": [ 1008440 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008451, @@ -27471,7 +27471,7 @@ "ReferIds": [ 1008450 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008412, @@ -27498,7 +27498,7 @@ "ReferIds": [ 1008410 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008422, @@ -27525,7 +27525,7 @@ "ReferIds": [ 1008420 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008432, @@ -27552,7 +27552,7 @@ "ReferIds": [ 1008430 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008442, @@ -27579,7 +27579,7 @@ "ReferIds": [ 1008440 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008452, @@ -27606,7 +27606,7 @@ "ReferIds": [ 1008450 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008413, @@ -27633,7 +27633,7 @@ "ReferIds": [ 1008410 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008423, @@ -27660,7 +27660,7 @@ "ReferIds": [ 1008420 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008433, @@ -27687,7 +27687,7 @@ "ReferIds": [ 1008430 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008443, @@ -27714,7 +27714,7 @@ "ReferIds": [ 1008440 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008453, @@ -27741,7 +27741,7 @@ "ReferIds": [ 1008450 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008414, @@ -27768,7 +27768,7 @@ "ReferIds": [ 1008410 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008424, @@ -27795,7 +27795,7 @@ "ReferIds": [ 1008420 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008434, @@ -27822,7 +27822,7 @@ "ReferIds": [ 1008430 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008444, @@ -27849,7 +27849,7 @@ "ReferIds": [ 1008440 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008454, @@ -27876,7 +27876,7 @@ "ReferIds": [ 1008450 ], - "IconPath": "" + "IconPath": "Icon_skill_10084.png" }, { "ID": 1008610, @@ -27903,7 +27903,7 @@ "ReferIds": [ 1008610 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008620, @@ -27930,7 +27930,7 @@ "ReferIds": [ 1008620 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008630, @@ -27957,7 +27957,7 @@ "ReferIds": [ 1008630 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008640, @@ -27984,7 +27984,7 @@ "ReferIds": [ 1008640 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008650, @@ -28011,7 +28011,7 @@ "ReferIds": [ 1008650 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008611, @@ -28038,7 +28038,7 @@ "ReferIds": [ 1008610 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008621, @@ -28065,7 +28065,7 @@ "ReferIds": [ 1008620 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008631, @@ -28092,7 +28092,7 @@ "ReferIds": [ 1008630 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008641, @@ -28119,7 +28119,7 @@ "ReferIds": [ 1008640 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008651, @@ -28146,7 +28146,7 @@ "ReferIds": [ 1008650 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008612, @@ -28173,7 +28173,7 @@ "ReferIds": [ 1008610 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008622, @@ -28200,7 +28200,7 @@ "ReferIds": [ 1008620 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008632, @@ -28227,7 +28227,7 @@ "ReferIds": [ 1008630 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008642, @@ -28254,7 +28254,7 @@ "ReferIds": [ 1008640 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008652, @@ -28281,7 +28281,7 @@ "ReferIds": [ 1008650 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008613, @@ -28308,7 +28308,7 @@ "ReferIds": [ 1008610 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008623, @@ -28335,7 +28335,7 @@ "ReferIds": [ 1008620 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008633, @@ -28362,7 +28362,7 @@ "ReferIds": [ 1008630 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008643, @@ -28389,7 +28389,7 @@ "ReferIds": [ 1008640 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008653, @@ -28416,7 +28416,7 @@ "ReferIds": [ 1008650 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008614, @@ -28443,7 +28443,7 @@ "ReferIds": [ 1008610 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008624, @@ -28470,7 +28470,7 @@ "ReferIds": [ 1008620 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008634, @@ -28497,7 +28497,7 @@ "ReferIds": [ 1008630 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008644, @@ -28524,7 +28524,7 @@ "ReferIds": [ 1008640 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008654, @@ -28551,7 +28551,7 @@ "ReferIds": [ 1008650 ], - "IconPath": "" + "IconPath": "Icon_skill_10086.png" }, { "ID": 1008710, @@ -28578,7 +28578,7 @@ "ReferIds": [ 1008710 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008720, @@ -28605,7 +28605,7 @@ "ReferIds": [ 1008720 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008730, @@ -28632,7 +28632,7 @@ "ReferIds": [ 1008730 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008740, @@ -28659,7 +28659,7 @@ "ReferIds": [ 1008740 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008750, @@ -28686,7 +28686,7 @@ "ReferIds": [ 1008750 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008711, @@ -28713,7 +28713,7 @@ "ReferIds": [ 1008711 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008721, @@ -28740,7 +28740,7 @@ "ReferIds": [ 1008721 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008731, @@ -28767,7 +28767,7 @@ "ReferIds": [ 1008731 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008741, @@ -28794,7 +28794,7 @@ "ReferIds": [ 1008741 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008751, @@ -28821,7 +28821,7 @@ "ReferIds": [ 1008751 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008712, @@ -28848,7 +28848,7 @@ "ReferIds": [ 1008712 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008722, @@ -28875,7 +28875,7 @@ "ReferIds": [ 1008722 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008732, @@ -28902,7 +28902,7 @@ "ReferIds": [ 1008732 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008742, @@ -28929,7 +28929,7 @@ "ReferIds": [ 1008742 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008752, @@ -28956,7 +28956,7 @@ "ReferIds": [ 1008752 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008713, @@ -28983,7 +28983,7 @@ "ReferIds": [ 1008713 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008723, @@ -29010,7 +29010,7 @@ "ReferIds": [ 1008723 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008733, @@ -29037,7 +29037,7 @@ "ReferIds": [ 1008733 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008743, @@ -29064,7 +29064,7 @@ "ReferIds": [ 1008743 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008753, @@ -29091,7 +29091,7 @@ "ReferIds": [ 1008753 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008714, @@ -29118,7 +29118,7 @@ "ReferIds": [ 1008714 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008724, @@ -29145,7 +29145,7 @@ "ReferIds": [ 1008724 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008734, @@ -29172,7 +29172,7 @@ "ReferIds": [ 1008734 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008744, @@ -29199,7 +29199,7 @@ "ReferIds": [ 1008744 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008754, @@ -29226,7 +29226,7 @@ "ReferIds": [ 1008754 ], - "IconPath": "" + "IconPath": "Icon_skill_10087.png" }, { "ID": 1008810, @@ -29253,7 +29253,7 @@ "ReferIds": [ 1008810 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008820, @@ -29280,7 +29280,7 @@ "ReferIds": [ 1008820 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008830, @@ -29307,7 +29307,7 @@ "ReferIds": [ 1008830 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008840, @@ -29334,7 +29334,7 @@ "ReferIds": [ 1008840 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008850, @@ -29361,7 +29361,7 @@ "ReferIds": [ 1008850 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008811, @@ -29388,7 +29388,7 @@ "ReferIds": [ 1008811 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008821, @@ -29415,7 +29415,7 @@ "ReferIds": [ 1008821 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008831, @@ -29442,7 +29442,7 @@ "ReferIds": [ 1008831 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008841, @@ -29469,7 +29469,7 @@ "ReferIds": [ 1008841 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008851, @@ -29496,7 +29496,7 @@ "ReferIds": [ 1008851 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008812, @@ -29523,7 +29523,7 @@ "ReferIds": [ 1008812 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008822, @@ -29550,7 +29550,7 @@ "ReferIds": [ 1008822 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008832, @@ -29577,7 +29577,7 @@ "ReferIds": [ 1008832 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008842, @@ -29604,7 +29604,7 @@ "ReferIds": [ 1008842 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008852, @@ -29631,7 +29631,7 @@ "ReferIds": [ 1008852 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008813, @@ -29658,7 +29658,7 @@ "ReferIds": [ 1008813 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008823, @@ -29685,7 +29685,7 @@ "ReferIds": [ 1008823 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008833, @@ -29712,7 +29712,7 @@ "ReferIds": [ 1008833 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008843, @@ -29739,7 +29739,7 @@ "ReferIds": [ 1008843 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008853, @@ -29766,7 +29766,7 @@ "ReferIds": [ 1008853 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008814, @@ -29793,7 +29793,7 @@ "ReferIds": [ 1008814 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008824, @@ -29820,7 +29820,7 @@ "ReferIds": [ 1008824 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008834, @@ -29847,7 +29847,7 @@ "ReferIds": [ 1008834 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008844, @@ -29874,7 +29874,7 @@ "ReferIds": [ 1008844 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008854, @@ -29901,7 +29901,7 @@ "ReferIds": [ 1008854 ], - "IconPath": "" + "IconPath": "Icon_skill_10088.png" }, { "ID": 1008910, @@ -29929,7 +29929,7 @@ 1008910, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008920, @@ -29957,7 +29957,7 @@ 1008920, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008930, @@ -29985,7 +29985,7 @@ 1008930, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008940, @@ -30013,7 +30013,7 @@ 1008940, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008950, @@ -30041,7 +30041,7 @@ 1008950, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008911, @@ -30069,7 +30069,7 @@ 1008910, 1008901 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008921, @@ -30097,7 +30097,7 @@ 1008920, 1008901 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008931, @@ -30125,7 +30125,7 @@ 1008930, 1008901 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008941, @@ -30153,7 +30153,7 @@ 1008940, 1008901 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008951, @@ -30181,7 +30181,7 @@ 1008950, 1008901 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008912, @@ -30209,7 +30209,7 @@ 1008910, 1008902 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008922, @@ -30237,7 +30237,7 @@ 1008920, 1008902 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008932, @@ -30265,7 +30265,7 @@ 1008930, 1008902 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008942, @@ -30293,7 +30293,7 @@ 1008940, 1008902 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008952, @@ -30321,7 +30321,7 @@ 1008950, 1008902 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008913, @@ -30349,7 +30349,7 @@ 1008910, 1008903 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008923, @@ -30377,7 +30377,7 @@ 1008920, 1008903 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008933, @@ -30405,7 +30405,7 @@ 1008930, 1008903 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008943, @@ -30433,7 +30433,7 @@ 1008940, 1008903 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008953, @@ -30461,7 +30461,7 @@ 1008950, 1008903 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008914, @@ -30489,7 +30489,7 @@ 1008910, 1008904 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008924, @@ -30517,7 +30517,7 @@ 1008920, 1008904 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008934, @@ -30545,7 +30545,7 @@ 1008930, 1008904 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008944, @@ -30573,7 +30573,7 @@ 1008940, 1008904 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1008954, @@ -30601,7 +30601,7 @@ 1008950, 1008904 ], - "IconPath": "" + "IconPath": "Icon_skill_100891.png" }, { "ID": 1009210, @@ -30629,7 +30629,7 @@ 1009210, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009220, @@ -30657,7 +30657,7 @@ 1009220, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009230, @@ -30685,7 +30685,7 @@ 1009230, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009240, @@ -30713,7 +30713,7 @@ 1009240, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009250, @@ -30741,7 +30741,7 @@ 1009250, 0 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009211, @@ -30769,7 +30769,7 @@ 1009210, 1009201 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009221, @@ -30797,7 +30797,7 @@ 1009220, 1009201 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009231, @@ -30825,7 +30825,7 @@ 1009230, 1009201 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009241, @@ -30853,7 +30853,7 @@ 1009240, 1009201 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009251, @@ -30881,7 +30881,7 @@ 1009250, 1009201 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009212, @@ -30909,7 +30909,7 @@ 1009210, 1009202 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009222, @@ -30937,7 +30937,7 @@ 1009220, 1009202 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009232, @@ -30965,7 +30965,7 @@ 1009230, 1009202 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009242, @@ -30993,7 +30993,7 @@ 1009240, 1009202 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009252, @@ -31021,7 +31021,7 @@ 1009250, 1009202 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009213, @@ -31049,7 +31049,7 @@ 1009210, 1009203 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009223, @@ -31077,7 +31077,7 @@ 1009220, 1009203 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009233, @@ -31105,7 +31105,7 @@ 1009230, 1009203 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009243, @@ -31133,7 +31133,7 @@ 1009240, 1009203 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009253, @@ -31161,7 +31161,7 @@ 1009250, 1009203 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009214, @@ -31189,7 +31189,7 @@ 1009210, 1009204 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009224, @@ -31217,7 +31217,7 @@ 1009220, 1009204 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009234, @@ -31245,7 +31245,7 @@ 1009230, 1009204 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009244, @@ -31273,7 +31273,7 @@ 1009240, 1009204 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009254, @@ -31301,7 +31301,7 @@ 1009250, 1009204 ], - "IconPath": "" + "IconPath": "Icon_skill_10092.png" }, { "ID": 1009410, @@ -31330,7 +31330,7 @@ "ReferIds": [ 1009410 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009420, @@ -31359,7 +31359,7 @@ "ReferIds": [ 1009420 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009430, @@ -31388,7 +31388,7 @@ "ReferIds": [ 1009430 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009440, @@ -31417,7 +31417,7 @@ "ReferIds": [ 1009440 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009450, @@ -31446,7 +31446,7 @@ "ReferIds": [ 1009450 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009411, @@ -31475,7 +31475,7 @@ "ReferIds": [ 1009410 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009421, @@ -31504,7 +31504,7 @@ "ReferIds": [ 1009420 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009431, @@ -31533,7 +31533,7 @@ "ReferIds": [ 1009430 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009441, @@ -31562,7 +31562,7 @@ "ReferIds": [ 1009440 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009451, @@ -31591,7 +31591,7 @@ "ReferIds": [ 1009450 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009412, @@ -31620,7 +31620,7 @@ "ReferIds": [ 1009410 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009422, @@ -31649,7 +31649,7 @@ "ReferIds": [ 1009420 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009432, @@ -31678,7 +31678,7 @@ "ReferIds": [ 1009430 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009442, @@ -31707,7 +31707,7 @@ "ReferIds": [ 1009440 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009452, @@ -31736,7 +31736,7 @@ "ReferIds": [ 1009450 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009413, @@ -31765,7 +31765,7 @@ "ReferIds": [ 1009410 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009423, @@ -31794,7 +31794,7 @@ "ReferIds": [ 1009420 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009433, @@ -31823,7 +31823,7 @@ "ReferIds": [ 1009430 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009443, @@ -31852,7 +31852,7 @@ "ReferIds": [ 1009440 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009453, @@ -31881,7 +31881,7 @@ "ReferIds": [ 1009450 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009414, @@ -31910,7 +31910,7 @@ "ReferIds": [ 1009410 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009424, @@ -31939,7 +31939,7 @@ "ReferIds": [ 1009420 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009434, @@ -31968,7 +31968,7 @@ "ReferIds": [ 1009430 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009444, @@ -31997,7 +31997,7 @@ "ReferIds": [ 1009440 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009454, @@ -32026,7 +32026,7 @@ "ReferIds": [ 1009450 ], - "IconPath": "" + "IconPath": "Icon_skill_10094.png" }, { "ID": 1009510, @@ -32055,7 +32055,7 @@ "ReferIds": [ 1009510 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009520, @@ -32084,7 +32084,7 @@ "ReferIds": [ 1009520 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009530, @@ -32113,7 +32113,7 @@ "ReferIds": [ 1009530 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009540, @@ -32142,7 +32142,7 @@ "ReferIds": [ 1009540 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009550, @@ -32171,7 +32171,7 @@ "ReferIds": [ 1009550 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009511, @@ -32200,7 +32200,7 @@ "ReferIds": [ 1009510 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009521, @@ -32229,7 +32229,7 @@ "ReferIds": [ 1009520 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009531, @@ -32258,7 +32258,7 @@ "ReferIds": [ 1009530 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009541, @@ -32287,7 +32287,7 @@ "ReferIds": [ 1009540 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009551, @@ -32316,7 +32316,7 @@ "ReferIds": [ 1009550 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009512, @@ -32345,7 +32345,7 @@ "ReferIds": [ 1009510 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009522, @@ -32374,7 +32374,7 @@ "ReferIds": [ 1009520 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009532, @@ -32403,7 +32403,7 @@ "ReferIds": [ 1009530 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009542, @@ -32432,7 +32432,7 @@ "ReferIds": [ 1009540 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009552, @@ -32461,7 +32461,7 @@ "ReferIds": [ 1009550 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009513, @@ -32490,7 +32490,7 @@ "ReferIds": [ 1009510 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009523, @@ -32519,7 +32519,7 @@ "ReferIds": [ 1009520 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009533, @@ -32548,7 +32548,7 @@ "ReferIds": [ 1009530 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009543, @@ -32577,7 +32577,7 @@ "ReferIds": [ 1009540 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009553, @@ -32606,7 +32606,7 @@ "ReferIds": [ 1009550 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009514, @@ -32635,7 +32635,7 @@ "ReferIds": [ 1009510 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009524, @@ -32664,7 +32664,7 @@ "ReferIds": [ 1009520 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009534, @@ -32693,7 +32693,7 @@ "ReferIds": [ 1009530 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009544, @@ -32722,7 +32722,7 @@ "ReferIds": [ 1009540 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009554, @@ -32751,7 +32751,7 @@ "ReferIds": [ 1009550 ], - "IconPath": "" + "IconPath": "Icon_skill_10095.png" }, { "ID": 1009610, @@ -32780,7 +32780,7 @@ "ReferIds": [ 1009610 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009620, @@ -32809,7 +32809,7 @@ "ReferIds": [ 1009620 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009630, @@ -32838,7 +32838,7 @@ "ReferIds": [ 1009630 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009640, @@ -32867,7 +32867,7 @@ "ReferIds": [ 1009640 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009650, @@ -32896,7 +32896,7 @@ "ReferIds": [ 1009650 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009611, @@ -32925,7 +32925,7 @@ "ReferIds": [ 1009610 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009621, @@ -32954,7 +32954,7 @@ "ReferIds": [ 1009620 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009631, @@ -32983,7 +32983,7 @@ "ReferIds": [ 1009630 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009641, @@ -33012,7 +33012,7 @@ "ReferIds": [ 1009640 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009651, @@ -33041,7 +33041,7 @@ "ReferIds": [ 1009650 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009612, @@ -33070,7 +33070,7 @@ "ReferIds": [ 1009610 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009622, @@ -33099,7 +33099,7 @@ "ReferIds": [ 1009620 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009632, @@ -33128,7 +33128,7 @@ "ReferIds": [ 1009630 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009642, @@ -33157,7 +33157,7 @@ "ReferIds": [ 1009640 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009652, @@ -33186,7 +33186,7 @@ "ReferIds": [ 1009650 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009613, @@ -33215,7 +33215,7 @@ "ReferIds": [ 1009610 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009623, @@ -33244,7 +33244,7 @@ "ReferIds": [ 1009620 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009633, @@ -33273,7 +33273,7 @@ "ReferIds": [ 1009630 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009643, @@ -33302,7 +33302,7 @@ "ReferIds": [ 1009640 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009653, @@ -33331,7 +33331,7 @@ "ReferIds": [ 1009650 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009614, @@ -33360,7 +33360,7 @@ "ReferIds": [ 1009610 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009624, @@ -33389,7 +33389,7 @@ "ReferIds": [ 1009620 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009634, @@ -33418,7 +33418,7 @@ "ReferIds": [ 1009630 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009644, @@ -33447,7 +33447,7 @@ "ReferIds": [ 1009640 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009654, @@ -33476,7 +33476,7 @@ "ReferIds": [ 1009650 ], - "IconPath": "" + "IconPath": "Icon_skill_10096.png" }, { "ID": 1009810, @@ -33503,7 +33503,7 @@ "ReferIds": [ 1009810 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009820, @@ -33530,7 +33530,7 @@ "ReferIds": [ 1009820 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009830, @@ -33557,7 +33557,7 @@ "ReferIds": [ 1009830 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009840, @@ -33584,7 +33584,7 @@ "ReferIds": [ 1009840 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009850, @@ -33611,7 +33611,7 @@ "ReferIds": [ 1009850 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009811, @@ -33638,7 +33638,7 @@ "ReferIds": [ 1009810 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009821, @@ -33665,7 +33665,7 @@ "ReferIds": [ 1009820 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009831, @@ -33692,7 +33692,7 @@ "ReferIds": [ 1009830 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009841, @@ -33719,7 +33719,7 @@ "ReferIds": [ 1009840 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009851, @@ -33746,7 +33746,7 @@ "ReferIds": [ 1009850 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009812, @@ -33773,7 +33773,7 @@ "ReferIds": [ 1009810 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009822, @@ -33800,7 +33800,7 @@ "ReferIds": [ 1009820 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009832, @@ -33827,7 +33827,7 @@ "ReferIds": [ 1009830 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009842, @@ -33854,7 +33854,7 @@ "ReferIds": [ 1009840 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009852, @@ -33881,7 +33881,7 @@ "ReferIds": [ 1009850 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009813, @@ -33908,7 +33908,7 @@ "ReferIds": [ 1009810 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009823, @@ -33935,7 +33935,7 @@ "ReferIds": [ 1009820 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009833, @@ -33962,7 +33962,7 @@ "ReferIds": [ 1009830 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009843, @@ -33989,7 +33989,7 @@ "ReferIds": [ 1009840 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009853, @@ -34016,7 +34016,7 @@ "ReferIds": [ 1009850 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009814, @@ -34043,7 +34043,7 @@ "ReferIds": [ 1009810 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009824, @@ -34070,7 +34070,7 @@ "ReferIds": [ 1009820 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009834, @@ -34097,7 +34097,7 @@ "ReferIds": [ 1009830 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009844, @@ -34124,7 +34124,7 @@ "ReferIds": [ 1009840 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1009854, @@ -34151,7 +34151,7 @@ "ReferIds": [ 1009850 ], - "IconPath": "" + "IconPath": "Icon_skill_10098.png" }, { "ID": 1010110, @@ -34178,7 +34178,7 @@ "ReferIds": [ 1010110 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010120, @@ -34205,7 +34205,7 @@ "ReferIds": [ 1010120 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010130, @@ -34232,7 +34232,7 @@ "ReferIds": [ 1010130 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010140, @@ -34259,7 +34259,7 @@ "ReferIds": [ 1010140 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010150, @@ -34286,7 +34286,7 @@ "ReferIds": [ 1010150 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010111, @@ -34313,7 +34313,7 @@ "ReferIds": [ 1010111 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010121, @@ -34340,7 +34340,7 @@ "ReferIds": [ 1010121 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010131, @@ -34367,7 +34367,7 @@ "ReferIds": [ 1010131 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010141, @@ -34394,7 +34394,7 @@ "ReferIds": [ 1010141 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010151, @@ -34421,7 +34421,7 @@ "ReferIds": [ 1010151 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010112, @@ -34448,7 +34448,7 @@ "ReferIds": [ 1010112 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010122, @@ -34475,7 +34475,7 @@ "ReferIds": [ 1010122 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010132, @@ -34502,7 +34502,7 @@ "ReferIds": [ 1010132 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010142, @@ -34529,7 +34529,7 @@ "ReferIds": [ 1010142 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010152, @@ -34556,7 +34556,7 @@ "ReferIds": [ 1010152 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010113, @@ -34583,7 +34583,7 @@ "ReferIds": [ 1010113 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010123, @@ -34610,7 +34610,7 @@ "ReferIds": [ 1010123 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010133, @@ -34637,7 +34637,7 @@ "ReferIds": [ 1010133 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010143, @@ -34664,7 +34664,7 @@ "ReferIds": [ 1010143 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010153, @@ -34691,7 +34691,7 @@ "ReferIds": [ 1010153 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010114, @@ -34718,7 +34718,7 @@ "ReferIds": [ 1010114 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010124, @@ -34745,7 +34745,7 @@ "ReferIds": [ 1010124 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010134, @@ -34772,7 +34772,7 @@ "ReferIds": [ 1010134 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010144, @@ -34799,7 +34799,7 @@ "ReferIds": [ 1010144 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010154, @@ -34826,7 +34826,7 @@ "ReferIds": [ 1010154 ], - "IconPath": "" + "IconPath": "Icon_skill_10101.png" }, { "ID": 1010410, @@ -34853,7 +34853,7 @@ "ReferIds": [ 1010410 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010420, @@ -34880,7 +34880,7 @@ "ReferIds": [ 1010420 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010430, @@ -34907,7 +34907,7 @@ "ReferIds": [ 1010430 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010440, @@ -34934,7 +34934,7 @@ "ReferIds": [ 1010440 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010450, @@ -34961,7 +34961,7 @@ "ReferIds": [ 1010450 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010411, @@ -34988,7 +34988,7 @@ "ReferIds": [ 1010410 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010421, @@ -35015,7 +35015,7 @@ "ReferIds": [ 1010420 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010431, @@ -35042,7 +35042,7 @@ "ReferIds": [ 1010430 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010441, @@ -35069,7 +35069,7 @@ "ReferIds": [ 1010440 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010451, @@ -35096,7 +35096,7 @@ "ReferIds": [ 1010450 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010412, @@ -35123,7 +35123,7 @@ "ReferIds": [ 1010410 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010422, @@ -35150,7 +35150,7 @@ "ReferIds": [ 1010420 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010432, @@ -35177,7 +35177,7 @@ "ReferIds": [ 1010430 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010442, @@ -35204,7 +35204,7 @@ "ReferIds": [ 1010440 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010452, @@ -35231,7 +35231,7 @@ "ReferIds": [ 1010450 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010413, @@ -35258,7 +35258,7 @@ "ReferIds": [ 1010410 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010423, @@ -35285,7 +35285,7 @@ "ReferIds": [ 1010420 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010433, @@ -35312,7 +35312,7 @@ "ReferIds": [ 1010430 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010443, @@ -35339,7 +35339,7 @@ "ReferIds": [ 1010440 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010453, @@ -35366,7 +35366,7 @@ "ReferIds": [ 1010450 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010414, @@ -35393,7 +35393,7 @@ "ReferIds": [ 1010410 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010424, @@ -35420,7 +35420,7 @@ "ReferIds": [ 1010420 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010434, @@ -35447,7 +35447,7 @@ "ReferIds": [ 1010430 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010444, @@ -35474,7 +35474,7 @@ "ReferIds": [ 1010440 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010454, @@ -35501,7 +35501,7 @@ "ReferIds": [ 1010450 ], - "IconPath": "" + "IconPath": "Icon_skill_10104.png" }, { "ID": 1010610, @@ -35528,7 +35528,7 @@ "ReferIds": [ 1010610 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010620, @@ -35555,7 +35555,7 @@ "ReferIds": [ 1010620 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010630, @@ -35582,7 +35582,7 @@ "ReferIds": [ 1010630 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010640, @@ -35609,7 +35609,7 @@ "ReferIds": [ 1010640 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010650, @@ -35636,7 +35636,7 @@ "ReferIds": [ 1010650 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010611, @@ -35663,7 +35663,7 @@ "ReferIds": [ 1010611 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010621, @@ -35690,7 +35690,7 @@ "ReferIds": [ 1010621 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010631, @@ -35717,7 +35717,7 @@ "ReferIds": [ 1010631 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010641, @@ -35744,7 +35744,7 @@ "ReferIds": [ 1010641 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010651, @@ -35771,7 +35771,7 @@ "ReferIds": [ 1010651 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010612, @@ -35798,7 +35798,7 @@ "ReferIds": [ 1010612 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010622, @@ -35825,7 +35825,7 @@ "ReferIds": [ 1010622 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010632, @@ -35852,7 +35852,7 @@ "ReferIds": [ 1010632 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010642, @@ -35879,7 +35879,7 @@ "ReferIds": [ 1010642 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010652, @@ -35906,7 +35906,7 @@ "ReferIds": [ 1010652 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010613, @@ -35933,7 +35933,7 @@ "ReferIds": [ 1010613 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010623, @@ -35960,7 +35960,7 @@ "ReferIds": [ 1010623 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010633, @@ -35987,7 +35987,7 @@ "ReferIds": [ 1010633 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010643, @@ -36014,7 +36014,7 @@ "ReferIds": [ 1010643 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010653, @@ -36041,7 +36041,7 @@ "ReferIds": [ 1010653 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010614, @@ -36068,7 +36068,7 @@ "ReferIds": [ 1010614 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010624, @@ -36095,7 +36095,7 @@ "ReferIds": [ 1010624 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010634, @@ -36122,7 +36122,7 @@ "ReferIds": [ 1010634 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010644, @@ -36149,7 +36149,7 @@ "ReferIds": [ 1010644 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 1010654, @@ -36176,7 +36176,7 @@ "ReferIds": [ 1010654 ], - "IconPath": "" + "IconPath": "Icon_skill_10106.png" }, { "ID": 30001, diff --git a/ProjectNLD/Assets/Config/Data/stringcfg_stringconfig.json b/ProjectNLD/Assets/Config/Data/stringcfg_stringconfig.json index 40a1c136407..04283a3be72 100644 --- a/ProjectNLD/Assets/Config/Data/stringcfg_stringconfig.json +++ b/ProjectNLD/Assets/Config/Data/stringcfg_stringconfig.json @@ -18579,6 +18579,16 @@ "Param1": "", "Param2": "" }, + { + "Key": "cultivate_LevelUpOutRange", + "Name": { + "key": "cultivate_LevelUpOutRange", + "text": "" + }, + "Param0": "", + "Param1": "", + "Param2": "" + }, { "Key": "cultivate_BreakMaterialNotFull", "Name": { diff --git a/ProjectNLD/Assets/Config/Data/vehiclecfg_vehicleconfig.json b/ProjectNLD/Assets/Config/Data/vehiclecfg_vehicleconfig.json index 23c2fc392c0..9326bfbb207 100644 --- a/ProjectNLD/Assets/Config/Data/vehiclecfg_vehicleconfig.json +++ b/ProjectNLD/Assets/Config/Data/vehiclecfg_vehicleconfig.json @@ -11,6 +11,7 @@ "Count": 1599 } ], + "UnlockID": [], "ParentType": 0, "ParentId": 0, "UIHeadPath": "UI_C00001.png", @@ -54,6 +55,9 @@ "Count": 2599 } ], + "UnlockID": [ + 500000 + ], "ParentType": 1, "ParentId": 3000010102, "UIHeadPath": "UI_C00004.png", @@ -94,6 +98,9 @@ "Count": 2899 } ], + "UnlockID": [ + 500001 + ], "ParentType": 1, "ParentId": 3000040103, "UIHeadPath": "UI_C00008.png", @@ -134,6 +141,7 @@ "Count": 3999 } ], + "UnlockID": [], "ParentType": 0, "ParentId": 0, "UIHeadPath": "UI_C00010.png", @@ -174,6 +182,7 @@ "Count": 300 } ], + "UnlockID": [], "ParentType": 0, "ParentId": 0, "UIHeadPath": "UI_C00014.png", diff --git a/ProjectNLD/Assets/Config/Data/viheclecultivatecfg_vehiclecomponent.json b/ProjectNLD/Assets/Config/Data/viheclecultivatecfg_vehiclecomponent.json index 061fbdeb455..542e15dcf1e 100644 --- a/ProjectNLD/Assets/Config/Data/viheclecultivatecfg_vehiclecomponent.json +++ b/ProjectNLD/Assets/Config/Data/viheclecultivatecfg_vehiclecomponent.json @@ -9,6 +9,7 @@ "Count": 50 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300001, "Icon": "Poster_Component_3000010101.png", @@ -33,6 +34,9 @@ "Count": 51 } ], + "UnlockID": [ + 500002 + ], "ParentComponentID": 3000010101, "VehicleID": 300001, "Icon": "Poster_Component_3000010102.png", @@ -57,6 +61,7 @@ "Count": 52 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300001, "Icon": "Poster_Component_3000010201.png", @@ -81,6 +86,7 @@ "Count": 53 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300001, "Icon": "Poster_Component_3000010301.png", @@ -105,6 +111,9 @@ "Count": 54 } ], + "UnlockID": [ + 500003 + ], "ParentComponentID": 3000010301, "VehicleID": 300001, "Icon": "Poster_Component_3000010302.png", @@ -129,6 +138,7 @@ "Count": 55 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300004, "Icon": "Poster_Component_3000040101.png", @@ -153,6 +163,9 @@ "Count": 56 } ], + "UnlockID": [ + 500004 + ], "ParentComponentID": 3000040101, "VehicleID": 300004, "Icon": "Poster_Component_3000040102.png", @@ -177,6 +190,9 @@ "Count": 57 } ], + "UnlockID": [ + 500005 + ], "ParentComponentID": 3000040102, "VehicleID": 300004, "Icon": "Poster_Component_3000040103.png", @@ -201,6 +217,7 @@ "Count": 58 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300004, "Icon": "Poster_Component_3000040201.png", @@ -225,6 +242,7 @@ "Count": 59 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300004, "Icon": "Poster_Component_3000040301.png", @@ -249,6 +267,7 @@ "Count": 60 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300008, "Icon": "Poster_Component_3000080101.png", @@ -273,6 +292,9 @@ "Count": 61 } ], + "UnlockID": [ + 500006 + ], "ParentComponentID": 3000080101, "VehicleID": 300008, "Icon": "Poster_Component_3000080102.png", @@ -297,6 +319,7 @@ "Count": 62 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300008, "Icon": "Poster_Component_3000080201.png", @@ -321,6 +344,7 @@ "Count": 63 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300008, "Icon": "Poster_Component_3000080301.png", @@ -345,6 +369,7 @@ "Count": 64 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300008, "Icon": "Poster_Component_3000080302.png", @@ -369,6 +394,7 @@ "Count": 65 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300010, "Icon": "Poster_Component_3000100101.png", @@ -393,6 +419,9 @@ "Count": 66 } ], + "UnlockID": [ + 500007 + ], "ParentComponentID": 3000100101, "VehicleID": 300010, "Icon": "Poster_Component_3000100102.png", @@ -417,6 +446,7 @@ "Count": 67 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300010, "Icon": "Poster_Component_3000100201.png", @@ -441,6 +471,7 @@ "Count": 68 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300010, "Icon": "Poster_Component_3000100301.png", @@ -465,6 +496,9 @@ "Count": 69 } ], + "UnlockID": [ + 500008 + ], "ParentComponentID": 3000100301, "VehicleID": 300010, "Icon": "Poster_Component_3000100302.png", @@ -489,6 +523,7 @@ "Count": 70 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300014, "Icon": "Poster_Component_3000140101.png", @@ -513,6 +548,9 @@ "Count": 71 } ], + "UnlockID": [ + 500009 + ], "ParentComponentID": 3000140101, "VehicleID": 300014, "Icon": "Poster_Component_3000140102.png", @@ -537,6 +575,7 @@ "Count": 72 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300014, "Icon": "Poster_Component_3000140201.png", @@ -561,6 +600,7 @@ "Count": 73 } ], + "UnlockID": [], "ParentComponentID": 0, "VehicleID": 300014, "Icon": "Poster_Component_3000140301.png", @@ -585,6 +625,9 @@ "Count": 74 } ], + "UnlockID": [ + 500010 + ], "ParentComponentID": 3000140301, "VehicleID": 300014, "Icon": "Poster_Component_3000140302.png", diff --git a/ProjectNLD/Assets/Config/Data/viheclecultivatecfg_vehiclepaint.json b/ProjectNLD/Assets/Config/Data/viheclecultivatecfg_vehiclepaint.json index 548baab579c..85532af5321 100644 --- a/ProjectNLD/Assets/Config/Data/viheclecultivatecfg_vehiclepaint.json +++ b/ProjectNLD/Assets/Config/Data/viheclecultivatecfg_vehiclepaint.json @@ -12,12 +12,8 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 4, - "PaintCost": [ - { - "Id": 21, - "Count": 1 - } - ] + "ItemID": 21, + "PaintCost": [] }, { "PaintID": 2000, @@ -32,12 +28,8 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 4, - "PaintCost": [ - { - "Id": 22, - "Count": 1 - } - ] + "ItemID": 22, + "PaintCost": [] }, { "PaintID": 3000, @@ -52,12 +44,8 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 4, - "PaintCost": [ - { - "Id": 23, - "Count": 1 - } - ] + "ItemID": 23, + "PaintCost": [] }, { "PaintID": 1001, @@ -72,12 +60,8 @@ "CriticalRate": 0, "CriticalScale": 11, "UnlockType": 4, - "PaintCost": [ - { - "Id": 24, - "Count": 1 - } - ] + "ItemID": 24, + "PaintCost": [] }, { "PaintID": 2001, @@ -92,12 +76,8 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 4, - "PaintCost": [ - { - "Id": 25, - "Count": 1 - } - ] + "ItemID": 25, + "PaintCost": [] }, { "PaintID": 3001, @@ -112,12 +92,8 @@ "CriticalRate": 0, "CriticalScale": 5, "UnlockType": 4, - "PaintCost": [ - { - "Id": 26, - "Count": 1 - } - ] + "ItemID": 26, + "PaintCost": [] }, { "PaintID": 1002, @@ -132,6 +108,7 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 2, + "ItemID": 27, "PaintCost": [ { "Id": 9, @@ -152,6 +129,7 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 2, + "ItemID": 28, "PaintCost": [ { "Id": 9, @@ -172,6 +150,7 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 2, + "ItemID": 29, "PaintCost": [ { "Id": 9, @@ -192,6 +171,7 @@ "CriticalRate": 0, "CriticalScale": 13, "UnlockType": 3, + "ItemID": 30, "PaintCost": [ { "Id": 1000, @@ -212,6 +192,7 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 3, + "ItemID": 31, "PaintCost": [ { "Id": 1000, @@ -232,6 +213,7 @@ "CriticalRate": 0, "CriticalScale": 4, "UnlockType": 3, + "ItemID": 32, "PaintCost": [ { "Id": 1000, @@ -252,6 +234,7 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 1, + "ItemID": 33, "PaintCost": [ { "Id": 2, @@ -272,6 +255,7 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 1, + "ItemID": 34, "PaintCost": [ { "Id": 2, @@ -292,6 +276,7 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 1, + "ItemID": 35, "PaintCost": [ { "Id": 2, @@ -312,6 +297,7 @@ "CriticalRate": 0, "CriticalScale": 20, "UnlockType": 1, + "ItemID": 36, "PaintCost": [ { "Id": 2, @@ -332,6 +318,7 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 1, + "ItemID": 37, "PaintCost": [ { "Id": 2, @@ -352,6 +339,7 @@ "CriticalRate": 0, "CriticalScale": 7, "UnlockType": 1, + "ItemID": 38, "PaintCost": [ { "Id": 2, @@ -372,6 +360,7 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 1, + "ItemID": 39, "PaintCost": [ { "Id": 2, @@ -392,6 +381,7 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 1, + "ItemID": 40, "PaintCost": [ { "Id": 2, @@ -412,6 +402,7 @@ "CriticalRate": 0, "CriticalScale": 0, "UnlockType": 1, + "ItemID": 41, "PaintCost": [ { "Id": 2, diff --git a/ProjectNLD/Assets/Config/Data/weaponcfg_weaponconfig.json b/ProjectNLD/Assets/Config/Data/weaponcfg_weaponconfig.json index 84b51e4cc94..87c3a0de476 100644 --- a/ProjectNLD/Assets/Config/Data/weaponcfg_weaponconfig.json +++ b/ProjectNLD/Assets/Config/Data/weaponcfg_weaponconfig.json @@ -63,7 +63,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_4" ], @@ -102,7 +102,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_5" ], @@ -141,7 +141,7 @@ "SettleCapAnimPath": "ani_g04_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_3_1", "Sound_Shoot_3_2" @@ -181,7 +181,7 @@ "SettleCapAnimPath": "ani_g02_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_14" ], @@ -220,7 +220,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 150, + "BulletFlySpeed": 75, "FireAudioId": [ "Sound_Shoot_8" ], @@ -259,7 +259,7 @@ "SettleCapAnimPath": "ani_g05_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_4" ], @@ -298,7 +298,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_8" ], @@ -337,7 +337,7 @@ "SettleCapAnimPath": "ani_g08_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_15" ], @@ -376,7 +376,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_12" ], @@ -415,7 +415,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_12" ], @@ -449,12 +449,12 @@ "AllowShootAtNoFullReload": false, "AttackDistance": 6, "AttackIgoreBlock": false, - "ModelPath": "P_G00011", + "ModelPath": "P_G00011_01", "SettleTeamAnimPath": "ani_g11_s_victory001", "SettleCapAnimPath": "ani_g11_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [], "ParentPointName": "Grip_point01", "FireGroundEffect": true, @@ -491,7 +491,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_15" ], @@ -530,7 +530,7 @@ "SettleCapAnimPath": "ani_g06_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_12" ], @@ -569,7 +569,7 @@ "SettleCapAnimPath": "ani_g02_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 150, + "BulletFlySpeed": 75, "FireAudioId": [ "Sound_Shoot_10" ], @@ -608,7 +608,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 150, + "BulletFlySpeed": 75, "FireAudioId": [ "Sound_Shoot_8" ], @@ -647,7 +647,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_12" ], @@ -686,7 +686,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_6" ], @@ -725,7 +725,7 @@ "SettleCapAnimPath": "ani_g05_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_4" ], @@ -764,7 +764,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 150, + "BulletFlySpeed": 75, "FireAudioId": [ "Sound_Shoot_12" ], @@ -803,7 +803,7 @@ "SettleCapAnimPath": "ani_g05_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_4" ], @@ -842,7 +842,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_18" ], @@ -876,12 +876,12 @@ "AllowShootAtNoFullReload": false, "AttackDistance": 8, "AttackIgoreBlock": false, - "ModelPath": "P_G00022", + "ModelPath": "P_G00022_01", "SettleTeamAnimPath": "ani_g02_s_victory001", "SettleCapAnimPath": "ani_g02_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 150, + "BulletFlySpeed": 75, "FireAudioId": [ "Sound_Shoot_11" ], @@ -920,7 +920,7 @@ "SettleCapAnimPath": "ani_g05_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [], "ParentPointName": "Grip_point01", "FireGroundEffect": true, @@ -957,7 +957,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_12" ], @@ -996,7 +996,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_8" ], @@ -1035,7 +1035,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 120, + "BulletFlySpeed": 60, "FireAudioId": [ "Sound_Shoot_6" ], @@ -1074,7 +1074,7 @@ "SettleCapAnimPath": "ani_g08_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_15" ], @@ -1113,7 +1113,7 @@ "SettleCapAnimPath": "ani_g08_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_19" ], @@ -1152,7 +1152,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_7" ], @@ -1191,7 +1191,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_6" ], @@ -1230,7 +1230,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_11" ], @@ -1269,7 +1269,7 @@ "SettleCapAnimPath": "ani_g05_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_4" ], @@ -1308,7 +1308,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_9" ], @@ -1347,7 +1347,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_11" ], @@ -1386,7 +1386,7 @@ "SettleCapAnimPath": "ani_g05_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_4" ], @@ -1425,7 +1425,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_11" ], @@ -1464,7 +1464,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_6" ], @@ -1503,7 +1503,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_7" ], @@ -1542,7 +1542,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_12" ], @@ -1581,7 +1581,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_20" ], @@ -1620,7 +1620,7 @@ "SettleCapAnimPath": "ani_g08_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_17" ], @@ -1659,7 +1659,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_12" ], @@ -1698,7 +1698,7 @@ "SettleCapAnimPath": "ani_g02_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_13" ], @@ -1737,7 +1737,7 @@ "SettleCapAnimPath": "ani_g08_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_12" ], @@ -1776,7 +1776,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_20" ], @@ -1815,7 +1815,7 @@ "SettleCapAnimPath": "ani_g02_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_13" ], @@ -1854,7 +1854,7 @@ "SettleCapAnimPath": "ani_g02_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_13" ], @@ -1893,7 +1893,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_12" ], @@ -1932,7 +1932,7 @@ "SettleCapAnimPath": "ani_g05_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_5" ], @@ -1971,7 +1971,7 @@ "SettleCapAnimPath": "ani_g02_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_18" ], @@ -2010,7 +2010,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_12" ], @@ -2049,7 +2049,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_11" ], @@ -2088,7 +2088,7 @@ "SettleCapAnimPath": "ani_g02_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_18" ], @@ -2127,7 +2127,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_11" ], @@ -2166,7 +2166,7 @@ "SettleCapAnimPath": "ani_g02_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_13" ], @@ -2205,7 +2205,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_7" ], @@ -2244,7 +2244,7 @@ "SettleCapAnimPath": "ani_g08_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_9" ], @@ -2283,7 +2283,7 @@ "SettleCapAnimPath": "ani_g02_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_20" ], @@ -2322,7 +2322,7 @@ "SettleCapAnimPath": "ani_g02_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_18" ], @@ -2361,7 +2361,7 @@ "SettleCapAnimPath": "ani_g08_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_8" ], @@ -2400,7 +2400,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_18" ], @@ -2439,7 +2439,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_11" ], @@ -2478,7 +2478,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_2" ], @@ -2517,7 +2517,7 @@ "SettleCapAnimPath": "ani_g02_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_13" ], @@ -2556,7 +2556,7 @@ "SettleCapAnimPath": "ani_g08_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_18" ], @@ -2595,7 +2595,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_9" ], @@ -2634,7 +2634,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_6" ], @@ -2673,7 +2673,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_9" ], @@ -2712,7 +2712,7 @@ "SettleCapAnimPath": "ani_g01_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_2" ], @@ -2751,7 +2751,7 @@ "SettleCapAnimPath": "ani_g03_s_victory002", "FireAnimName": "", "ReleadAnimName": "", - "BulletFlySpeed": 100, + "BulletFlySpeed": 50, "FireAudioId": [ "Sound_Shoot_17" ],