diff --git a/StarRailUID/starrailuid_calc/__init__.py b/StarRailUID/starrailuid_calc/__init__.py index 34c89b7..9b8b1cf 100644 --- a/StarRailUID/starrailuid_calc/__init__.py +++ b/StarRailUID/starrailuid_calc/__init__.py @@ -6,11 +6,11 @@ from gsuid_core.utils.database.models import GsBind from gsuid_core.utils.error_reply import get_error from ..utils.error_reply import UID_HINT -from ..utils.map.name_covert import ( +from ..utils.mys_api import mys_api +from ..utils.name_covert import ( alias_to_char_name, name_to_avatar_id, ) -from ..utils.mys_api import mys_api from ..utils.sr_prefix import PREFIX if TYPE_CHECKING: diff --git a/StarRailUID/starrailuid_charinfo/draw_char_img.py b/StarRailUID/starrailuid_charinfo/draw_char_img.py index 9b94c2c..be6ccc3 100644 --- a/StarRailUID/starrailuid_charinfo/draw_char_img.py +++ b/StarRailUID/starrailuid_charinfo/draw_char_img.py @@ -10,6 +10,11 @@ from gsuid_core.logger import logger from gsuid_core.utils.image.convert import convert_img from gsuid_core.utils.image.image_tools import draw_text_by_line from starrail_damage_cal.cal_damage import cal_char_info, cal_info +from starrail_damage_cal.excel.model import AvatarRelicScore +from starrail_damage_cal.map.SR_MAP_PATH import ( + RelicId2Rarity, + avatarId2Name, +) from starrail_damage_cal.model import MihomoCharacter from starrail_damage_cal.to_data import api_to_dict @@ -26,12 +31,7 @@ from ..utils.fonts.starrail_fonts import ( sr_font_34, sr_font_38, ) -from ..utils.map.SR_MAP_PATH import ( - AvatarRelicScore, - RelicId2Rarity, - avatarId2Name, -) -from ..utils.map.name_covert import alias_to_char_name, name_to_avatar_id +from ..utils.name_covert import alias_to_char_name, name_to_avatar_id from ..utils.resource.RESOURCE_PATH import ( CHAR_PORTRAIT_PATH, PLAYER_PATH, @@ -793,9 +793,9 @@ async def get_relic_score( relic_score = 0 weight_dict = {} for item in AvatarRelicScore: - if item["role"] == char_name: + if item.role == char_name: weight_dict = item - if weight_dict == {}: + if isinstance(weight_dict, dict): return 0 if is_main: elementlist = [ @@ -811,43 +811,45 @@ async def get_relic_score( if subProperty.__contains__("AddedRatio") and relicType == 5: if subProperty.split("AddedRatio")[0] in elementlist: subProperty = "AttributeAddedRatio" - if weight_dict.get(subProperty, 0) > 0: - relic_score += 5.83 + # if weight_dict.get(subProperty, 0) > 0: + # relic_score += 5.83 + # if weight_dict.__contains__(subProperty): + # relic_score += 5.83 else: if subProperty == "CriticalDamageBase": - add_value = subValue * 1 * weight_dict["CriticalDamageBase"] * 100 + add_value = subValue * 1 * weight_dict.CriticalDamageBase * 100 relic_score += add_value if subProperty == "CriticalChanceBase": - add_value = subValue * 2 * weight_dict["CriticalChanceBase"] * 100 + add_value = subValue * 2 * weight_dict.CriticalChanceBase * 100 relic_score += add_value if subProperty == "AttackDelta": - add_value = subValue * 0.3 * 0.5 * weight_dict["AttackDelta"] * 1.0 + add_value = subValue * 0.3 * 0.5 * weight_dict.AttackDelta * 1.0 relic_score += add_value if subProperty == "DefenceDelta": - add_value = subValue * 0.3 * 0.5 * weight_dict["DefenceDelta"] * 1.0 + add_value = subValue * 0.3 * 0.5 * weight_dict.DefenceDelta * 1.0 relic_score += add_value if subProperty == "HPDelta": - add_value = subValue * 0.158 * 0.5 * weight_dict["HPDelta"] * 1.0 + add_value = subValue * 0.158 * 0.5 * weight_dict.HPDelta * 1.0 relic_score += add_value if subProperty == "AttackAddedRatio": - add_value = subValue * 1.5 * weight_dict["AttackAddedRatio"] * 100 + add_value = subValue * 1.5 * weight_dict.AttackAddedRatio * 100 relic_score += add_value if subProperty == "DefenceAddedRatio": - add_value = subValue * 1.19 * weight_dict["DefenceAddedRatio"] * 100 + add_value = subValue * 1.19 * weight_dict.DefenceAddedRatio * 100 relic_score += add_value if subProperty == "HPAddedRatio": - add_value = subValue * 1.5 * weight_dict["HPAddedRatio"] * 100 + add_value = subValue * 1.5 * weight_dict.HPAddedRatio * 100 relic_score += add_value if subProperty == "SpeedDelta": - add_value = subValue * 2.53 * weight_dict["SpeedDelta"] + add_value = subValue * 2.53 * weight_dict.SpeedDelta relic_score += add_value if subProperty == "BreakDamageAddedRatioBase": - add_value = subValue * 1.0 * weight_dict["BreakDamageAddedRatioBase"] * 100 + add_value = subValue * 1.0 * weight_dict.BreakDamageAddedRatioBase * 100 relic_score += add_value if subProperty == "StatusProbabilityBase": - add_value = subValue * 1.49 * weight_dict["StatusProbabilityBase"] * 100 + add_value = subValue * 1.49 * weight_dict.StatusProbabilityBase * 100 relic_score += add_value if subProperty == "StatusResistanceBase": - add_value = subValue * 1.49 * weight_dict["StatusResistanceBase"] * 100 + add_value = subValue * 1.49 * weight_dict.StatusResistanceBase * 100 relic_score += add_value return relic_score diff --git a/StarRailUID/starrailuid_charinfo/get_char_img.py b/StarRailUID/starrailuid_charinfo/get_char_img.py index 7b3a25a..d6ee711 100644 --- a/StarRailUID/starrailuid_charinfo/get_char_img.py +++ b/StarRailUID/starrailuid_charinfo/get_char_img.py @@ -6,7 +6,20 @@ from starrail_damage_cal.excel.model import ( AvatarPromotionConfig, EquipmentPromotionConfig, ) -from starrail_damage_cal.map.SR_MAP_PATH import AvatarRankSkillUp +from starrail_damage_cal.map.SR_MAP_PATH import ( + AvatarRankSkillUp, + EquipmentID2Name, + EquipmentID2Rarity, + Property2Name, + avatarId2DamageType, + avatarId2EnName, + avatarId2Name, + avatarId2Rarity, + rankId2Name, + skillId2AttackType, + skillId2Effect, + skillId2Name, +) from starrail_damage_cal.model import ( AttributeBounsStatusAdd, AvatarBaseAttributes, @@ -22,20 +35,7 @@ from starrail_damage_cal.to_data import api_to_dict, characterSkillTree from .draw_char_img import draw_char_img from ..utils.error_reply import CHAR_HINT -from ..utils.map.SR_MAP_PATH import ( - EquipmentID2Name, - EquipmentID2Rarity, - Property2Name, - avatarId2DamageType, - avatarId2EnName, - avatarId2Name, - avatarId2Rarity, - rankId2Name, - skillId2AttackType, - skillId2Effect, - skillId2Name, -) -from ..utils.map.name_covert import ( +from ..utils.name_covert import ( alias_to_char_name, alias_to_weapon_name, name_to_avatar_id, diff --git a/StarRailUID/starrailuid_charinfo/to_card.py b/StarRailUID/starrailuid_charinfo/to_card.py index b7c3b38..575e2a4 100644 --- a/StarRailUID/starrailuid_charinfo/to_card.py +++ b/StarRailUID/starrailuid_charinfo/to_card.py @@ -10,7 +10,7 @@ from starrail_damage_cal.to_data import api_to_dict from ..utils.fonts.first_world import fw_font_28 from ..utils.fonts.starrail_fonts import sr_font_24, sr_font_30, sr_font_58 -from ..utils.map.name_covert import avatar_id_to_char_star +from ..utils.name_covert import avatar_id_to_char_star from ..utils.resource.RESOURCE_PATH import CHAR_PREVIEW_PATH, PLAYER_PATH half_color = (255, 255, 255, 120) diff --git a/StarRailUID/starrailuid_gachalog/draw_gachalogs.py b/StarRailUID/starrailuid_gachalog/draw_gachalogs.py index 44e4411..27e9436 100644 --- a/StarRailUID/starrailuid_gachalog/draw_gachalogs.py +++ b/StarRailUID/starrailuid_gachalog/draw_gachalogs.py @@ -20,7 +20,7 @@ from ..utils.fonts.starrail_fonts import ( sr_font_38, sr_font_40, ) -from ..utils.map.name_covert import name_to_avatar_id, name_to_weapon_id +from ..utils.name_covert import name_to_avatar_id, name_to_weapon_id from ..utils.resource.RESOURCE_PATH import ( CHAR_ICON_PATH, PLAYER_PATH, diff --git a/StarRailUID/starrailuid_wiki/__init__.py b/StarRailUID/starrailuid_wiki/__init__.py index fd2c1a3..91d4bda 100644 --- a/StarRailUID/starrailuid_wiki/__init__.py +++ b/StarRailUID/starrailuid_wiki/__init__.py @@ -5,7 +5,7 @@ from gsuid_core.models import Event from gsuid_core.sv import SV from gsuid_core.utils.image.convert import convert_img -from ..utils.map.name_covert import ( +from ..utils.name_covert import ( alias_to_char_name, name_to_avatar_id, name_to_relic_set_id, diff --git a/StarRailUID/utils/excel/AvatarPromotionConfig.json b/StarRailUID/utils/excel/AvatarPromotionConfig.json deleted file mode 100644 index 895d7bb..0000000 --- a/StarRailUID/utils/excel/AvatarPromotionConfig.json +++ /dev/null @@ -1,20338 +0,0 @@ -[ - { - "AvatarID": 1001, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 69.6 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 78 - }, - "DefenceAdd": { - "Value": 3.9 - }, - "HPBase": { - "Value": 144 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1001, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 97.44 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 109.2 - }, - "DefenceAdd": { - "Value": 3.9 - }, - "HPBase": { - "Value": 201.6 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1001, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111012, - "ItemNum": 5 - }, - { - "ItemID": 110403, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 125.28 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 140.4 - }, - "DefenceAdd": { - "Value": 3.9 - }, - "HPBase": { - "Value": 259.2 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1001, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111012, - "ItemNum": 8 - }, - { - "ItemID": 110403, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 153.12 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 171.6 - }, - "DefenceAdd": { - "Value": 3.9 - }, - "HPBase": { - "Value": 316.8 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1001, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111013, - "ItemNum": 5 - }, - { - "ItemID": 110403, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 180.96 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 202.8 - }, - "DefenceAdd": { - "Value": 3.9 - }, - "HPBase": { - "Value": 374.4 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1001, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111013, - "ItemNum": 7 - }, - { - "ItemID": 110403, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 208.8 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 234 - }, - "DefenceAdd": { - "Value": 3.9 - }, - "HPBase": { - "Value": 432 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1001, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 236.64 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 265.2 - }, - "DefenceAdd": { - "Value": 3.9 - }, - "HPBase": { - "Value": 489.6 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1002, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 74.4 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 54 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 120 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1002, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 104.16 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 75.6 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 168 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1002, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111002, - "ItemNum": 5 - }, - { - "ItemID": 110405, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 133.92 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 97.2 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 216 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1002, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111002, - "ItemNum": 8 - }, - { - "ItemID": 110405, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 163.68 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 264 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1002, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111003, - "ItemNum": 5 - }, - { - "ItemID": 110405, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 193.44 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 140.4 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 312 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1002, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111003, - "ItemNum": 7 - }, - { - "ItemID": 110405, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 223.2 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 162 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 360 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1002, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 252.96 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 183.6 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 408 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1003, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 102.96 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 59.4 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 142.56 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1003, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 144.144 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 83.16 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 199.584 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1003, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 111002, - "ItemNum": 6 - }, - { - "ItemID": 110402, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 185.328 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 106.92 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 256.608 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1003, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 111002, - "ItemNum": 9 - }, - { - "ItemID": 110402, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 226.512 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 130.68 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 313.632 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1003, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 111003, - "ItemNum": 6 - }, - { - "ItemID": 110402, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 267.696 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 154.44 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 370.656 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1003, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 111003, - "ItemNum": 9 - }, - { - "ItemID": 110402, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 308.88 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 178.2 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 427.68 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1003, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 350.064 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 201.96 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 484.704 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1004, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 84.48 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 69.3 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 153.12 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1004, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 112001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 118.272 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 97.02 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 214.368 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1004, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 112002, - "ItemNum": 6 - }, - { - "ItemID": 110407, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 152.064 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 124.74 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 275.616 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1004, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 112002, - "ItemNum": 9 - }, - { - "ItemID": 110407, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 185.856 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 152.46 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 336.864 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1004, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 112003, - "ItemNum": 6 - }, - { - "ItemID": 110407, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 219.648 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 180.18 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 398.112 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1004, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 112003, - "ItemNum": 9 - }, - { - "ItemID": 110407, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 253.44 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 207.9 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 459.36 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1004, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 287.232 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 235.62 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 520.608 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1005, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 92.4 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 66 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 147.84 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1005, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 111011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 129.36 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 206.976 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1005, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 111012, - "ItemNum": 6 - }, - { - "ItemID": 110414, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 166.32 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 266.112 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1005, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 111012, - "ItemNum": 9 - }, - { - "ItemID": 110414, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 203.28 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 145.2 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 325.248 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1005, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 111013, - "ItemNum": 6 - }, - { - "ItemID": 110414, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 240.24 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 171.6 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 384.384 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1005, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 111013, - "ItemNum": 9 - }, - { - "ItemID": 110414, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 277.2 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 198 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 443.52 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1005, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 314.16 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 224.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 502.656 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1006, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 87.12 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 62.7 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 142.56 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1006, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 112011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 121.968 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 87.78 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 199.584 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1006, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 112012, - "ItemNum": 6 - }, - { - "ItemID": 110406, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 156.816 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 112.86 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 256.608 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1006, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 112012, - "ItemNum": 9 - }, - { - "ItemID": 110406, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 191.664 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 137.94 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 313.632 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1006, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 112013, - "ItemNum": 6 - }, - { - "ItemID": 110406, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 226.512 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 163.02 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 370.656 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1006, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 112013, - "ItemNum": 9 - }, - { - "ItemID": 110406, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 261.36 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 188.1 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 427.68 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1006, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 296.208 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 213.18 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 484.704 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1008, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 81.6 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 45 - }, - "DefenceAdd": { - "Value": 2.25 - }, - "HPBase": { - "Value": 163.2 - }, - "HPAdd": { - "Value": 8.16 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1008, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 114.24 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 63 - }, - "DefenceAdd": { - "Value": 2.25 - }, - "HPBase": { - "Value": 228.48 - }, - "HPAdd": { - "Value": 8.16 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1008, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111002, - "ItemNum": 5 - }, - { - "ItemID": 110404, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 146.88 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 81 - }, - "DefenceAdd": { - "Value": 2.25 - }, - "HPBase": { - "Value": 293.76 - }, - "HPAdd": { - "Value": 8.16 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1008, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111002, - "ItemNum": 8 - }, - { - "ItemID": 110404, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 179.52 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 99 - }, - "DefenceAdd": { - "Value": 2.25 - }, - "HPBase": { - "Value": 359.04 - }, - "HPAdd": { - "Value": 8.16 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1008, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111003, - "ItemNum": 5 - }, - { - "ItemID": 110404, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 212.16 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 117 - }, - "DefenceAdd": { - "Value": 2.25 - }, - "HPBase": { - "Value": 424.32 - }, - "HPAdd": { - "Value": 8.16 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1008, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111003, - "ItemNum": 7 - }, - { - "ItemID": 110404, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 244.8 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 135 - }, - "DefenceAdd": { - "Value": 2.25 - }, - "HPBase": { - "Value": 489.6 - }, - "HPAdd": { - "Value": 8.16 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1008, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 277.44 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 153 - }, - "DefenceAdd": { - "Value": 2.25 - }, - "HPBase": { - "Value": 554.88 - }, - "HPAdd": { - "Value": 8.16 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1009, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 112001, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 69.6 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 63 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 139.2 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1009, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 112001, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 97.44 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 88.2 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 194.88 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1009, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 112002, - "ItemNum": 5 - }, - { - "ItemID": 110402, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 125.28 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 113.4 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 250.56 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1009, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 112002, - "ItemNum": 8 - }, - { - "ItemID": 110402, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 153.12 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 138.6 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 306.24 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1009, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 112003, - "ItemNum": 5 - }, - { - "ItemID": 110402, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 180.96 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 163.8 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 361.92 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1009, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 112003, - "ItemNum": 7 - }, - { - "ItemID": 110402, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 208.8 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 189 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 417.6 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1009, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 236.64 - }, - "AttackAdd": { - "Value": 3.48 - }, - "DefenceBase": { - "Value": 214.2 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 473.28 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1013, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 79.2 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 54 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 129.6 - }, - "HPAdd": { - "Value": 6.48 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1013, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 110.88 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 75.6 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 181.44 - }, - "HPAdd": { - "Value": 6.48 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1013, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111002, - "ItemNum": 5 - }, - { - "ItemID": 110403, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 142.56 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 97.2 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 233.28 - }, - "HPAdd": { - "Value": 6.48 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1013, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111002, - "ItemNum": 8 - }, - { - "ItemID": 110403, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 174.24 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 285.12 - }, - "HPAdd": { - "Value": 6.48 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1013, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111003, - "ItemNum": 5 - }, - { - "ItemID": 110403, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 205.92 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 140.4 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 336.96 - }, - "HPAdd": { - "Value": 6.48 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1013, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111003, - "ItemNum": 7 - }, - { - "ItemID": 110403, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 237.6 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 162 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 388.8 - }, - "HPAdd": { - "Value": 6.48 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1013, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 269.28 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 183.6 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 440.64 - }, - "HPAdd": { - "Value": 6.48 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1101, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 79.2 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 72.6 - }, - "DefenceAdd": { - "Value": 3.63 - }, - "HPBase": { - "Value": 168.96 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1101, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 112001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 110.88 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 101.64 - }, - "DefenceAdd": { - "Value": 3.63 - }, - "HPBase": { - "Value": 236.544 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1101, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 112002, - "ItemNum": 6 - }, - { - "ItemID": 110405, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 142.56 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 130.68 - }, - "DefenceAdd": { - "Value": 3.63 - }, - "HPBase": { - "Value": 304.128 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1101, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 112002, - "ItemNum": 9 - }, - { - "ItemID": 110405, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 174.24 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 159.72 - }, - "DefenceAdd": { - "Value": 3.63 - }, - "HPBase": { - "Value": 371.712 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1101, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 112003, - "ItemNum": 6 - }, - { - "ItemID": 110405, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 205.92 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 188.76 - }, - "DefenceAdd": { - "Value": 3.63 - }, - "HPBase": { - "Value": 439.296 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1101, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 112003, - "ItemNum": 9 - }, - { - "ItemID": 110405, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 237.6 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 217.8 - }, - "DefenceAdd": { - "Value": 3.63 - }, - "HPBase": { - "Value": 506.88 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1101, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 269.28 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 246.84 - }, - "DefenceAdd": { - "Value": 3.63 - }, - "HPBase": { - "Value": 574.464 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1102, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 87.12 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 49.5 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 126.72 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 115 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1102, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 111011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 121.968 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 69.3 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 177.408 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 115 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1102, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 111012, - "ItemNum": 6 - }, - { - "ItemID": 110406, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 156.816 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 89.1 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 228.096 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 115 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1102, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 111012, - "ItemNum": 9 - }, - { - "ItemID": 110406, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 191.664 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 108.9 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 278.784 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 115 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1102, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 111013, - "ItemNum": 6 - }, - { - "ItemID": 110406, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 226.512 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 128.7 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 329.472 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 115 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1102, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 111013, - "ItemNum": 9 - }, - { - "ItemID": 110406, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 261.36 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 148.5 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 380.16 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 115 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1102, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 296.208 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 168.3 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 430.848 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 115 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1103, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 112001, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 88.8 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 51 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 124.8 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1103, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 112001, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 124.32 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 71.4 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 174.72 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1103, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 112002, - "ItemNum": 5 - }, - { - "ItemID": 110404, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 159.84 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 91.8 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 224.64 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1103, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 112002, - "ItemNum": 8 - }, - { - "ItemID": 110404, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 195.36 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 112.2 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 274.56 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1103, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 112003, - "ItemNum": 5 - }, - { - "ItemID": 110404, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 230.88 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 132.6 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 324.48 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1103, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 112003, - "ItemNum": 7 - }, - { - "ItemID": 110404, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 266.4 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 153 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 374.4 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1103, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 301.92 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 173.4 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 424.32 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1104, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 73.92 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 89.1 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 190.08 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 92 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1104, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 112001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 103.488 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 124.74 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 266.112 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 92 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1104, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 112002, - "ItemNum": 6 - }, - { - "ItemID": 110403, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 133.056 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 160.38 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 342.144 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 92 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1104, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 112002, - "ItemNum": 9 - }, - { - "ItemID": 110403, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 162.624 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 196.02 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 418.176 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 92 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1104, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 112003, - "ItemNum": 6 - }, - { - "ItemID": 110403, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 192.192 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 231.66 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 494.208 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 92 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1104, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 112003, - "ItemNum": 9 - }, - { - "ItemID": 110403, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 221.76 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 267.3 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 570.24 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 92 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1104, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 251.328 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 302.94 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 646.272 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 92 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1105, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 112011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 64.8 - }, - "AttackAdd": { - "Value": 3.24 - }, - "DefenceBase": { - "Value": 69 - }, - "DefenceAdd": { - "Value": 3.45 - }, - "HPBase": { - "Value": 158.4 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1105, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 112011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 90.72 - }, - "AttackAdd": { - "Value": 3.24 - }, - "DefenceBase": { - "Value": 96.6 - }, - "DefenceAdd": { - "Value": 3.45 - }, - "HPBase": { - "Value": 221.76 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1105, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 112012, - "ItemNum": 5 - }, - { - "ItemID": 110401, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 116.64 - }, - "AttackAdd": { - "Value": 3.24 - }, - "DefenceBase": { - "Value": 124.2 - }, - "DefenceAdd": { - "Value": 3.45 - }, - "HPBase": { - "Value": 285.12 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1105, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 112012, - "ItemNum": 8 - }, - { - "ItemID": 110401, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 142.56 - }, - "AttackAdd": { - "Value": 3.24 - }, - "DefenceBase": { - "Value": 151.8 - }, - "DefenceAdd": { - "Value": 3.45 - }, - "HPBase": { - "Value": 348.48 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1105, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 112013, - "ItemNum": 5 - }, - { - "ItemID": 110401, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 168.48 - }, - "AttackAdd": { - "Value": 3.24 - }, - "DefenceBase": { - "Value": 179.4 - }, - "DefenceAdd": { - "Value": 3.45 - }, - "HPBase": { - "Value": 411.84 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1105, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 112013, - "ItemNum": 7 - }, - { - "ItemID": 110401, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 194.4 - }, - "AttackAdd": { - "Value": 3.24 - }, - "DefenceBase": { - "Value": 207 - }, - "DefenceAdd": { - "Value": 3.45 - }, - "HPBase": { - "Value": 475.2 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1105, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 220.32 - }, - "AttackAdd": { - "Value": 3.24 - }, - "DefenceBase": { - "Value": 234.6 - }, - "DefenceAdd": { - "Value": 3.45 - }, - "HPBase": { - "Value": 538.56 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1106, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 74.4 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 63 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 134.4 - }, - "HPAdd": { - "Value": 6.72 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1106, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 104.16 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 88.2 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 188.16 - }, - "HPAdd": { - "Value": 6.72 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1106, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111002, - "ItemNum": 5 - }, - { - "ItemID": 110403, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 133.92 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 113.4 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 241.92 - }, - "HPAdd": { - "Value": 6.72 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1106, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111002, - "ItemNum": 8 - }, - { - "ItemID": 110403, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 163.68 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 138.6 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 295.68 - }, - "HPAdd": { - "Value": 6.72 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1106, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111003, - "ItemNum": 5 - }, - { - "ItemID": 110403, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 193.44 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 163.8 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 349.44 - }, - "HPAdd": { - "Value": 6.72 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1106, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111003, - "ItemNum": 7 - }, - { - "ItemID": 110403, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 223.2 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 189 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 403.2 - }, - "HPAdd": { - "Value": 6.72 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1106, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 252.96 - }, - "AttackAdd": { - "Value": 3.72 - }, - "DefenceBase": { - "Value": 214.2 - }, - "DefenceAdd": { - "Value": 3.15 - }, - "HPBase": { - "Value": 456.96 - }, - "HPAdd": { - "Value": 6.72 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1107, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 100.32 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 66 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 168.96 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 90 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1107, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 112011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 140.448 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 236.544 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 90 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1107, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 112012, - "ItemNum": 6 - }, - { - "ItemID": 110401, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 180.576 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 304.128 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 90 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1107, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 112012, - "ItemNum": 9 - }, - { - "ItemID": 110401, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 220.704 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 145.2 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 371.712 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 90 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1107, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 112013, - "ItemNum": 6 - }, - { - "ItemID": 110401, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 260.832 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 171.6 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 439.296 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 90 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1107, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 112013, - "ItemNum": 9 - }, - { - "ItemID": 110401, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 300.96 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 198 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 506.88 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 90 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1107, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 341.088 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 224.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 574.464 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 90 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1108, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 112011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 84 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 54 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 139.2 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1108, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 112011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 117.6 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 75.6 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 194.88 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1108, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 112012, - "ItemNum": 5 - }, - { - "ItemID": 110405, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 151.2 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 97.2 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 250.56 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1108, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 112012, - "ItemNum": 8 - }, - { - "ItemID": 110405, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 184.8 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 306.24 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1108, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 112013, - "ItemNum": 5 - }, - { - "ItemID": 110405, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 218.4 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 140.4 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 361.92 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1108, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 112013, - "ItemNum": 7 - }, - { - "ItemID": 110405, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 252 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 162 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 417.6 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1108, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 285.6 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 183.6 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 473.28 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1109, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 112011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 84 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 48 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 182.4 - }, - "HPAdd": { - "Value": 9.12 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1109, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 112011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 117.6 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 67.2 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 255.36 - }, - "HPAdd": { - "Value": 9.12 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1109, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 112012, - "ItemNum": 5 - }, - { - "ItemID": 110402, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 151.2 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 86.4 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 328.32 - }, - "HPAdd": { - "Value": 9.12 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1109, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 112012, - "ItemNum": 8 - }, - { - "ItemID": 110402, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 184.8 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 105.6 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 401.28 - }, - "HPAdd": { - "Value": 9.12 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1109, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 112013, - "ItemNum": 5 - }, - { - "ItemID": 110402, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 218.4 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 124.8 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 474.24 - }, - "HPAdd": { - "Value": 9.12 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1109, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 112013, - "ItemNum": 7 - }, - { - "ItemID": 110402, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 252 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 144 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 547.2 - }, - "HPAdd": { - "Value": 9.12 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1109, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 285.6 - }, - "AttackAdd": { - "Value": 4.2 - }, - "DefenceBase": { - "Value": 163.2 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 620.16 - }, - "HPAdd": { - "Value": 9.12 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1110, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 67.2 - }, - "AttackAdd": { - "Value": 3.36 - }, - "DefenceBase": { - "Value": 75 - }, - "DefenceAdd": { - "Value": 3.75 - }, - "HPBase": { - "Value": 144 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1110, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 94.08 - }, - "AttackAdd": { - "Value": 3.36 - }, - "DefenceBase": { - "Value": 105 - }, - "DefenceAdd": { - "Value": 3.75 - }, - "HPBase": { - "Value": 201.6 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1110, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111002, - "ItemNum": 5 - }, - { - "ItemID": 110416, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 120.96 - }, - "AttackAdd": { - "Value": 3.36 - }, - "DefenceBase": { - "Value": 135 - }, - "DefenceAdd": { - "Value": 3.75 - }, - "HPBase": { - "Value": 259.2 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1110, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111002, - "ItemNum": 8 - }, - { - "ItemID": 110416, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 147.84 - }, - "AttackAdd": { - "Value": 3.36 - }, - "DefenceBase": { - "Value": 165 - }, - "DefenceAdd": { - "Value": 3.75 - }, - "HPBase": { - "Value": 316.8 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1110, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111003, - "ItemNum": 5 - }, - { - "ItemID": 110416, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 174.72 - }, - "AttackAdd": { - "Value": 3.36 - }, - "DefenceBase": { - "Value": 195 - }, - "DefenceAdd": { - "Value": 3.75 - }, - "HPBase": { - "Value": 374.4 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1110, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111003, - "ItemNum": 7 - }, - { - "ItemID": 110416, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 201.6 - }, - "AttackAdd": { - "Value": 3.36 - }, - "DefenceBase": { - "Value": 225 - }, - "DefenceAdd": { - "Value": 3.75 - }, - "HPBase": { - "Value": 432 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1110, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 228.48 - }, - "AttackAdd": { - "Value": 3.36 - }, - "DefenceBase": { - "Value": 255 - }, - "DefenceAdd": { - "Value": 3.75 - }, - "HPBase": { - "Value": 489.6 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1111, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 112011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 79.2 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 66 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 124.8 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1111, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 112011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 110.88 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 174.72 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1111, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 112012, - "ItemNum": 5 - }, - { - "ItemID": 110401, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 142.56 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 224.64 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1111, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 112012, - "ItemNum": 8 - }, - { - "ItemID": 110401, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 174.24 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 145.2 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 274.56 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1111, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 112013, - "ItemNum": 5 - }, - { - "ItemID": 110401, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 205.92 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 171.6 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 324.48 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1111, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 112013, - "ItemNum": 7 - }, - { - "ItemID": 110401, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 237.6 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 198 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 374.4 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1111, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 269.28 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 224.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 424.32 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1201, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 88.8 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 60 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 139.2 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1201, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 124.32 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 84 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 194.88 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1201, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111012, - "ItemNum": 5 - }, - { - "ItemID": 110406, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 159.84 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 108 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 250.56 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1201, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111012, - "ItemNum": 8 - }, - { - "ItemID": 110406, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 195.36 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 132 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 306.24 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1201, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111013, - "ItemNum": 5 - }, - { - "ItemID": 110406, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 230.88 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 156 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 361.92 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1201, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111013, - "ItemNum": 7 - }, - { - "ItemID": 110406, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 266.4 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 180 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 417.6 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1201, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 301.92 - }, - "AttackAdd": { - "Value": 4.44 - }, - "DefenceBase": { - "Value": 204 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 473.28 - }, - "HPAdd": { - "Value": 6.96 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1202, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 113001, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 72 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 54 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 115.2 - }, - "HPAdd": { - "Value": 5.76 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1202, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 113001, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 100.8 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 75.6 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 161.28 - }, - "HPAdd": { - "Value": 5.76 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1202, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 113002, - "ItemNum": 5 - }, - { - "ItemID": 110404, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 129.6 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 97.2 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 207.36 - }, - "HPAdd": { - "Value": 5.76 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1202, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 113002, - "ItemNum": 8 - }, - { - "ItemID": 110404, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 158.4 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 253.44 - }, - "HPAdd": { - "Value": 5.76 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1202, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 113003, - "ItemNum": 5 - }, - { - "ItemID": 110404, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 187.2 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 140.4 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 299.52 - }, - "HPAdd": { - "Value": 5.76 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1202, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 113003, - "ItemNum": 7 - }, - { - "ItemID": 110404, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 216 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 162 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 345.6 - }, - "HPAdd": { - "Value": 5.76 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1202, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 244.8 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 183.6 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 391.68 - }, - "HPAdd": { - "Value": 5.76 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1203, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 102.96 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 49.5 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 174.24 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1203, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 113011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 144.144 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 69.3 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 243.936 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1203, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 113012, - "ItemNum": 6 - }, - { - "ItemID": 110407, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 185.328 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 89.1 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 313.632 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1203, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 113012, - "ItemNum": 9 - }, - { - "ItemID": 110407, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 226.512 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 108.9 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 383.328 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1203, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 113013, - "ItemNum": 6 - }, - { - "ItemID": 110407, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 267.696 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 128.7 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 453.024 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1203, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 113013, - "ItemNum": 9 - }, - { - "ItemID": 110407, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 308.88 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 148.5 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 522.72 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1203, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 350.064 - }, - "AttackAdd": { - "Value": 5.148 - }, - "DefenceBase": { - "Value": 168.3 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 592.416 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1204, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 95.04 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 66 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 158.4 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1204, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 133.056 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 221.76 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1204, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 113002, - "ItemNum": 6 - }, - { - "ItemID": 110414, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 171.072 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 285.12 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1204, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 113002, - "ItemNum": 9 - }, - { - "ItemID": 110414, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 209.088 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 145.2 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 348.48 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1204, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 113003, - "ItemNum": 6 - }, - { - "ItemID": 110414, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 247.104 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 171.6 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 411.84 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1204, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 113003, - "ItemNum": 9 - }, - { - "ItemID": 110414, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 285.12 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 198 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 475.2 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1204, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 323.136 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 224.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 538.56 - }, - "HPAdd": { - "Value": 7.92 - }, - "SpeedBase": { - "Value": 99 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1205, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 73.92 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 66 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 184.8 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 97 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1205, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 103.488 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 258.72 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 97 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1205, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 113002, - "ItemNum": 6 - }, - { - "ItemID": 110415, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 133.056 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 332.64 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 97 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1205, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 113002, - "ItemNum": 9 - }, - { - "ItemID": 110415, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 162.624 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 145.2 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 406.56 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 97 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1205, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 113003, - "ItemNum": 6 - }, - { - "ItemID": 110415, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 192.192 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 171.6 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 480.48 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 97 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1205, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 113003, - "ItemNum": 9 - }, - { - "ItemID": 110415, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 221.76 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 198 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 554.4 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 97 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1205, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 251.328 - }, - "AttackAdd": { - "Value": 3.696 - }, - "DefenceBase": { - "Value": 224.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 628.32 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 97 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1206, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 113011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 76.8 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 57 - }, - "DefenceAdd": { - "Value": 2.85 - }, - "HPBase": { - "Value": 124.8 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1206, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 113011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 107.52 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 79.8 - }, - "DefenceAdd": { - "Value": 2.85 - }, - "HPBase": { - "Value": 174.72 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1206, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 113012, - "ItemNum": 5 - }, - { - "ItemID": 110401, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 138.24 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 102.6 - }, - "DefenceAdd": { - "Value": 2.85 - }, - "HPBase": { - "Value": 224.64 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1206, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 113012, - "ItemNum": 8 - }, - { - "ItemID": 110401, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 168.96 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 125.4 - }, - "DefenceAdd": { - "Value": 2.85 - }, - "HPBase": { - "Value": 274.56 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1206, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 113013, - "ItemNum": 5 - }, - { - "ItemID": 110401, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 199.68 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 148.2 - }, - "DefenceAdd": { - "Value": 2.85 - }, - "HPBase": { - "Value": 324.48 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1206, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 113013, - "ItemNum": 7 - }, - { - "ItemID": 110401, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 230.4 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 171 - }, - "DefenceAdd": { - "Value": 2.85 - }, - "HPBase": { - "Value": 374.4 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1206, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 261.12 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 193.8 - }, - "DefenceAdd": { - "Value": 2.85 - }, - "HPBase": { - "Value": 424.32 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1207, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 113011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 81.6 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 51 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 124.8 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1207, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 113011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 114.24 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 71.4 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 174.72 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1207, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 113012, - "ItemNum": 5 - }, - { - "ItemID": 110407, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 146.88 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 91.8 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 224.64 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1207, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 113012, - "ItemNum": 8 - }, - { - "ItemID": 110407, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 179.52 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 112.2 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 274.56 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1207, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 113013, - "ItemNum": 5 - }, - { - "ItemID": 110407, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 212.16 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 132.6 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 324.48 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1207, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 113013, - "ItemNum": 7 - }, - { - "ItemID": 110407, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 244.8 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 153 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 374.4 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1207, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 277.44 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 173.4 - }, - "DefenceAdd": { - "Value": 2.55 - }, - "HPBase": { - "Value": 424.32 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1208, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 63.36 - }, - "AttackAdd": { - "Value": 3.168 - }, - "DefenceBase": { - "Value": 82.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 200.64 - }, - "HPAdd": { - "Value": 10.032 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1208, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 113011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 88.704 - }, - "AttackAdd": { - "Value": 3.168 - }, - "DefenceBase": { - "Value": 115.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 280.896 - }, - "HPAdd": { - "Value": 10.032 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1208, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 113012, - "ItemNum": 6 - }, - { - "ItemID": 110416, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 114.048 - }, - "AttackAdd": { - "Value": 3.168 - }, - "DefenceBase": { - "Value": 148.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 361.152 - }, - "HPAdd": { - "Value": 10.032 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1208, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 113012, - "ItemNum": 9 - }, - { - "ItemID": 110416, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 139.392 - }, - "AttackAdd": { - "Value": 3.168 - }, - "DefenceBase": { - "Value": 181.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 441.408 - }, - "HPAdd": { - "Value": 10.032 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1208, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 113013, - "ItemNum": 6 - }, - { - "ItemID": 110416, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 164.736 - }, - "AttackAdd": { - "Value": 3.168 - }, - "DefenceBase": { - "Value": 214.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 521.664 - }, - "HPAdd": { - "Value": 10.032 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1208, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 113013, - "ItemNum": 9 - }, - { - "ItemID": 110416, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 190.08 - }, - "AttackAdd": { - "Value": 3.168 - }, - "DefenceBase": { - "Value": 247.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 601.92 - }, - "HPAdd": { - "Value": 10.032 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1208, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 215.424 - }, - "AttackAdd": { - "Value": 3.168 - }, - "DefenceBase": { - "Value": 280.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 682.176 - }, - "HPAdd": { - "Value": 10.032 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1209, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 92.4 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 56.1 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 121.44 - }, - "HPAdd": { - "Value": 6.072 - }, - "SpeedBase": { - "Value": 109 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1209, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 111011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 129.36 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 78.54 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 170.016 - }, - "HPAdd": { - "Value": 6.072 - }, - "SpeedBase": { - "Value": 109 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1209, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 111012, - "ItemNum": 6 - }, - { - "ItemID": 110413, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 166.32 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 100.98 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 218.592 - }, - "HPAdd": { - "Value": 6.072 - }, - "SpeedBase": { - "Value": 109 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1209, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 111012, - "ItemNum": 9 - }, - { - "ItemID": 110413, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 203.28 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 123.42 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 267.168 - }, - "HPAdd": { - "Value": 6.072 - }, - "SpeedBase": { - "Value": 109 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1209, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 111013, - "ItemNum": 6 - }, - { - "ItemID": 110413, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 240.24 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 145.86 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 315.744 - }, - "HPAdd": { - "Value": 6.072 - }, - "SpeedBase": { - "Value": 109 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1209, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 111013, - "ItemNum": 9 - }, - { - "ItemID": 110413, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 277.2 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 168.3 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 364.32 - }, - "HPAdd": { - "Value": 6.072 - }, - "SpeedBase": { - "Value": 109 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1209, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 314.16 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 190.74 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 412.896 - }, - "HPAdd": { - "Value": 6.072 - }, - "SpeedBase": { - "Value": 109 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1210, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 113011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 79.2 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 60 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 120 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1210, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 113011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 110.88 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 84 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 168 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1210, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 113012, - "ItemNum": 5 - }, - { - "ItemID": 110412, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 142.56 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 108 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 216 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1210, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 113012, - "ItemNum": 8 - }, - { - "ItemID": 110412, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 174.24 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 132 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 264 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1210, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 113013, - "ItemNum": 5 - }, - { - "ItemID": 110412, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 205.92 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 156 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 312 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1210, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 113013, - "ItemNum": 7 - }, - { - "ItemID": 110412, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 237.6 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 180 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 360 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1210, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 269.28 - }, - "AttackAdd": { - "Value": 3.96 - }, - "DefenceBase": { - "Value": 204 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 408 - }, - "HPAdd": { - "Value": 6 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1211, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 76.56 - }, - "AttackAdd": { - "Value": 3.828 - }, - "DefenceBase": { - "Value": 66 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 179.52 - }, - "HPAdd": { - "Value": 8.976 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1211, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 107.184 - }, - "AttackAdd": { - "Value": 3.828 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 251.328 - }, - "HPAdd": { - "Value": 8.976 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1211, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 111002, - "ItemNum": 6 - }, - { - "ItemID": 110404, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 137.808 - }, - "AttackAdd": { - "Value": 3.828 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 323.136 - }, - "HPAdd": { - "Value": 8.976 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1211, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 111002, - "ItemNum": 9 - }, - { - "ItemID": 110404, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 168.432 - }, - "AttackAdd": { - "Value": 3.828 - }, - "DefenceBase": { - "Value": 145.2 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 394.944 - }, - "HPAdd": { - "Value": 8.976 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1211, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 111003, - "ItemNum": 6 - }, - { - "ItemID": 110404, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 199.056 - }, - "AttackAdd": { - "Value": 3.828 - }, - "DefenceBase": { - "Value": 171.6 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 466.752 - }, - "HPAdd": { - "Value": 8.976 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1211, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 111003, - "ItemNum": 9 - }, - { - "ItemID": 110404, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 229.68 - }, - "AttackAdd": { - "Value": 3.828 - }, - "DefenceBase": { - "Value": 198 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 538.56 - }, - "HPAdd": { - "Value": 8.976 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1211, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 260.304 - }, - "AttackAdd": { - "Value": 3.828 - }, - "DefenceBase": { - "Value": 224.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 610.368 - }, - "HPAdd": { - "Value": 8.976 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1213, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 95.04 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 49.5 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 168.96 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1213, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 133.056 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 69.3 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 236.544 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1213, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 113002, - "ItemNum": 6 - }, - { - "ItemID": 110417, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 171.072 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 89.1 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 304.128 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1213, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 113002, - "ItemNum": 9 - }, - { - "ItemID": 110417, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 209.088 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 108.9 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 371.712 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1213, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 113003, - "ItemNum": 6 - }, - { - "ItemID": 110417, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 247.104 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 128.7 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 439.296 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1213, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 113003, - "ItemNum": 9 - }, - { - "ItemID": 110417, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 285.12 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 148.5 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 506.88 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1213, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 323.136 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 168.3 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 574.464 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1214, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 81.6 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 54 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 144 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1214, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 114.24 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 75.6 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 201.6 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1214, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111002, - "ItemNum": 5 - }, - { - "ItemID": 110416, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 146.88 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 97.2 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 259.2 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1214, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111002, - "ItemNum": 8 - }, - { - "ItemID": 110416, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 179.52 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 316.8 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1214, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111003, - "ItemNum": 5 - }, - { - "ItemID": 110416, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 212.16 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 140.4 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 374.4 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1214, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111003, - "ItemNum": 7 - }, - { - "ItemID": 110416, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 244.8 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 162 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 432 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1214, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 277.44 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 183.6 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 489.6 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1215, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 113011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 76.8 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 48 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 124.8 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1215, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 113011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 107.52 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 67.2 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 174.72 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1215, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 113012, - "ItemNum": 5 - }, - { - "ItemID": 110411, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 138.24 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 86.4 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 224.64 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1215, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 113012, - "ItemNum": 8 - }, - { - "ItemID": 110411, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 168.96 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 105.6 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 274.56 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1215, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 113013, - "ItemNum": 5 - }, - { - "ItemID": 110411, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 199.68 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 124.8 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 324.48 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1215, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 113013, - "ItemNum": 7 - }, - { - "ItemID": 110411, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 230.4 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 144 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 374.4 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1215, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 261.12 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 163.2 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 424.32 - }, - "HPAdd": { - "Value": 6.24 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8001, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 84.48 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 62.7 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 163.68 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8001, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 118.272 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 87.78 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 229.152 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8001, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111012, - "ItemNum": 5 - }, - { - "ItemID": 110400, - "ItemNum": 4 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 152.064 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 112.86 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 294.624 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8001, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111012, - "ItemNum": 8 - }, - { - "ItemID": 110400, - "ItemNum": 6 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 185.856 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 137.94 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 360.096 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8001, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111013, - "ItemNum": 5 - }, - { - "ItemID": 110400, - "ItemNum": 8 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 219.648 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 163.02 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 425.568 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8001, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111013, - "ItemNum": 7 - }, - { - "ItemID": 110400, - "ItemNum": 10 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 253.44 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 188.1 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 491.04 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8001, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 287.232 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 213.18 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 556.512 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8002, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 84.48 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 62.7 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 163.68 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8002, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 118.272 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 87.78 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 229.152 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8002, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111012, - "ItemNum": 5 - }, - { - "ItemID": 110400, - "ItemNum": 4 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 152.064 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 112.86 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 294.624 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8002, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111012, - "ItemNum": 8 - }, - { - "ItemID": 110400, - "ItemNum": 6 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 185.856 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 137.94 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 360.096 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8002, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111013, - "ItemNum": 5 - }, - { - "ItemID": 110400, - "ItemNum": 8 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 219.648 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 163.02 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 425.568 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8002, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111013, - "ItemNum": 7 - }, - { - "ItemID": 110400, - "ItemNum": 10 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 253.44 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 188.1 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 491.04 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8002, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 287.232 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 213.18 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 556.512 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 100 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 8003, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 81.84 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 82.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 168.96 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8003, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 114.576 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 115.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 236.544 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8003, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111012, - "ItemNum": 5 - }, - { - "ItemID": 110400, - "ItemNum": 4 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 147.312 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 148.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 304.128 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8003, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111012, - "ItemNum": 8 - }, - { - "ItemID": 110400, - "ItemNum": 6 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 180.048 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 181.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 371.712 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8003, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111013, - "ItemNum": 5 - }, - { - "ItemID": 110400, - "ItemNum": 8 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 212.784 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 214.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 439.296 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8003, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111013, - "ItemNum": 7 - }, - { - "ItemID": 110400, - "ItemNum": 10 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 245.52 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 247.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 506.88 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8003, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 278.256 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 280.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 574.464 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8004, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 81.84 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 82.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 168.96 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8004, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 114.576 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 115.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 236.544 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8004, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111012, - "ItemNum": 5 - }, - { - "ItemID": 110400, - "ItemNum": 4 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 147.312 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 148.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 304.128 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8004, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111012, - "ItemNum": 8 - }, - { - "ItemID": 110400, - "ItemNum": 6 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 180.048 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 181.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 371.712 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8004, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111013, - "ItemNum": 5 - }, - { - "ItemID": 110400, - "ItemNum": 8 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 212.784 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 214.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 439.296 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8004, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111013, - "ItemNum": 7 - }, - { - "ItemID": 110400, - "ItemNum": 10 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 245.52 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 247.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 506.88 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 8004, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 278.256 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 280.5 - }, - "DefenceAdd": { - "Value": 4.125 - }, - "HPBase": { - "Value": 574.464 - }, - "HPAdd": { - "Value": 8.448 - }, - "SpeedBase": { - "Value": 95 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1302, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 100.32 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 49.5 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 142.56 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1302, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 140.448 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 69.3 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 199.584 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1302, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 111002, - "ItemNum": 6 - }, - { - "ItemID": 110411, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 180.576 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 89.1 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 256.608 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1302, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 111002, - "ItemNum": 9 - }, - { - "ItemID": 110411, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 220.704 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 108.9 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 313.632 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1302, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 111003, - "ItemNum": 6 - }, - { - "ItemID": 110411, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 260.832 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 128.7 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 370.656 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1302, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 111003, - "ItemNum": 9 - }, - { - "ItemID": 110411, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 300.96 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 148.5 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 427.68 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1302, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 341.088 - }, - "AttackAdd": { - "Value": 5.016 - }, - "DefenceBase": { - "Value": 168.3 - }, - "DefenceAdd": { - "Value": 2.475 - }, - "HPBase": { - "Value": 484.704 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1212, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 92.4 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 66 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 195.36 - }, - "HPAdd": { - "Value": 9.768 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1212, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 129.36 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 273.504 - }, - "HPAdd": { - "Value": 9.768 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1212, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 113002, - "ItemNum": 6 - }, - { - "ItemID": 110413, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 166.32 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 351.648 - }, - "HPAdd": { - "Value": 9.768 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1212, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 113002, - "ItemNum": 9 - }, - { - "ItemID": 110413, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 203.28 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 145.2 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 429.792 - }, - "HPAdd": { - "Value": 9.768 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1212, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 113003, - "ItemNum": 6 - }, - { - "ItemID": 110413, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 240.24 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 171.6 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 507.936 - }, - "HPAdd": { - "Value": 9.768 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1212, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 113003, - "ItemNum": 9 - }, - { - "ItemID": 110413, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 277.2 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 198 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 586.08 - }, - "HPAdd": { - "Value": 9.768 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1212, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 314.16 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 224.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 664.224 - }, - "HPAdd": { - "Value": 9.768 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1303, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 89.76 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 66 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 147.84 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1303, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 125.664 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 206.976 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1303, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 113002, - "ItemNum": 6 - }, - { - "ItemID": 110413, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 161.568 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 266.112 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1303, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 113002, - "ItemNum": 9 - }, - { - "ItemID": 110413, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 197.472 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 145.2 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 325.248 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1303, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 113003, - "ItemNum": 6 - }, - { - "ItemID": 110413, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 233.376 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 171.6 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 384.384 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1303, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 113003, - "ItemNum": 9 - }, - { - "ItemID": 110413, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 269.28 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 198 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 443.52 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1303, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 305.184 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 224.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 502.656 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1112, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 84.48 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 56.1 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 126.72 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1112, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 112001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 118.272 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 78.54 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 177.408 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1112, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 112002, - "ItemNum": 6 - }, - { - "ItemID": 110412, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 152.064 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 100.98 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 228.096 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1112, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 112002, - "ItemNum": 9 - }, - { - "ItemID": 110412, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 185.856 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 123.42 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 278.784 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1112, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 112003, - "ItemNum": 6 - }, - { - "ItemID": 110412, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 219.648 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 145.86 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 329.472 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1112, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 112003, - "ItemNum": 9 - }, - { - "ItemID": 110412, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 253.44 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 168.3 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 380.16 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1112, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 287.232 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 190.74 - }, - "DefenceAdd": { - "Value": 2.805 - }, - "HPBase": { - "Value": 430.848 - }, - "HPAdd": { - "Value": 6.336 - }, - "SpeedBase": { - "Value": 110 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1217, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 81.84 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 69.3 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 184.8 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1217, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 114.576 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 97.02 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 258.72 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1217, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 113002, - "ItemNum": 6 - }, - { - "ItemID": 110415, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 147.312 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 124.74 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 332.64 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1217, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 113002, - "ItemNum": 9 - }, - { - "ItemID": 110415, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 180.048 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 152.46 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 406.56 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1217, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 113003, - "ItemNum": 6 - }, - { - "ItemID": 110415, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 212.784 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 180.18 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 480.48 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1217, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 113003, - "ItemNum": 9 - }, - { - "ItemID": 110415, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 245.52 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 207.9 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 554.4 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1217, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 278.256 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 235.62 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 628.32 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1304, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 60.72 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 89.1 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 163.68 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1304, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 114011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 85.008 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 124.74 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 229.152 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1304, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 114012, - "ItemNum": 6 - }, - { - "ItemID": 110417, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 109.296 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 160.38 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 294.624 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1304, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 114012, - "ItemNum": 9 - }, - { - "ItemID": 110417, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 133.584 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 196.02 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 360.096 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1304, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 114013, - "ItemNum": 6 - }, - { - "ItemID": 110417, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 157.872 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 231.66 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 425.568 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1304, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 114013, - "ItemNum": 9 - }, - { - "ItemID": 110417, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 182.16 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 267.3 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 491.04 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1304, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 206.448 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 302.94 - }, - "DefenceAdd": { - "Value": 4.455 - }, - "HPBase": { - "Value": 556.512 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 106 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 150 - } - }, - { - "AvatarID": 1312, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 114001, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 81.6 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 54 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 172.8 - }, - "HPAdd": { - "Value": 8.64 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1312, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 114001, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 114.24 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 75.6 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 241.92 - }, - "HPAdd": { - "Value": 8.64 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1312, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 114002, - "ItemNum": 5 - }, - { - "ItemID": 110423, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 146.88 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 97.2 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 311.04 - }, - "HPAdd": { - "Value": 8.64 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1312, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 114002, - "ItemNum": 8 - }, - { - "ItemID": 110423, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 179.52 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 380.16 - }, - "HPAdd": { - "Value": 8.64 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1312, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 114003, - "ItemNum": 5 - }, - { - "ItemID": 110423, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 212.16 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 140.4 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 449.28 - }, - "HPAdd": { - "Value": 8.64 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1312, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 114003, - "ItemNum": 7 - }, - { - "ItemID": 110423, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 244.8 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 162 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 518.4 - }, - "HPAdd": { - "Value": 8.64 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1312, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 277.44 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 183.6 - }, - "DefenceAdd": { - "Value": 2.7 - }, - "HPBase": { - "Value": 587.52 - }, - "HPAdd": { - "Value": 8.64 - }, - "SpeedBase": { - "Value": 96 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1310, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 71.28 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 105.6 - }, - "DefenceAdd": { - "Value": 5.28 - }, - "HPBase": { - "Value": 110.88 - }, - "HPAdd": { - "Value": 5.544 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1310, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 114011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 99.792 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 147.84 - }, - "DefenceAdd": { - "Value": 5.28 - }, - "HPBase": { - "Value": 155.232 - }, - "HPAdd": { - "Value": 5.544 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1310, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 114012, - "ItemNum": 6 - }, - { - "ItemID": 110422, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 128.304 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 190.08 - }, - "DefenceAdd": { - "Value": 5.28 - }, - "HPBase": { - "Value": 199.584 - }, - "HPAdd": { - "Value": 5.544 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1310, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 114012, - "ItemNum": 9 - }, - { - "ItemID": 110422, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 156.816 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 232.32 - }, - "DefenceAdd": { - "Value": 5.28 - }, - "HPBase": { - "Value": 243.936 - }, - "HPAdd": { - "Value": 5.544 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1310, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 114013, - "ItemNum": 6 - }, - { - "ItemID": 110422, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 185.328 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 274.56 - }, - "DefenceAdd": { - "Value": 5.28 - }, - "HPBase": { - "Value": 288.288 - }, - "HPAdd": { - "Value": 5.544 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1310, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 114013, - "ItemNum": 9 - }, - { - "ItemID": 110422, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 213.84 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 316.8 - }, - "DefenceAdd": { - "Value": 5.28 - }, - "HPBase": { - "Value": 332.64 - }, - "HPAdd": { - "Value": 5.544 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1310, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 242.352 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 359.04 - }, - "DefenceAdd": { - "Value": 5.28 - }, - "HPBase": { - "Value": 376.992 - }, - "HPAdd": { - "Value": 5.544 - }, - "SpeedBase": { - "Value": 104 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1301, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 114001, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 72 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 60 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 177.6 - }, - "HPAdd": { - "Value": 8.88 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1301, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 114001, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 100.8 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 84 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 248.64 - }, - "HPAdd": { - "Value": 8.88 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1301, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 114002, - "ItemNum": 5 - }, - { - "ItemID": 110422, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 129.6 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 108 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 319.68 - }, - "HPAdd": { - "Value": 8.88 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1301, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 114002, - "ItemNum": 8 - }, - { - "ItemID": 110422, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 158.4 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 132 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 390.72 - }, - "HPAdd": { - "Value": 8.88 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1301, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 114003, - "ItemNum": 5 - }, - { - "ItemID": 110422, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 187.2 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 156 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 461.76 - }, - "HPAdd": { - "Value": 8.88 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1301, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 114003, - "ItemNum": 7 - }, - { - "ItemID": 110422, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 216 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 180 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 532.8 - }, - "HPAdd": { - "Value": 8.88 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1301, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 244.8 - }, - "AttackAdd": { - "Value": 3.6 - }, - "DefenceBase": { - "Value": 204 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 603.84 - }, - "HPAdd": { - "Value": 8.88 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1307, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 89.76 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 66 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 147.84 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1307, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 125.664 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 206.976 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1307, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 111002, - "ItemNum": 6 - }, - { - "ItemID": 110415, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 161.568 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 266.112 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1307, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 111002, - "ItemNum": 9 - }, - { - "ItemID": 110415, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 197.472 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 145.2 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 325.248 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1307, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 111003, - "ItemNum": 6 - }, - { - "ItemID": 110415, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 233.376 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 171.6 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 384.384 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1307, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 111003, - "ItemNum": 9 - }, - { - "ItemID": 110415, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 269.28 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 198 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 443.52 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1307, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 305.184 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 224.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 502.656 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1305, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 105.6 - }, - "AttackAdd": { - "Value": 5.28 - }, - "DefenceBase": { - "Value": 62.7 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 142.56 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1305, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 111011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 147.84 - }, - "AttackAdd": { - "Value": 5.28 - }, - "DefenceBase": { - "Value": 87.78 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 199.584 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1305, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 111012, - "ItemNum": 6 - }, - { - "ItemID": 110417, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 190.08 - }, - "AttackAdd": { - "Value": 5.28 - }, - "DefenceBase": { - "Value": 112.86 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 256.608 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1305, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 111012, - "ItemNum": 9 - }, - { - "ItemID": 110417, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 232.32 - }, - "AttackAdd": { - "Value": 5.28 - }, - "DefenceBase": { - "Value": 137.94 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 313.632 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1305, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 111013, - "ItemNum": 6 - }, - { - "ItemID": 110417, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 274.56 - }, - "AttackAdd": { - "Value": 5.28 - }, - "DefenceBase": { - "Value": 163.02 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 370.656 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1305, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 111013, - "ItemNum": 9 - }, - { - "ItemID": 110417, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 316.8 - }, - "AttackAdd": { - "Value": 5.28 - }, - "DefenceBase": { - "Value": 188.1 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 427.68 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1305, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 359.04 - }, - "AttackAdd": { - "Value": 5.28 - }, - "DefenceBase": { - "Value": 213.18 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 484.704 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1308, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 95.04 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 59.4 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 153.12 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1308, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 114001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 133.056 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 83.16 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 214.368 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1308, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 114002, - "ItemNum": 6 - }, - { - "ItemID": 110414, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 171.072 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 106.92 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 275.616 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1308, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 114002, - "ItemNum": 9 - }, - { - "ItemID": 110414, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 209.088 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 130.68 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 336.864 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1308, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 114003, - "ItemNum": 6 - }, - { - "ItemID": 110414, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 247.104 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 154.44 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 398.112 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1308, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 114003, - "ItemNum": 9 - }, - { - "ItemID": 110414, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 285.12 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 178.2 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 459.36 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1308, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 323.136 - }, - "AttackAdd": { - "Value": 4.752 - }, - "DefenceBase": { - "Value": 201.96 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 520.608 - }, - "HPAdd": { - "Value": 7.656 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1315, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 84.48 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 59.4 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 163.68 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1315, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 114011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 118.272 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 83.16 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 229.152 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1315, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 114012, - "ItemNum": 6 - }, - { - "ItemID": 110421, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 152.064 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 106.92 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 294.624 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1315, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 114012, - "ItemNum": 9 - }, - { - "ItemID": 110421, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 185.856 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 130.68 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 360.096 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1315, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 114013, - "ItemNum": 6 - }, - { - "ItemID": 110421, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 219.648 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 154.44 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 425.568 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1315, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 114013, - "ItemNum": 9 - }, - { - "ItemID": 110421, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 253.44 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 178.2 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 491.04 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1315, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 287.232 - }, - "AttackAdd": { - "Value": 4.224 - }, - "DefenceBase": { - "Value": 201.96 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 556.512 - }, - "HPAdd": { - "Value": 8.184 - }, - "SpeedBase": { - "Value": 107 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 8005, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 60.72 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 147.84 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8005, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 85.008 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 129.36 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 206.976 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8005, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111012, - "ItemNum": 5 - }, - { - "ItemID": 110400, - "ItemNum": 4 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 109.296 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 166.32 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 266.112 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8005, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111012, - "ItemNum": 8 - }, - { - "ItemID": 110400, - "ItemNum": 6 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 133.584 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 203.28 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 325.248 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8005, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111013, - "ItemNum": 5 - }, - { - "ItemID": 110400, - "ItemNum": 8 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 157.872 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 240.24 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 384.384 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8005, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111013, - "ItemNum": 7 - }, - { - "ItemID": 110400, - "ItemNum": 10 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 182.16 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 277.2 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 443.52 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8005, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 206.448 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 314.16 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 502.656 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1309, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 87.12 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 66 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 174.24 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1309, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 114001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 121.968 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 243.936 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1309, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 114002, - "ItemNum": 6 - }, - { - "ItemID": 110421, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 156.816 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 313.632 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1309, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 114002, - "ItemNum": 9 - }, - { - "ItemID": 110421, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 191.664 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 145.2 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 383.328 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1309, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 114003, - "ItemNum": 6 - }, - { - "ItemID": 110421, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 226.512 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 171.6 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 453.024 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1309, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 114003, - "ItemNum": 9 - }, - { - "ItemID": 110421, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 261.36 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 198 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 522.72 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1309, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 296.208 - }, - "AttackAdd": { - "Value": 4.356 - }, - "DefenceBase": { - "Value": 224.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 592.416 - }, - "HPAdd": { - "Value": 8.712 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8006, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 60.72 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 147.84 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8006, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 85.008 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 129.36 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 206.976 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8006, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111012, - "ItemNum": 5 - }, - { - "ItemID": 110400, - "ItemNum": 4 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 109.296 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 166.32 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 266.112 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8006, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111012, - "ItemNum": 8 - }, - { - "ItemID": 110400, - "ItemNum": 6 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 133.584 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 203.28 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 325.248 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8006, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111013, - "ItemNum": 5 - }, - { - "ItemID": 110400, - "ItemNum": 8 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 157.872 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 240.24 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 384.384 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8006, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111013, - "ItemNum": 7 - }, - { - "ItemID": 110400, - "ItemNum": 10 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 182.16 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 277.2 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 443.52 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 8006, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 206.448 - }, - "AttackAdd": { - "Value": 3.036 - }, - "DefenceBase": { - "Value": 314.16 - }, - "DefenceAdd": { - "Value": 4.62 - }, - "HPBase": { - "Value": 502.656 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 105 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1314, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 89.76 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 69.3 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 147.84 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1314, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 114001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 125.664 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 97.02 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 206.976 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1314, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 114002, - "ItemNum": 6 - }, - { - "ItemID": 110426, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 161.568 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 124.74 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 266.112 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1314, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 114002, - "ItemNum": 9 - }, - { - "ItemID": 110426, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 197.472 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 152.46 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 325.248 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1314, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 114003, - "ItemNum": 6 - }, - { - "ItemID": 110426, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 233.376 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 180.18 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 384.384 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1314, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 114003, - "ItemNum": 9 - }, - { - "ItemID": 110426, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 269.28 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 207.9 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 443.52 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1314, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 305.184 - }, - "AttackAdd": { - "Value": 4.488 - }, - "DefenceBase": { - "Value": 235.62 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 502.656 - }, - "HPAdd": { - "Value": 7.392 - }, - "SpeedBase": { - "Value": 103 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1306, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 71.28 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 66 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 190.08 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1306, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 114011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 99.792 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 92.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 266.112 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1306, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 114012, - "ItemNum": 6 - }, - { - "ItemID": 110426, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 128.304 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 118.8 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 342.144 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1306, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 114012, - "ItemNum": 9 - }, - { - "ItemID": 110426, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 156.816 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 145.2 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 418.176 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1306, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 114013, - "ItemNum": 6 - }, - { - "ItemID": 110426, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 185.328 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 171.6 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 494.208 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1306, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 114013, - "ItemNum": 9 - }, - { - "ItemID": 110426, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 213.84 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 198 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 570.24 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1306, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 242.352 - }, - "AttackAdd": { - "Value": 3.564 - }, - "DefenceBase": { - "Value": 224.4 - }, - "DefenceAdd": { - "Value": 3.3 - }, - "HPBase": { - "Value": 646.272 - }, - "HPAdd": { - "Value": 9.504 - }, - "SpeedBase": { - "Value": 101 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1218, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 81.84 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 69.3 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 184.8 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1218, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 114.576 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 97.02 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 258.72 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1218, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 113002, - "ItemNum": 6 - }, - { - "ItemID": 110422, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 147.312 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 124.74 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 332.64 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1218, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 113002, - "ItemNum": 9 - }, - { - "ItemID": 110422, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 180.048 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 152.46 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 406.56 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1218, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 113003, - "ItemNum": 6 - }, - { - "ItemID": 110422, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 212.784 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 180.18 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 480.48 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1218, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 113003, - "ItemNum": 9 - }, - { - "ItemID": 110422, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 245.52 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 207.9 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 554.4 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1218, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 278.256 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 235.62 - }, - "DefenceAdd": { - "Value": 3.465 - }, - "HPBase": { - "Value": 628.32 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1224, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 76.8 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 60 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 144 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1224, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 107.52 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 84 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 201.6 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1224, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 111012, - "ItemNum": 5 - }, - { - "ItemID": 110403, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 138.24 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 108 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 259.2 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1224, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 111012, - "ItemNum": 8 - }, - { - "ItemID": 110403, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 168.96 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 132 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 316.8 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1224, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 111013, - "ItemNum": 5 - }, - { - "ItemID": 110403, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 199.68 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 156 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 374.4 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1224, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 111013, - "ItemNum": 7 - }, - { - "ItemID": 110403, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 230.4 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 180 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 432 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1224, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 261.12 - }, - "AttackAdd": { - "Value": 3.84 - }, - "DefenceBase": { - "Value": 204 - }, - "DefenceAdd": { - "Value": 3 - }, - "HPBase": { - "Value": 489.6 - }, - "HPAdd": { - "Value": 7.2 - }, - "SpeedBase": { - "Value": 102 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1221, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 92.4 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 62.7 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 184.8 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1221, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 113011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 129.36 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 87.78 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 258.72 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1221, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 113012, - "ItemNum": 6 - }, - { - "ItemID": 110421, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 166.32 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 112.86 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 332.64 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1221, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 113012, - "ItemNum": 9 - }, - { - "ItemID": 110421, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 203.28 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 137.94 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 406.56 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1221, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 113013, - "ItemNum": 6 - }, - { - "ItemID": 110421, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 240.24 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 163.02 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 480.48 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1221, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 113013, - "ItemNum": 9 - }, - { - "ItemID": 110421, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 277.2 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 188.1 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 554.4 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1221, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 314.16 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 213.18 - }, - "DefenceAdd": { - "Value": 3.135 - }, - "HPBase": { - "Value": 628.32 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 94 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 125 - } - }, - { - "AvatarID": 1220, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113011, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 81.84 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 52.8 - }, - "DefenceAdd": { - "Value": 2.64 - }, - "HPBase": { - "Value": 142.56 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1220, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 113011, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 114.576 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 73.92 - }, - "DefenceAdd": { - "Value": 2.64 - }, - "HPBase": { - "Value": 199.584 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1220, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 113012, - "ItemNum": 6 - }, - { - "ItemID": 110425, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 147.312 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 95.04 - }, - "DefenceAdd": { - "Value": 2.64 - }, - "HPBase": { - "Value": 256.608 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1220, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 113012, - "ItemNum": 9 - }, - { - "ItemID": 110425, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 180.048 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 116.16 - }, - "DefenceAdd": { - "Value": 2.64 - }, - "HPBase": { - "Value": 313.632 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1220, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 113013, - "ItemNum": 6 - }, - { - "ItemID": 110425, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 212.784 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 137.28 - }, - "DefenceAdd": { - "Value": 2.64 - }, - "HPBase": { - "Value": 370.656 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1220, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 113013, - "ItemNum": 9 - }, - { - "ItemID": 110425, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 245.52 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 158.4 - }, - "DefenceAdd": { - "Value": 2.64 - }, - "HPBase": { - "Value": 427.68 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1220, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 278.256 - }, - "AttackAdd": { - "Value": 4.092 - }, - "DefenceBase": { - "Value": 179.52 - }, - "DefenceAdd": { - "Value": 2.64 - }, - "HPBase": { - "Value": 484.704 - }, - "HPAdd": { - "Value": 7.128 - }, - "SpeedBase": { - "Value": 112 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1223, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3200 - }, - { - "ItemID": 113011, - "ItemNum": 4 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 81.6 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 48 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 110.4 - }, - "HPAdd": { - "Value": 5.52 - }, - "SpeedBase": { - "Value": 111 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1223, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6400 - }, - { - "ItemID": 113011, - "ItemNum": 8 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 114.24 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 67.2 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 154.56 - }, - "HPAdd": { - "Value": 5.52 - }, - "SpeedBase": { - "Value": 111 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1223, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12800 - }, - { - "ItemID": 113012, - "ItemNum": 5 - }, - { - "ItemID": 110424, - "ItemNum": 2 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 146.88 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 86.4 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 198.72 - }, - "HPAdd": { - "Value": 5.52 - }, - "SpeedBase": { - "Value": 111 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1223, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 32000 - }, - { - "ItemID": 113012, - "ItemNum": 8 - }, - { - "ItemID": 110424, - "ItemNum": 5 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 179.52 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 105.6 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 242.88 - }, - "HPAdd": { - "Value": 5.52 - }, - "SpeedBase": { - "Value": 111 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1223, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 64000 - }, - { - "ItemID": 113013, - "ItemNum": 5 - }, - { - "ItemID": 110424, - "ItemNum": 15 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 212.16 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 124.8 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 287.04 - }, - "HPAdd": { - "Value": 5.52 - }, - "SpeedBase": { - "Value": 111 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1223, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 128000 - }, - { - "ItemID": 113013, - "ItemNum": 7 - }, - { - "ItemID": 110424, - "ItemNum": 28 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 244.8 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 144 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 331.2 - }, - "HPAdd": { - "Value": 5.52 - }, - "SpeedBase": { - "Value": 111 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1223, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 277.44 - }, - "AttackAdd": { - "Value": 4.08 - }, - "DefenceBase": { - "Value": 163.2 - }, - "DefenceAdd": { - "Value": 2.4 - }, - "HPBase": { - "Value": 375.36 - }, - "HPAdd": { - "Value": 5.52 - }, - "SpeedBase": { - "Value": 111 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 75 - } - }, - { - "AvatarID": 1222, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "MaxLevel": 20, - "PlayerLevelRequire": 15, - "AttackBase": { - "Value": 92.4 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 59.4 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 184.8 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1222, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "MaxLevel": 30, - "WorldLevelRequire": 1, - "AttackBase": { - "Value": 129.36 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 83.16 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 258.72 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1222, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 113002, - "ItemNum": 6 - }, - { - "ItemID": 110422, - "ItemNum": 3 - } - ], - "MaxLevel": 40, - "WorldLevelRequire": 2, - "AttackBase": { - "Value": 166.32 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 106.92 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 332.64 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1222, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 113002, - "ItemNum": 9 - }, - { - "ItemID": 110422, - "ItemNum": 7 - } - ], - "MaxLevel": 50, - "WorldLevelRequire": 3, - "AttackBase": { - "Value": 203.28 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 130.68 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 406.56 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1222, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 113003, - "ItemNum": 6 - }, - { - "ItemID": 110422, - "ItemNum": 20 - } - ], - "MaxLevel": 60, - "WorldLevelRequire": 4, - "AttackBase": { - "Value": 240.24 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 154.44 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 480.48 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1222, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 113003, - "ItemNum": 9 - }, - { - "ItemID": 110422, - "ItemNum": 35 - } - ], - "MaxLevel": 70, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 277.2 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 178.2 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 554.4 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - }, - { - "AvatarID": 1222, - "Promotion": 6, - "PromotionCostList": [], - "MaxLevel": 80, - "WorldLevelRequire": 5, - "AttackBase": { - "Value": 314.16 - }, - "AttackAdd": { - "Value": 4.62 - }, - "DefenceBase": { - "Value": 201.96 - }, - "DefenceAdd": { - "Value": 2.97 - }, - "HPBase": { - "Value": 628.32 - }, - "HPAdd": { - "Value": 9.24 - }, - "SpeedBase": { - "Value": 98 - }, - "CriticalChance": { - "Value": 0.05 - }, - "CriticalDamage": { - "Value": 0.5 - }, - "BaseAggro": { - "Value": 100 - } - } -] \ No newline at end of file diff --git a/StarRailUID/utils/excel/EquipmentPromotionConfig.json b/StarRailUID/utils/excel/EquipmentPromotionConfig.json deleted file mode 100644 index 96ec04c..0000000 --- a/StarRailUID/utils/excel/EquipmentPromotionConfig.json +++ /dev/null @@ -1,27282 +0,0 @@ -[ - { - "EquipmentID": 20000, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 14.4 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20000, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110121, - "ItemNum": 2 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 31.68 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20000, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110122, - "ItemNum": 2 - }, - { - "ItemID": 111012, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 54.72 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20000, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110122, - "ItemNum": 4 - }, - { - "ItemID": 111012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 77.76 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20000, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110123, - "ItemNum": 3 - }, - { - "ItemID": 111013, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 100.8 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20000, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110123, - "ItemNum": 6 - }, - { - "ItemID": 111013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 123.84 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20000, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 146.88 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20001, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 112001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 12 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20001, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110171, - "ItemNum": 2 - }, - { - "ItemID": 112001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20001, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110172, - "ItemNum": 2 - }, - { - "ItemID": 112002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 45.6 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20001, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110172, - "ItemNum": 4 - }, - { - "ItemID": 112002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 64.8 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20001, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110173, - "ItemNum": 3 - }, - { - "ItemID": 112003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 84 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20001, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110173, - "ItemNum": 6 - }, - { - "ItemID": 112003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.2 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20001, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 122.4 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20002, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 9 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20002, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110111, - "ItemNum": 2 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 19.8 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20002, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110112, - "ItemNum": 2 - }, - { - "ItemID": 111012, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 34.2 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20002, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110112, - "ItemNum": 4 - }, - { - "ItemID": 111012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 48.6 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20002, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110113, - "ItemNum": 3 - }, - { - "ItemID": 111013, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 63 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20002, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110113, - "ItemNum": 6 - }, - { - "ItemID": 111013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 77.4 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20002, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 91.8 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20003, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 12 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 20003, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110141, - "ItemNum": 2 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 20003, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110142, - "ItemNum": 2 - }, - { - "ItemID": 111002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 45.6 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 20003, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110142, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 64.8 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 20003, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110143, - "ItemNum": 3 - }, - { - "ItemID": 111003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 84 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 20003, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110143, - "ItemNum": 6 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 103.2 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 20003, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 122.4 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 20004, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 112011, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 14.4 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20004, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110151, - "ItemNum": 2 - }, - { - "ItemID": 112011, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 31.68 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20004, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110152, - "ItemNum": 2 - }, - { - "ItemID": 112012, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 54.72 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20004, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110152, - "ItemNum": 4 - }, - { - "ItemID": 112012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 77.76 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20004, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110153, - "ItemNum": 3 - }, - { - "ItemID": 112013, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 100.8 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20004, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110153, - "ItemNum": 6 - }, - { - "ItemID": 112013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 123.84 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20004, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 146.88 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20005, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 112001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 14.4 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20005, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110161, - "ItemNum": 2 - }, - { - "ItemID": 112001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 31.68 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20005, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110162, - "ItemNum": 2 - }, - { - "ItemID": 112002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 54.72 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20005, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110162, - "ItemNum": 4 - }, - { - "ItemID": 112002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 77.76 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20005, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110163, - "ItemNum": 3 - }, - { - "ItemID": 112003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 100.8 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20005, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110163, - "ItemNum": 6 - }, - { - "ItemID": 112003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 123.84 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20005, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 146.88 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20006, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 33.6 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20006, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110131, - "ItemNum": 2 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 73.92 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20006, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110132, - "ItemNum": 2 - }, - { - "ItemID": 111002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 127.68 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20006, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110132, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 181.44 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20006, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110133, - "ItemNum": 3 - }, - { - "ItemID": 111003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 235.2 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20006, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110133, - "ItemNum": 6 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 288.96 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20006, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 342.72 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20007, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 112001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 33.6 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20007, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110121, - "ItemNum": 2 - }, - { - "ItemID": 112001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 73.92 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20007, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110122, - "ItemNum": 2 - }, - { - "ItemID": 112002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 127.68 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20007, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110122, - "ItemNum": 4 - }, - { - "ItemID": 112002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 181.44 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20007, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110123, - "ItemNum": 3 - }, - { - "ItemID": 112003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 235.2 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20007, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110123, - "ItemNum": 6 - }, - { - "ItemID": 112003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 288.96 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20007, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 342.72 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20008, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 14.4 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 9 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20008, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110171, - "ItemNum": 2 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 31.68 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 19.8 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20008, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110172, - "ItemNum": 2 - }, - { - "ItemID": 111002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 54.72 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 34.2 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20008, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110172, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 77.76 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 48.6 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20008, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110173, - "ItemNum": 3 - }, - { - "ItemID": 111003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 100.8 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 63 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20008, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110173, - "ItemNum": 6 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 123.84 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 77.4 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20008, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 146.88 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 91.8 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20009, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 9 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20009, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110111, - "ItemNum": 2 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 19.8 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20009, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110112, - "ItemNum": 2 - }, - { - "ItemID": 111002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 34.2 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20009, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110112, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 48.6 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20009, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110113, - "ItemNum": 3 - }, - { - "ItemID": 111003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 63 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20009, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110113, - "ItemNum": 6 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 77.4 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20009, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 91.8 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20010, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 12 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20010, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110141, - "ItemNum": 2 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20010, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110142, - "ItemNum": 2 - }, - { - "ItemID": 111012, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 45.6 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20010, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110142, - "ItemNum": 4 - }, - { - "ItemID": 111012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 64.8 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20010, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110143, - "ItemNum": 3 - }, - { - "ItemID": 111013, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 84 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20010, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110143, - "ItemNum": 6 - }, - { - "ItemID": 111013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.2 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20010, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 122.4 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20011, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 112011, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 14.4 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20011, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110151, - "ItemNum": 2 - }, - { - "ItemID": 112011, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 31.68 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20011, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110152, - "ItemNum": 2 - }, - { - "ItemID": 112012, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 54.72 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20011, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110152, - "ItemNum": 4 - }, - { - "ItemID": 112012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 77.76 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20011, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110153, - "ItemNum": 3 - }, - { - "ItemID": 112013, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 100.8 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20011, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110153, - "ItemNum": 6 - }, - { - "ItemID": 112013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 123.84 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20011, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 146.88 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20012, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 112001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 14.4 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20012, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110161, - "ItemNum": 2 - }, - { - "ItemID": 112001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 31.68 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20012, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110162, - "ItemNum": 2 - }, - { - "ItemID": 112002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 54.72 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20012, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110162, - "ItemNum": 4 - }, - { - "ItemID": 112002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 77.76 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20012, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110163, - "ItemNum": 3 - }, - { - "ItemID": 112003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 100.8 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20012, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110163, - "ItemNum": 6 - }, - { - "ItemID": 112003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 123.84 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20012, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 146.88 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20013, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 33.6 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20013, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110131, - "ItemNum": 2 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 73.92 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20013, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110132, - "ItemNum": 2 - }, - { - "ItemID": 111002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 127.68 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20013, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110132, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 181.44 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20013, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110133, - "ItemNum": 3 - }, - { - "ItemID": 111003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 235.2 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20013, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110133, - "ItemNum": 6 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 288.96 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20013, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 342.72 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20014, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 112011, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 33.6 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20014, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110121, - "ItemNum": 2 - }, - { - "ItemID": 112011, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 73.92 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20014, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110122, - "ItemNum": 2 - }, - { - "ItemID": 112012, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 127.68 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20014, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110122, - "ItemNum": 4 - }, - { - "ItemID": 112012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 181.44 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20014, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110123, - "ItemNum": 3 - }, - { - "ItemID": 112013, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 235.2 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20014, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110123, - "ItemNum": 6 - }, - { - "ItemID": 112013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 288.96 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20014, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 342.72 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20015, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 113001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 14.4 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 9 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20015, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110171, - "ItemNum": 2 - }, - { - "ItemID": 113001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 31.68 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 19.8 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20015, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110172, - "ItemNum": 2 - }, - { - "ItemID": 113002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 54.72 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 34.2 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20015, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110172, - "ItemNum": 4 - }, - { - "ItemID": 113002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 77.76 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 48.6 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20015, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110173, - "ItemNum": 3 - }, - { - "ItemID": 113003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 100.8 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 63 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20015, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110173, - "ItemNum": 6 - }, - { - "ItemID": 113003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 123.84 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 77.4 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20015, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 146.88 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 91.8 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20016, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 112001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 9 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20016, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110111, - "ItemNum": 2 - }, - { - "ItemID": 112001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 19.8 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20016, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110112, - "ItemNum": 2 - }, - { - "ItemID": 112002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 34.2 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20016, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110112, - "ItemNum": 4 - }, - { - "ItemID": 112002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 48.6 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20016, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110113, - "ItemNum": 3 - }, - { - "ItemID": 112003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 63 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20016, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110113, - "ItemNum": 6 - }, - { - "ItemID": 112003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 77.4 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20016, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 91.8 - }, - "BaseDefenceAdd": { - "Value": 1.35 - } - }, - { - "EquipmentID": 20017, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 12 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20017, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110141, - "ItemNum": 2 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20017, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110142, - "ItemNum": 2 - }, - { - "ItemID": 111002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 45.6 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20017, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110142, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 64.8 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20017, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110143, - "ItemNum": 3 - }, - { - "ItemID": 111003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 84 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20017, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110143, - "ItemNum": 6 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.2 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20017, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 122.4 - }, - "BaseAttackAdd": { - "Value": 1.8 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20018, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 113011, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 14.4 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20018, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110151, - "ItemNum": 2 - }, - { - "ItemID": 113011, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 31.68 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20018, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110152, - "ItemNum": 2 - }, - { - "ItemID": 113012, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 54.72 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20018, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110152, - "ItemNum": 4 - }, - { - "ItemID": 113012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 77.76 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20018, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110153, - "ItemNum": 3 - }, - { - "ItemID": 113013, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 100.8 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20018, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110153, - "ItemNum": 6 - }, - { - "ItemID": 113013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 123.84 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20018, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 146.88 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20019, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 111001, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 14.4 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20019, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110161, - "ItemNum": 2 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 31.68 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20019, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110162, - "ItemNum": 2 - }, - { - "ItemID": 111002, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 54.72 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20019, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110162, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 77.76 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20019, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110163, - "ItemNum": 3 - }, - { - "ItemID": 111003, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 100.8 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20019, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110163, - "ItemNum": 6 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 123.84 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20019, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 146.88 - }, - "BaseAttackAdd": { - "Value": 2.16 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20020, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 3000 - }, - { - "ItemID": 111011, - "ItemNum": 4 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 33.6 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20020, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 6000 - }, - { - "ItemID": 110131, - "ItemNum": 2 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 73.92 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20020, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 12000 - }, - { - "ItemID": 110132, - "ItemNum": 2 - }, - { - "ItemID": 111012, - "ItemNum": 4 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 127.68 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20020, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 30000 - }, - { - "ItemID": 110132, - "ItemNum": 4 - }, - { - "ItemID": 111012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 181.44 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20020, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 60000 - }, - { - "ItemID": 110133, - "ItemNum": 3 - }, - { - "ItemID": 111013, - "ItemNum": 3 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 235.2 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20020, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 120000 - }, - { - "ItemID": 110133, - "ItemNum": 6 - }, - { - "ItemID": 111013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 288.96 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 20020, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 342.72 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21000, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21000, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110171, - "ItemNum": 3 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21000, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110172, - "ItemNum": 3 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21000, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110172, - "ItemNum": 6 - }, - { - "ItemID": 111002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21000, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110173, - "ItemNum": 4 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21000, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110173, - "ItemNum": 8 - }, - { - "ItemID": 111003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21000, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21001, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21001, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110151, - "ItemNum": 3 - }, - { - "ItemID": 112001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21001, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110152, - "ItemNum": 3 - }, - { - "ItemID": 112002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21001, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110152, - "ItemNum": 6 - }, - { - "ItemID": 112002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21001, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110153, - "ItemNum": 4 - }, - { - "ItemID": 112003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21001, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110153, - "ItemNum": 8 - }, - { - "ItemID": 112003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21001, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21002, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21002, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110141, - "ItemNum": 3 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21002, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110142, - "ItemNum": 3 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21002, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110142, - "ItemNum": 6 - }, - { - "ItemID": 111002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21002, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110143, - "ItemNum": 4 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21002, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110143, - "ItemNum": 8 - }, - { - "ItemID": 111003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21002, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21003, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21003, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110121, - "ItemNum": 3 - }, - { - "ItemID": 112001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21003, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110122, - "ItemNum": 3 - }, - { - "ItemID": 112002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21003, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110122, - "ItemNum": 6 - }, - { - "ItemID": 112002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21003, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110123, - "ItemNum": 4 - }, - { - "ItemID": 112003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21003, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110123, - "ItemNum": 8 - }, - { - "ItemID": 112003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21003, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21004, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21004, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110161, - "ItemNum": 3 - }, - { - "ItemID": 112001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21004, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110162, - "ItemNum": 3 - }, - { - "ItemID": 112002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21004, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110162, - "ItemNum": 6 - }, - { - "ItemID": 112002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21004, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110163, - "ItemNum": 4 - }, - { - "ItemID": 112003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21004, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110163, - "ItemNum": 8 - }, - { - "ItemID": 112003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21004, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21005, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21005, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110111, - "ItemNum": 3 - }, - { - "ItemID": 111011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21005, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110112, - "ItemNum": 3 - }, - { - "ItemID": 111012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21005, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110112, - "ItemNum": 6 - }, - { - "ItemID": 111012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21005, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110113, - "ItemNum": 4 - }, - { - "ItemID": 111013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21005, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110113, - "ItemNum": 8 - }, - { - "ItemID": 111013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21005, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21006, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21006, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110131, - "ItemNum": 3 - }, - { - "ItemID": 112011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21006, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110132, - "ItemNum": 3 - }, - { - "ItemID": 112012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21006, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110132, - "ItemNum": 6 - }, - { - "ItemID": 112012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21006, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110133, - "ItemNum": 4 - }, - { - "ItemID": 112013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21006, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110133, - "ItemNum": 8 - }, - { - "ItemID": 112013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21006, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21008, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21008, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110151, - "ItemNum": 3 - }, - { - "ItemID": 112011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21008, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110152, - "ItemNum": 3 - }, - { - "ItemID": 112012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21008, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110152, - "ItemNum": 6 - }, - { - "ItemID": 112012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21008, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110153, - "ItemNum": 4 - }, - { - "ItemID": 112013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21008, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110153, - "ItemNum": 8 - }, - { - "ItemID": 112013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21008, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21009, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21009, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110141, - "ItemNum": 3 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21009, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110142, - "ItemNum": 3 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21009, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110142, - "ItemNum": 6 - }, - { - "ItemID": 111002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21009, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110143, - "ItemNum": 4 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21009, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110143, - "ItemNum": 8 - }, - { - "ItemID": 111003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21009, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21010, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21010, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110121, - "ItemNum": 3 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21010, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110122, - "ItemNum": 3 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21010, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110122, - "ItemNum": 6 - }, - { - "ItemID": 111002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21010, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110123, - "ItemNum": 4 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21010, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110123, - "ItemNum": 8 - }, - { - "ItemID": 111003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21010, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21011, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21011, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110161, - "ItemNum": 3 - }, - { - "ItemID": 111011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21011, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110162, - "ItemNum": 3 - }, - { - "ItemID": 111012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21011, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110162, - "ItemNum": 6 - }, - { - "ItemID": 111012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21011, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110163, - "ItemNum": 4 - }, - { - "ItemID": 111013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21011, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110163, - "ItemNum": 8 - }, - { - "ItemID": 111013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21011, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21012, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21012, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110111, - "ItemNum": 3 - }, - { - "ItemID": 112001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21012, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110112, - "ItemNum": 3 - }, - { - "ItemID": 112002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21012, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110112, - "ItemNum": 6 - }, - { - "ItemID": 112002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21012, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110113, - "ItemNum": 4 - }, - { - "ItemID": 112003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21012, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110113, - "ItemNum": 8 - }, - { - "ItemID": 112003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21012, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21013, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21013, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110131, - "ItemNum": 3 - }, - { - "ItemID": 112011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21013, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110132, - "ItemNum": 3 - }, - { - "ItemID": 112012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21013, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110132, - "ItemNum": 6 - }, - { - "ItemID": 112012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21013, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110133, - "ItemNum": 4 - }, - { - "ItemID": 112013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21013, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110133, - "ItemNum": 8 - }, - { - "ItemID": 112013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21013, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21014, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21014, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110171, - "ItemNum": 3 - }, - { - "ItemID": 113011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21014, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110172, - "ItemNum": 3 - }, - { - "ItemID": 113012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21014, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110172, - "ItemNum": 6 - }, - { - "ItemID": 113012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21014, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110173, - "ItemNum": 4 - }, - { - "ItemID": 113013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21014, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110173, - "ItemNum": 8 - }, - { - "ItemID": 113013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21014, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21015, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21015, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110151, - "ItemNum": 3 - }, - { - "ItemID": 113011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21015, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110152, - "ItemNum": 3 - }, - { - "ItemID": 113012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21015, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110152, - "ItemNum": 6 - }, - { - "ItemID": 113012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21015, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110153, - "ItemNum": 4 - }, - { - "ItemID": 113013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21015, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110153, - "ItemNum": 8 - }, - { - "ItemID": 113013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21015, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21016, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21016, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110141, - "ItemNum": 3 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21016, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110142, - "ItemNum": 3 - }, - { - "ItemID": 113002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21016, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110142, - "ItemNum": 6 - }, - { - "ItemID": 113002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21016, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110143, - "ItemNum": 4 - }, - { - "ItemID": 113003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21016, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110143, - "ItemNum": 8 - }, - { - "ItemID": 113003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21016, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21017, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21017, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110121, - "ItemNum": 3 - }, - { - "ItemID": 113011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21017, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110122, - "ItemNum": 3 - }, - { - "ItemID": 113012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21017, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110122, - "ItemNum": 6 - }, - { - "ItemID": 113012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21017, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110123, - "ItemNum": 4 - }, - { - "ItemID": 113013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21017, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110123, - "ItemNum": 8 - }, - { - "ItemID": 113013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21017, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21018, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21018, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110161, - "ItemNum": 3 - }, - { - "ItemID": 113011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21018, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110162, - "ItemNum": 3 - }, - { - "ItemID": 113012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21018, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110162, - "ItemNum": 6 - }, - { - "ItemID": 113012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21018, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110163, - "ItemNum": 4 - }, - { - "ItemID": 113013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21018, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110163, - "ItemNum": 8 - }, - { - "ItemID": 113013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21018, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21019, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21019, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110111, - "ItemNum": 3 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21019, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110112, - "ItemNum": 3 - }, - { - "ItemID": 113002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21019, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110112, - "ItemNum": 6 - }, - { - "ItemID": 113002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21019, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110113, - "ItemNum": 4 - }, - { - "ItemID": 113003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21019, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110113, - "ItemNum": 8 - }, - { - "ItemID": 113003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21019, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21020, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21020, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110131, - "ItemNum": 3 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21020, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110132, - "ItemNum": 3 - }, - { - "ItemID": 113002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21020, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110132, - "ItemNum": 6 - }, - { - "ItemID": 113002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21020, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110133, - "ItemNum": 4 - }, - { - "ItemID": 113003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21020, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110133, - "ItemNum": 8 - }, - { - "ItemID": 113003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21020, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21021, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21021, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110171, - "ItemNum": 3 - }, - { - "ItemID": 112001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21021, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110172, - "ItemNum": 3 - }, - { - "ItemID": 112002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21021, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110172, - "ItemNum": 6 - }, - { - "ItemID": 112002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21021, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110173, - "ItemNum": 4 - }, - { - "ItemID": 112003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21021, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110173, - "ItemNum": 8 - }, - { - "ItemID": 112003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21021, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21022, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21022, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110151, - "ItemNum": 3 - }, - { - "ItemID": 112001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21022, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110152, - "ItemNum": 3 - }, - { - "ItemID": 112002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21022, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110152, - "ItemNum": 6 - }, - { - "ItemID": 112002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21022, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110153, - "ItemNum": 4 - }, - { - "ItemID": 112003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21022, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110153, - "ItemNum": 8 - }, - { - "ItemID": 112003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21022, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21023, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 33.6 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21023, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110141, - "ItemNum": 3 - }, - { - "ItemID": 112011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 73.92 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21023, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110142, - "ItemNum": 3 - }, - { - "ItemID": 112012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 127.68 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21023, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110142, - "ItemNum": 6 - }, - { - "ItemID": 112012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 181.44 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21023, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110143, - "ItemNum": 4 - }, - { - "ItemID": 112013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 235.2 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21023, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110143, - "ItemNum": 8 - }, - { - "ItemID": 112013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 288.96 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21023, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 342.72 - }, - "BaseHPAdd": { - "Value": 5.04 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21024, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21024, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110121, - "ItemNum": 3 - }, - { - "ItemID": 112011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21024, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110122, - "ItemNum": 3 - }, - { - "ItemID": 112012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21024, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110122, - "ItemNum": 6 - }, - { - "ItemID": 112012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21024, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110123, - "ItemNum": 4 - }, - { - "ItemID": 112013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21024, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110123, - "ItemNum": 8 - }, - { - "ItemID": 112013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21024, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21026, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21026, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110111, - "ItemNum": 3 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21026, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110112, - "ItemNum": 3 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21026, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110112, - "ItemNum": 6 - }, - { - "ItemID": 111002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21026, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110113, - "ItemNum": 4 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21026, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110113, - "ItemNum": 8 - }, - { - "ItemID": 111003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21026, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21027, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21027, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110131, - "ItemNum": 3 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21027, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110132, - "ItemNum": 3 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21027, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110132, - "ItemNum": 6 - }, - { - "ItemID": 111002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21027, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110133, - "ItemNum": 4 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21027, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110133, - "ItemNum": 8 - }, - { - "ItemID": 111003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21027, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21028, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21028, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110171, - "ItemNum": 3 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21028, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110172, - "ItemNum": 3 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21028, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110172, - "ItemNum": 6 - }, - { - "ItemID": 111002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21028, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110173, - "ItemNum": 4 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21028, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110173, - "ItemNum": 8 - }, - { - "ItemID": 111003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21028, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21029, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 24 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21029, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110151, - "ItemNum": 3 - }, - { - "ItemID": 112011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 52.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21029, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110152, - "ItemNum": 3 - }, - { - "ItemID": 112012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 91.2 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21029, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110152, - "ItemNum": 6 - }, - { - "ItemID": 112012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 129.6 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21029, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110153, - "ItemNum": 4 - }, - { - "ItemID": 112013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 168 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21029, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110153, - "ItemNum": 8 - }, - { - "ItemID": 112013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 206.4 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21029, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 244.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21030, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 24 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 21030, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110141, - "ItemNum": 3 - }, - { - "ItemID": 111011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 52.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 21030, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110142, - "ItemNum": 3 - }, - { - "ItemID": 111012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 91.2 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 21030, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110142, - "ItemNum": 6 - }, - { - "ItemID": 111012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 129.6 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 21030, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110143, - "ItemNum": 4 - }, - { - "ItemID": 111013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 168 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 21030, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110143, - "ItemNum": 8 - }, - { - "ItemID": 111013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 206.4 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 21030, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 244.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 21031, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 24 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21031, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110121, - "ItemNum": 3 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 52.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21031, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110122, - "ItemNum": 3 - }, - { - "ItemID": 113002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 91.2 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21031, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110122, - "ItemNum": 6 - }, - { - "ItemID": 113002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 129.6 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21031, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110123, - "ItemNum": 4 - }, - { - "ItemID": 113003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 168 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21031, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110123, - "ItemNum": 8 - }, - { - "ItemID": 113003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 206.4 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21031, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 244.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21032, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21032, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110161, - "ItemNum": 3 - }, - { - "ItemID": 111011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21032, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110162, - "ItemNum": 3 - }, - { - "ItemID": 111012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21032, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110162, - "ItemNum": 6 - }, - { - "ItemID": 111012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21032, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110163, - "ItemNum": 4 - }, - { - "ItemID": 111013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21032, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110163, - "ItemNum": 8 - }, - { - "ItemID": 111013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21032, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21033, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 112001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 24 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21033, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110111, - "ItemNum": 3 - }, - { - "ItemID": 112001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 52.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21033, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110112, - "ItemNum": 3 - }, - { - "ItemID": 112002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 91.2 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21033, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110112, - "ItemNum": 6 - }, - { - "ItemID": 112002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 129.6 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21033, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110113, - "ItemNum": 4 - }, - { - "ItemID": 112003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 168 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21033, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110113, - "ItemNum": 8 - }, - { - "ItemID": 112003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 206.4 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21033, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 244.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21034, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 24 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21034, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110131, - "ItemNum": 3 - }, - { - "ItemID": 113001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 52.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21034, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110132, - "ItemNum": 3 - }, - { - "ItemID": 113002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 91.2 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21034, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110132, - "ItemNum": 6 - }, - { - "ItemID": 113002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 129.6 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21034, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110133, - "ItemNum": 4 - }, - { - "ItemID": 113003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 168 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21034, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110133, - "ItemNum": 8 - }, - { - "ItemID": 113003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 206.4 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21034, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 244.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22000, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22000, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110151, - "ItemNum": 3 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22000, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110152, - "ItemNum": 3 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22000, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110152, - "ItemNum": 6 - }, - { - "ItemID": 111002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22000, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110153, - "ItemNum": 4 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22000, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110153, - "ItemNum": 8 - }, - { - "ItemID": 111003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22000, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 23000, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 52.8 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23000, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110131, - "ItemNum": 4 - }, - { - "ItemID": 111001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 116.16 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23000, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110132, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 200.64 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23000, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110132, - "ItemNum": 8 - }, - { - "ItemID": 111002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 285.12 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23000, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110133, - "ItemNum": 5 - }, - { - "ItemID": 111003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 369.6 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23000, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110133, - "ItemNum": 10 - }, - { - "ItemID": 111003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 454.08 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23000, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 538.56 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23001, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23001, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110121, - "ItemNum": 4 - }, - { - "ItemID": 111011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23001, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110122, - "ItemNum": 4 - }, - { - "ItemID": 111012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23001, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110122, - "ItemNum": 8 - }, - { - "ItemID": 111012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23001, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110123, - "ItemNum": 5 - }, - { - "ItemID": 111013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23001, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110123, - "ItemNum": 10 - }, - { - "ItemID": 111013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23001, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23002, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 112011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 52.8 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23002, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110111, - "ItemNum": 4 - }, - { - "ItemID": 112011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 116.16 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23002, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110112, - "ItemNum": 4 - }, - { - "ItemID": 112012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 200.64 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23002, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110112, - "ItemNum": 8 - }, - { - "ItemID": 112012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 285.12 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23002, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110113, - "ItemNum": 5 - }, - { - "ItemID": 112013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 369.6 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23002, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110113, - "ItemNum": 10 - }, - { - "ItemID": 112013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 454.08 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23002, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 538.56 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23003, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 112001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 52.8 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 24 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23003, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110161, - "ItemNum": 4 - }, - { - "ItemID": 112001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 116.16 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 52.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23003, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110162, - "ItemNum": 4 - }, - { - "ItemID": 112002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 200.64 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 91.2 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23003, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110162, - "ItemNum": 8 - }, - { - "ItemID": 112002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 285.12 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 129.6 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23003, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110163, - "ItemNum": 5 - }, - { - "ItemID": 112003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 369.6 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 168 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23003, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110163, - "ItemNum": 10 - }, - { - "ItemID": 112003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 454.08 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 206.4 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23003, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 538.56 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 244.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23004, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 112001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23004, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110151, - "ItemNum": 4 - }, - { - "ItemID": 112001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23004, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110152, - "ItemNum": 4 - }, - { - "ItemID": 112002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23004, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110152, - "ItemNum": 8 - }, - { - "ItemID": 112002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23004, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110153, - "ItemNum": 5 - }, - { - "ItemID": 112003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23004, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110153, - "ItemNum": 10 - }, - { - "ItemID": 112003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23004, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23005, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 112001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 27 - }, - "BaseDefenceAdd": { - "Value": 4.05 - } - }, - { - "EquipmentID": 23005, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110141, - "ItemNum": 4 - }, - { - "ItemID": 112001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 59.4 - }, - "BaseDefenceAdd": { - "Value": 4.05 - } - }, - { - "EquipmentID": 23005, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110142, - "ItemNum": 4 - }, - { - "ItemID": 112002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 102.6 - }, - "BaseDefenceAdd": { - "Value": 4.05 - } - }, - { - "EquipmentID": 23005, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110142, - "ItemNum": 8 - }, - { - "ItemID": 112002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 145.8 - }, - "BaseDefenceAdd": { - "Value": 4.05 - } - }, - { - "EquipmentID": 23005, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110143, - "ItemNum": 5 - }, - { - "ItemID": 112003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 189 - }, - "BaseDefenceAdd": { - "Value": 4.05 - } - }, - { - "EquipmentID": 23005, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110143, - "ItemNum": 10 - }, - { - "ItemID": 112003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 232.2 - }, - "BaseDefenceAdd": { - "Value": 4.05 - } - }, - { - "EquipmentID": 23005, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 275.4 - }, - "BaseDefenceAdd": { - "Value": 4.05 - } - }, - { - "EquipmentID": 23006, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23006, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110151, - "ItemNum": 4 - }, - { - "ItemID": 111011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23006, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110152, - "ItemNum": 4 - }, - { - "ItemID": 111012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23006, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110152, - "ItemNum": 8 - }, - { - "ItemID": 111012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23006, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110153, - "ItemNum": 5 - }, - { - "ItemID": 111013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23006, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110153, - "ItemNum": 10 - }, - { - "ItemID": 111013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23006, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23007, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 112011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23007, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110151, - "ItemNum": 4 - }, - { - "ItemID": 112011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23007, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110152, - "ItemNum": 4 - }, - { - "ItemID": 112012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23007, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110152, - "ItemNum": 8 - }, - { - "ItemID": 112012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23007, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110153, - "ItemNum": 5 - }, - { - "ItemID": 112013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23007, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110153, - "ItemNum": 10 - }, - { - "ItemID": 112013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23007, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23008, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 113011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 52.8 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23008, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110171, - "ItemNum": 4 - }, - { - "ItemID": 113011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 116.16 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23008, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110172, - "ItemNum": 4 - }, - { - "ItemID": 113012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 200.64 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23008, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110172, - "ItemNum": 8 - }, - { - "ItemID": 113012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 285.12 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23008, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110173, - "ItemNum": 5 - }, - { - "ItemID": 113013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 369.6 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23008, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110173, - "ItemNum": 10 - }, - { - "ItemID": 113013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 454.08 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23008, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 538.56 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23009, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 113001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 57.6 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 23009, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110111, - "ItemNum": 4 - }, - { - "ItemID": 113001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 126.72 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 23009, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110112, - "ItemNum": 4 - }, - { - "ItemID": 113002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 218.88 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 23009, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110112, - "ItemNum": 8 - }, - { - "ItemID": 113002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 311.04 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 23009, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110113, - "ItemNum": 5 - }, - { - "ItemID": 113003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 403.2 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 23009, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110113, - "ItemNum": 10 - }, - { - "ItemID": 113003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 495.36 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 23009, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 587.52 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 23010, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 113001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23010, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110131, - "ItemNum": 4 - }, - { - "ItemID": 113001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23010, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110132, - "ItemNum": 4 - }, - { - "ItemID": 113002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23010, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110132, - "ItemNum": 8 - }, - { - "ItemID": 113002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23010, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110133, - "ItemNum": 5 - }, - { - "ItemID": 113003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23010, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110133, - "ItemNum": 10 - }, - { - "ItemID": 113003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23010, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23011, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 113011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 57.6 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 24 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23011, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110141, - "ItemNum": 4 - }, - { - "ItemID": 113011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 126.72 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 52.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23011, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110142, - "ItemNum": 4 - }, - { - "ItemID": 113012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 218.88 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 91.2 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23011, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110142, - "ItemNum": 8 - }, - { - "ItemID": 113012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 311.04 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 129.6 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23011, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110143, - "ItemNum": 5 - }, - { - "ItemID": 113013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 403.2 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 168 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23011, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110143, - "ItemNum": 10 - }, - { - "ItemID": 113013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 495.36 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 206.4 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23011, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 587.52 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 244.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23012, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23012, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110121, - "ItemNum": 4 - }, - { - "ItemID": 111011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23012, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110122, - "ItemNum": 4 - }, - { - "ItemID": 111012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23012, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110122, - "ItemNum": 8 - }, - { - "ItemID": 111012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23012, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110123, - "ItemNum": 5 - }, - { - "ItemID": 111013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23012, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110123, - "ItemNum": 10 - }, - { - "ItemID": 111013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23012, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23013, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 57.6 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23013, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110171, - "ItemNum": 4 - }, - { - "ItemID": 111001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 126.72 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23013, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110172, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 218.88 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23013, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110172, - "ItemNum": 8 - }, - { - "ItemID": 111002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 311.04 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23013, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110173, - "ItemNum": 5 - }, - { - "ItemID": 111003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 403.2 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23013, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110173, - "ItemNum": 10 - }, - { - "ItemID": 111003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 495.36 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23013, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 587.52 - }, - "BaseHPAdd": { - "Value": 8.64 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23014, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 113001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 52.8 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23014, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110111, - "ItemNum": 4 - }, - { - "ItemID": 113001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 116.16 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23014, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110112, - "ItemNum": 4 - }, - { - "ItemID": 113002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 200.64 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23014, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110112, - "ItemNum": 8 - }, - { - "ItemID": 113002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 285.12 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23014, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110113, - "ItemNum": 5 - }, - { - "ItemID": 113003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 369.6 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23014, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110113, - "ItemNum": 10 - }, - { - "ItemID": 113003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 454.08 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23014, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 538.56 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23015, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 113001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 28.8 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23015, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110111, - "ItemNum": 4 - }, - { - "ItemID": 113001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 63.36 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23015, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110112, - "ItemNum": 4 - }, - { - "ItemID": 113002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 109.44 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23015, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110112, - "ItemNum": 8 - }, - { - "ItemID": 113002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 155.52 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23015, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110113, - "ItemNum": 5 - }, - { - "ItemID": 113003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 201.6 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23015, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110113, - "ItemNum": 10 - }, - { - "ItemID": 113003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 247.68 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23015, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 293.76 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23016, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 112001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23016, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110121, - "ItemNum": 4 - }, - { - "ItemID": 112001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23016, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110122, - "ItemNum": 4 - }, - { - "ItemID": 112002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23016, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110122, - "ItemNum": 8 - }, - { - "ItemID": 112002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23016, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110123, - "ItemNum": 5 - }, - { - "ItemID": 112003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23016, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110123, - "ItemNum": 10 - }, - { - "ItemID": 112003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23016, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 24000, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 24 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24000, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110111, - "ItemNum": 4 - }, - { - "ItemID": 111001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 52.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24000, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110112, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 91.2 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24000, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110112, - "ItemNum": 8 - }, - { - "ItemID": 111002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 129.6 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24000, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110113, - "ItemNum": 5 - }, - { - "ItemID": 111003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 168 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24000, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110113, - "ItemNum": 10 - }, - { - "ItemID": 111003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 206.4 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24000, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 244.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24001, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 24 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 24001, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110121, - "ItemNum": 4 - }, - { - "ItemID": 111001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 52.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 24001, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110122, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 91.2 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 24001, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110122, - "ItemNum": 8 - }, - { - "ItemID": 111002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 129.6 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 24001, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110123, - "ItemNum": 5 - }, - { - "ItemID": 111003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 168 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 24001, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110123, - "ItemNum": 10 - }, - { - "ItemID": 111003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 206.4 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 24001, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 244.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 24002, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 24 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 24002, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110141, - "ItemNum": 4 - }, - { - "ItemID": 111001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 52.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 24002, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110142, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 91.2 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 24002, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110142, - "ItemNum": 8 - }, - { - "ItemID": 111002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 129.6 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 24002, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110143, - "ItemNum": 5 - }, - { - "ItemID": 111003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 168 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 24002, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110143, - "ItemNum": 10 - }, - { - "ItemID": 111003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 206.4 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 24002, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 244.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 21025, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21025, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110161, - "ItemNum": 3 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21025, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110162, - "ItemNum": 3 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21025, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110162, - "ItemNum": 6 - }, - { - "ItemID": 111002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21025, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110163, - "ItemNum": 4 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21025, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110163, - "ItemNum": 8 - }, - { - "ItemID": 111003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21025, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23017, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 113001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 52.8 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 24 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23017, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110171, - "ItemNum": 4 - }, - { - "ItemID": 113001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 116.16 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 52.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23017, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110172, - "ItemNum": 4 - }, - { - "ItemID": 113002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 200.64 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 91.2 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23017, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110172, - "ItemNum": 8 - }, - { - "ItemID": 113002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 285.12 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129.6 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23017, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110173, - "ItemNum": 5 - }, - { - "ItemID": 113003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 369.6 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 168 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23017, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110173, - "ItemNum": 10 - }, - { - "ItemID": 113003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 454.08 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 206.4 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23017, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 538.56 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 244.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23018, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23018, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110131, - "ItemNum": 4 - }, - { - "ItemID": 111001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23018, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110132, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23018, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110132, - "ItemNum": 8 - }, - { - "ItemID": 111002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23018, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110133, - "ItemNum": 5 - }, - { - "ItemID": 111003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23018, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110133, - "ItemNum": 10 - }, - { - "ItemID": 111003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23018, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23019, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 113001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 24 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 24 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23019, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110161, - "ItemNum": 4 - }, - { - "ItemID": 113001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 52.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 52.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23019, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110162, - "ItemNum": 4 - }, - { - "ItemID": 113002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 91.2 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 91.2 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23019, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110162, - "ItemNum": 8 - }, - { - "ItemID": 113002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 129.6 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 129.6 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23019, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110163, - "ItemNum": 5 - }, - { - "ItemID": 113003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 168 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 168 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23019, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110163, - "ItemNum": 10 - }, - { - "ItemID": 113003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 206.4 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 206.4 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23019, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 244.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 244.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23021, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 114011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 52.8 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 24 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23021, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110231, - "ItemNum": 4 - }, - { - "ItemID": 114011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 116.16 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 52.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23021, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110232, - "ItemNum": 4 - }, - { - "ItemID": 114012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 200.64 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 91.2 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23021, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110232, - "ItemNum": 8 - }, - { - "ItemID": 114012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 285.12 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 129.6 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23021, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110233, - "ItemNum": 5 - }, - { - "ItemID": 114013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 369.6 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 168 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23021, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110233, - "ItemNum": 10 - }, - { - "ItemID": 114013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 454.08 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 206.4 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23021, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 538.56 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 244.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23023, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 114011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 30 - }, - "BaseDefenceAdd": { - "Value": 4.5 - } - }, - { - "EquipmentID": 23023, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110211, - "ItemNum": 4 - }, - { - "ItemID": 114011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 66 - }, - "BaseDefenceAdd": { - "Value": 4.5 - } - }, - { - "EquipmentID": 23023, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110212, - "ItemNum": 4 - }, - { - "ItemID": 114012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 114 - }, - "BaseDefenceAdd": { - "Value": 4.5 - } - }, - { - "EquipmentID": 23023, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110212, - "ItemNum": 8 - }, - { - "ItemID": 114012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 162 - }, - "BaseDefenceAdd": { - "Value": 4.5 - } - }, - { - "EquipmentID": 23023, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110213, - "ItemNum": 5 - }, - { - "ItemID": 114013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 210 - }, - "BaseDefenceAdd": { - "Value": 4.5 - } - }, - { - "EquipmentID": 23023, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110213, - "ItemNum": 10 - }, - { - "ItemID": 114013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 258 - }, - "BaseDefenceAdd": { - "Value": 4.5 - } - }, - { - "EquipmentID": 23023, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 306 - }, - "BaseDefenceAdd": { - "Value": 4.5 - } - }, - { - "EquipmentID": 23020, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 24 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23020, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110121, - "ItemNum": 4 - }, - { - "ItemID": 111011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 52.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23020, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110122, - "ItemNum": 4 - }, - { - "ItemID": 111012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 91.2 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23020, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110122, - "ItemNum": 8 - }, - { - "ItemID": 111012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 129.6 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23020, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110123, - "ItemNum": 5 - }, - { - "ItemID": 111013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 168 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23020, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110123, - "ItemNum": 10 - }, - { - "ItemID": 111013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 206.4 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23020, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 244.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 24003, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 24 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24003, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110151, - "ItemNum": 4 - }, - { - "ItemID": 111001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 52.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24003, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110152, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 91.2 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24003, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110152, - "ItemNum": 8 - }, - { - "ItemID": 111002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 129.6 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24003, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110153, - "ItemNum": 5 - }, - { - "ItemID": 111003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 168 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24003, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110153, - "ItemNum": 10 - }, - { - "ItemID": 111003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 206.4 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24003, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 244.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21035, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21035, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110171, - "ItemNum": 3 - }, - { - "ItemID": 114001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21035, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110172, - "ItemNum": 3 - }, - { - "ItemID": 114002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21035, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110172, - "ItemNum": 6 - }, - { - "ItemID": 114002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21035, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110173, - "ItemNum": 4 - }, - { - "ItemID": 114003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21035, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110173, - "ItemNum": 8 - }, - { - "ItemID": 114003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21035, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21036, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21036, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110231, - "ItemNum": 3 - }, - { - "ItemID": 114001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21036, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110232, - "ItemNum": 3 - }, - { - "ItemID": 114002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21036, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110232, - "ItemNum": 6 - }, - { - "ItemID": 114002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21036, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110233, - "ItemNum": 4 - }, - { - "ItemID": 114003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21036, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110233, - "ItemNum": 8 - }, - { - "ItemID": 114003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21036, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21037, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21037, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110121, - "ItemNum": 3 - }, - { - "ItemID": 114011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21037, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110122, - "ItemNum": 3 - }, - { - "ItemID": 114012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21037, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110122, - "ItemNum": 6 - }, - { - "ItemID": 114012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21037, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110123, - "ItemNum": 4 - }, - { - "ItemID": 114013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21037, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110123, - "ItemNum": 8 - }, - { - "ItemID": 114013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21037, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21038, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21038, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110181, - "ItemNum": 3 - }, - { - "ItemID": 114001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21038, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110182, - "ItemNum": 3 - }, - { - "ItemID": 114002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21038, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110182, - "ItemNum": 6 - }, - { - "ItemID": 114002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21038, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110183, - "ItemNum": 4 - }, - { - "ItemID": 114003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21038, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110183, - "ItemNum": 8 - }, - { - "ItemID": 114003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21038, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21039, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21039, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110141, - "ItemNum": 3 - }, - { - "ItemID": 114011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21039, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110142, - "ItemNum": 3 - }, - { - "ItemID": 114012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21039, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110142, - "ItemNum": 6 - }, - { - "ItemID": 114012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21039, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110143, - "ItemNum": 4 - }, - { - "ItemID": 114013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21039, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110143, - "ItemNum": 8 - }, - { - "ItemID": 114013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21039, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21040, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21040, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110131, - "ItemNum": 3 - }, - { - "ItemID": 114001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21040, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110132, - "ItemNum": 3 - }, - { - "ItemID": 114002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21040, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110132, - "ItemNum": 6 - }, - { - "ItemID": 114002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21040, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110133, - "ItemNum": 4 - }, - { - "ItemID": 114003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21040, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110133, - "ItemNum": 8 - }, - { - "ItemID": 114003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21040, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21041, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 111001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 12 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21041, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110221, - "ItemNum": 3 - }, - { - "ItemID": 111001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 26.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21041, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110222, - "ItemNum": 3 - }, - { - "ItemID": 111002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 45.6 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21041, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110222, - "ItemNum": 6 - }, - { - "ItemID": 111002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 64.8 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21041, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110223, - "ItemNum": 4 - }, - { - "ItemID": 111003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 84 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21041, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110223, - "ItemNum": 8 - }, - { - "ItemID": 111003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 103.2 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 21041, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 122.4 - }, - "BaseDefenceAdd": { - "Value": 1.8 - } - }, - { - "EquipmentID": 23022, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23022, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110221, - "ItemNum": 4 - }, - { - "ItemID": 111001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23022, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110222, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23022, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110222, - "ItemNum": 8 - }, - { - "ItemID": 111002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23022, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110223, - "ItemNum": 5 - }, - { - "ItemID": 111003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23022, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110223, - "ItemNum": 10 - }, - { - "ItemID": 111003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23022, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21007, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21007, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110171, - "ItemNum": 3 - }, - { - "ItemID": 113011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21007, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110172, - "ItemNum": 3 - }, - { - "ItemID": 113012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21007, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110172, - "ItemNum": 6 - }, - { - "ItemID": 113012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21007, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110173, - "ItemNum": 4 - }, - { - "ItemID": 113013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21007, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110173, - "ItemNum": 8 - }, - { - "ItemID": 113013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21007, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24004, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 111001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 24 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24004, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110201, - "ItemNum": 4 - }, - { - "ItemID": 111001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 52.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24004, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110202, - "ItemNum": 4 - }, - { - "ItemID": 111002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 91.2 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24004, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110202, - "ItemNum": 8 - }, - { - "ItemID": 111002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 129.6 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24004, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110203, - "ItemNum": 5 - }, - { - "ItemID": 111003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 168 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24004, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110203, - "ItemNum": 10 - }, - { - "ItemID": 111003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 206.4 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 24004, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 244.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 22001, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 22001, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110171, - "ItemNum": 3 - }, - { - "ItemID": 113011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 22001, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110172, - "ItemNum": 3 - }, - { - "ItemID": 113012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 22001, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110172, - "ItemNum": 6 - }, - { - "ItemID": 113012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 22001, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110173, - "ItemNum": 4 - }, - { - "ItemID": 113013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 22001, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110173, - "ItemNum": 8 - }, - { - "ItemID": 113013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 22001, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23024, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 114001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 28.8 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23024, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110221, - "ItemNum": 4 - }, - { - "ItemID": 114001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 63.36 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23024, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110222, - "ItemNum": 4 - }, - { - "ItemID": 114002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 109.44 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23024, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110222, - "ItemNum": 8 - }, - { - "ItemID": 114002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 155.52 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23024, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110223, - "ItemNum": 5 - }, - { - "ItemID": 114003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 201.6 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23024, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110223, - "ItemNum": 10 - }, - { - "ItemID": 114003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 247.68 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23024, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 293.76 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 23025, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 114011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 52.8 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 24 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23025, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110181, - "ItemNum": 4 - }, - { - "ItemID": 114011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 116.16 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 52.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23025, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110182, - "ItemNum": 4 - }, - { - "ItemID": 114012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 200.64 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 91.2 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23025, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110182, - "ItemNum": 8 - }, - { - "ItemID": 114012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 285.12 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129.6 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23025, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110183, - "ItemNum": 5 - }, - { - "ItemID": 114013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 369.6 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 168 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23025, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110183, - "ItemNum": 10 - }, - { - "ItemID": 114013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 454.08 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 206.4 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23025, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 538.56 - }, - "BaseHPAdd": { - "Value": 7.92 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 244.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 21042, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21042, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110181, - "ItemNum": 3 - }, - { - "ItemID": 114001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21042, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110182, - "ItemNum": 3 - }, - { - "ItemID": 114002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21042, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110182, - "ItemNum": 6 - }, - { - "ItemID": 114002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21042, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110183, - "ItemNum": 4 - }, - { - "ItemID": 114003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21042, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110183, - "ItemNum": 8 - }, - { - "ItemID": 114003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21042, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21043, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 16.8 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21043, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110211, - "ItemNum": 3 - }, - { - "ItemID": 114011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 36.96 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21043, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110212, - "ItemNum": 3 - }, - { - "ItemID": 114012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 63.84 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21043, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110212, - "ItemNum": 6 - }, - { - "ItemID": 114012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 90.72 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21043, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110213, - "ItemNum": 4 - }, - { - "ItemID": 114013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 117.6 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21043, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110213, - "ItemNum": 8 - }, - { - "ItemID": 114013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 144.48 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 21043, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 171.36 - }, - "BaseAttackAdd": { - "Value": 2.52 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23027, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 114011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23027, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110191, - "ItemNum": 4 - }, - { - "ItemID": 114011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23027, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110192, - "ItemNum": 4 - }, - { - "ItemID": 114012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23027, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110192, - "ItemNum": 8 - }, - { - "ItemID": 114012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23027, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110193, - "ItemNum": 5 - }, - { - "ItemID": 114013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23027, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110193, - "ItemNum": 10 - }, - { - "ItemID": 114013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23027, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23028, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 114001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 24 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23028, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110201, - "ItemNum": 4 - }, - { - "ItemID": 114001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 52.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23028, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110202, - "ItemNum": 4 - }, - { - "ItemID": 114002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 91.2 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23028, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110202, - "ItemNum": 8 - }, - { - "ItemID": 114002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 129.6 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23028, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110203, - "ItemNum": 5 - }, - { - "ItemID": 114003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 168 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23028, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110203, - "ItemNum": 10 - }, - { - "ItemID": 114003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 206.4 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23028, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 244.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 21044, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21044, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110221, - "ItemNum": 3 - }, - { - "ItemID": 114011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21044, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110222, - "ItemNum": 3 - }, - { - "ItemID": 114012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21044, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110222, - "ItemNum": 6 - }, - { - "ItemID": 114012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21044, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110223, - "ItemNum": 4 - }, - { - "ItemID": 114013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21044, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110223, - "ItemNum": 8 - }, - { - "ItemID": 114013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21044, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 21045, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21045, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110201, - "ItemNum": 3 - }, - { - "ItemID": 114011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21045, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110202, - "ItemNum": 3 - }, - { - "ItemID": 114012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21045, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110202, - "ItemNum": 6 - }, - { - "ItemID": 114012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21045, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110203, - "ItemNum": 4 - }, - { - "ItemID": 114013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21045, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110203, - "ItemNum": 8 - }, - { - "ItemID": 114013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21045, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21046, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 19.2 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21046, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110231, - "ItemNum": 3 - }, - { - "ItemID": 114001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 42.24 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21046, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110232, - "ItemNum": 3 - }, - { - "ItemID": 114002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 72.96 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21046, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110232, - "ItemNum": 6 - }, - { - "ItemID": 114002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 103.68 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21046, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110233, - "ItemNum": 4 - }, - { - "ItemID": 114003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 134.4 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21046, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110233, - "ItemNum": 8 - }, - { - "ItemID": 114003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 165.12 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21046, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 195.84 - }, - "BaseAttackAdd": { - "Value": 2.88 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21047, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 113011, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 38.4 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 18 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21047, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110191, - "ItemNum": 3 - }, - { - "ItemID": 113011, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 84.48 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 39.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21047, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110192, - "ItemNum": 3 - }, - { - "ItemID": 113012, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 145.92 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 68.4 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21047, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110192, - "ItemNum": 6 - }, - { - "ItemID": 113012, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 207.36 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 97.2 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21047, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110193, - "ItemNum": 4 - }, - { - "ItemID": 113013, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 268.8 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 126 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21047, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110193, - "ItemNum": 8 - }, - { - "ItemID": 113013, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 330.24 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 154.8 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 21047, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 391.68 - }, - "BaseHPAdd": { - "Value": 5.76 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 183.6 - }, - "BaseDefenceAdd": { - "Value": 2.7 - } - }, - { - "EquipmentID": 22002, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 4000 - }, - { - "ItemID": 114001, - "ItemNum": 5 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 21.6 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 15 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22002, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 8000 - }, - { - "ItemID": 110231, - "ItemNum": 3 - }, - { - "ItemID": 114001, - "ItemNum": 10 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 47.52 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 33 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22002, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 16000 - }, - { - "ItemID": 110232, - "ItemNum": 3 - }, - { - "ItemID": 114002, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 82.08 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 57 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22002, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 40000 - }, - { - "ItemID": 110232, - "ItemNum": 6 - }, - { - "ItemID": 114002, - "ItemNum": 9 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 116.64 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 81 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22002, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 80000 - }, - { - "ItemID": 110233, - "ItemNum": 4 - }, - { - "ItemID": 114003, - "ItemNum": 5 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 151.2 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 105 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22002, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 160000 - }, - { - "ItemID": 110233, - "ItemNum": 8 - }, - { - "ItemID": 114003, - "ItemNum": 7 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 185.76 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 129 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 22002, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 220.32 - }, - "BaseAttackAdd": { - "Value": 3.24 - }, - "BaseDefence": { - "Value": 153 - }, - "BaseDefenceAdd": { - "Value": 2.25 - } - }, - { - "EquipmentID": 23026, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 114001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 28.8 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23026, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110231, - "ItemNum": 4 - }, - { - "ItemID": 114001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 63.36 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23026, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110232, - "ItemNum": 4 - }, - { - "ItemID": 114002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 109.44 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23026, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110232, - "ItemNum": 8 - }, - { - "ItemID": 114002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 155.52 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23026, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110233, - "ItemNum": 5 - }, - { - "ItemID": 114003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 201.6 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23026, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110233, - "ItemNum": 10 - }, - { - "ItemID": 114003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 247.68 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23026, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 293.76 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23030, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 113011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23030, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110181, - "ItemNum": 4 - }, - { - "ItemID": 113011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23030, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110182, - "ItemNum": 4 - }, - { - "ItemID": 113012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23030, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110182, - "ItemNum": 8 - }, - { - "ItemID": 113012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23030, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110183, - "ItemNum": 5 - }, - { - "ItemID": 113013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23030, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110183, - "ItemNum": 10 - }, - { - "ItemID": 113013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23030, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23029, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 113001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 26.4 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 24 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23029, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110221, - "ItemNum": 4 - }, - { - "ItemID": 113001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 58.08 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 52.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23029, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110222, - "ItemNum": 4 - }, - { - "ItemID": 113002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 100.32 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 91.2 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23029, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110222, - "ItemNum": 8 - }, - { - "ItemID": 113002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 142.56 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 129.6 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23029, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110223, - "ItemNum": 5 - }, - { - "ItemID": 113003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 184.8 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 168 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23029, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110223, - "ItemNum": 10 - }, - { - "ItemID": 113003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 227.04 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 206.4 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23029, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 269.28 - }, - "BaseAttackAdd": { - "Value": 3.96 - }, - "BaseDefence": { - "Value": 244.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23031, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 113011, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 43.2 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 28.8 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 21 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23031, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110191, - "ItemNum": 4 - }, - { - "ItemID": 113011, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 95.04 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 63.36 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 46.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23031, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110192, - "ItemNum": 4 - }, - { - "ItemID": 113012, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 164.16 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 109.44 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 79.8 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23031, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110192, - "ItemNum": 8 - }, - { - "ItemID": 113012, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 233.28 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 155.52 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 113.4 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23031, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110193, - "ItemNum": 5 - }, - { - "ItemID": 113013, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 302.4 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 201.6 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 147 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23031, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110193, - "ItemNum": 10 - }, - { - "ItemID": 113013, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 371.52 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 247.68 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 180.6 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23031, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 440.64 - }, - "BaseHPAdd": { - "Value": 6.48 - }, - "BaseAttack": { - "Value": 293.76 - }, - "BaseAttackAdd": { - "Value": 4.32 - }, - "BaseDefence": { - "Value": 214.2 - }, - "BaseDefenceAdd": { - "Value": 3.15 - } - }, - { - "EquipmentID": 23032, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 5000 - }, - { - "ItemID": 113001, - "ItemNum": 8 - } - ], - "PlayerLevelRequire": 15, - "MaxLevel": 20, - "BaseHP": { - "Value": 48 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 24 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 24 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23032, - "Promotion": 1, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 10000 - }, - { - "ItemID": 110241, - "ItemNum": 4 - }, - { - "ItemID": 113001, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 1, - "MaxLevel": 30, - "BaseHP": { - "Value": 105.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 52.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 52.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23032, - "Promotion": 2, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 20000 - }, - { - "ItemID": 110242, - "ItemNum": 4 - }, - { - "ItemID": 113002, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 2, - "MaxLevel": 40, - "BaseHP": { - "Value": 182.4 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 91.2 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 91.2 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23032, - "Promotion": 3, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 50000 - }, - { - "ItemID": 110242, - "ItemNum": 8 - }, - { - "ItemID": 113002, - "ItemNum": 12 - } - ], - "WorldLevelRequire": 3, - "MaxLevel": 50, - "BaseHP": { - "Value": 259.2 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 129.6 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 129.6 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23032, - "Promotion": 4, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 100000 - }, - { - "ItemID": 110243, - "ItemNum": 5 - }, - { - "ItemID": 113003, - "ItemNum": 6 - } - ], - "WorldLevelRequire": 4, - "MaxLevel": 60, - "BaseHP": { - "Value": 336 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 168 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 168 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23032, - "Promotion": 5, - "PromotionCostList": [ - { - "ItemID": 2, - "ItemNum": 200000 - }, - { - "ItemID": 110243, - "ItemNum": 10 - }, - { - "ItemID": 113003, - "ItemNum": 8 - } - ], - "WorldLevelRequire": 5, - "MaxLevel": 70, - "BaseHP": { - "Value": 412.8 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 206.4 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 206.4 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - }, - { - "EquipmentID": 23032, - "Promotion": 6, - "PromotionCostList": [], - "WorldLevelRequire": 5, - "MaxLevel": 80, - "BaseHP": { - "Value": 489.6 - }, - "BaseHPAdd": { - "Value": 7.2 - }, - "BaseAttack": { - "Value": 244.8 - }, - "BaseAttackAdd": { - "Value": 3.6 - }, - "BaseDefence": { - "Value": 244.8 - }, - "BaseDefenceAdd": { - "Value": 3.6 - } - } -] \ No newline at end of file diff --git a/StarRailUID/utils/excel/RelicMainAffixConfig.json b/StarRailUID/utils/excel/RelicMainAffixConfig.json deleted file mode 100644 index 438737f..0000000 --- a/StarRailUID/utils/excel/RelicMainAffixConfig.json +++ /dev/null @@ -1,1406 +0,0 @@ -[ - { - "GroupID": 21, - "AffixID": 1, - "Property": "HPDelta", - "BaseValue": { - "Value": 45.1584 - }, - "LevelAdd": { - "Value": 15.80544 - }, - "IsAvailable": true - }, - { - "GroupID": 22, - "AffixID": 1, - "Property": "AttackDelta", - "BaseValue": { - "Value": 22.5792 - }, - "LevelAdd": { - "Value": 7.90272 - }, - "IsAvailable": true - }, - { - "GroupID": 23, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.027648 - }, - "LevelAdd": { - "Value": 0.009677 - }, - "IsAvailable": true - }, - { - "GroupID": 23, - "AffixID": 2, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.027648 - }, - "LevelAdd": { - "Value": 0.009677 - }, - "IsAvailable": true - }, - { - "GroupID": 23, - "AffixID": 3, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.034560002 - }, - "LevelAdd": { - "Value": 0.012096001 - }, - "IsAvailable": true - }, - { - "GroupID": 23, - "AffixID": 4, - "Property": "CriticalChanceBase", - "BaseValue": { - "Value": 0.020736001 - }, - "LevelAdd": { - "Value": 0.007258 - }, - "IsAvailable": true - }, - { - "GroupID": 23, - "AffixID": 5, - "Property": "CriticalDamageBase", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 23, - "AffixID": 6, - "Property": "HealRatioBase", - "BaseValue": { - "Value": 0.022118 - }, - "LevelAdd": { - "Value": 0.0077410005 - }, - "IsAvailable": true - }, - { - "GroupID": 23, - "AffixID": 7, - "Property": "StatusProbabilityBase", - "BaseValue": { - "Value": 0.027648 - }, - "LevelAdd": { - "Value": 0.009677 - }, - "IsAvailable": true - }, - { - "GroupID": 24, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.027648 - }, - "LevelAdd": { - "Value": 0.009677 - }, - "IsAvailable": true - }, - { - "GroupID": 24, - "AffixID": 2, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.027648 - }, - "LevelAdd": { - "Value": 0.009677 - }, - "IsAvailable": true - }, - { - "GroupID": 24, - "AffixID": 3, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.034560002 - }, - "LevelAdd": { - "Value": 0.012096001 - }, - "IsAvailable": true - }, - { - "GroupID": 24, - "AffixID": 4, - "Property": "SpeedDelta", - "BaseValue": { - "Value": 1.6128 - }, - "LevelAdd": { - "Value": 1 - }, - "IsAvailable": true - }, - { - "GroupID": 25, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.027648 - }, - "LevelAdd": { - "Value": 0.009677 - }, - "IsAvailable": true - }, - { - "GroupID": 25, - "AffixID": 2, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.027648 - }, - "LevelAdd": { - "Value": 0.009677 - }, - "IsAvailable": true - }, - { - "GroupID": 25, - "AffixID": 3, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.034560002 - }, - "LevelAdd": { - "Value": 0.012096001 - }, - "IsAvailable": true - }, - { - "GroupID": 25, - "AffixID": 4, - "Property": "PhysicalAddedRatio", - "BaseValue": { - "Value": 0.024883 - }, - "LevelAdd": { - "Value": 0.008709 - }, - "IsAvailable": true - }, - { - "GroupID": 25, - "AffixID": 5, - "Property": "FireAddedRatio", - "BaseValue": { - "Value": 0.024883 - }, - "LevelAdd": { - "Value": 0.008709 - }, - "IsAvailable": true - }, - { - "GroupID": 25, - "AffixID": 6, - "Property": "IceAddedRatio", - "BaseValue": { - "Value": 0.024883 - }, - "LevelAdd": { - "Value": 0.008709 - }, - "IsAvailable": true - }, - { - "GroupID": 25, - "AffixID": 7, - "Property": "ThunderAddedRatio", - "BaseValue": { - "Value": 0.024883 - }, - "LevelAdd": { - "Value": 0.008709 - }, - "IsAvailable": true - }, - { - "GroupID": 25, - "AffixID": 8, - "Property": "WindAddedRatio", - "BaseValue": { - "Value": 0.024883 - }, - "LevelAdd": { - "Value": 0.008709 - }, - "IsAvailable": true - }, - { - "GroupID": 25, - "AffixID": 9, - "Property": "QuantumAddedRatio", - "BaseValue": { - "Value": 0.024883 - }, - "LevelAdd": { - "Value": 0.008709 - }, - "IsAvailable": true - }, - { - "GroupID": 25, - "AffixID": 10, - "Property": "ImaginaryAddedRatio", - "BaseValue": { - "Value": 0.024883 - }, - "LevelAdd": { - "Value": 0.008709 - }, - "IsAvailable": true - }, - { - "GroupID": 26, - "AffixID": 1, - "Property": "BreakDamageAddedRatioBase", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 26, - "AffixID": 2, - "Property": "SPRatioBase", - "BaseValue": { - "Value": 0.012442 - }, - "LevelAdd": { - "Value": 0.0043550003 - }, - "IsAvailable": true - }, - { - "GroupID": 26, - "AffixID": 3, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.027648 - }, - "LevelAdd": { - "Value": 0.009677 - }, - "IsAvailable": true - }, - { - "GroupID": 26, - "AffixID": 4, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.027648 - }, - "LevelAdd": { - "Value": 0.009677 - }, - "IsAvailable": true - }, - { - "GroupID": 26, - "AffixID": 5, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.034560002 - }, - "LevelAdd": { - "Value": 0.012096001 - }, - "IsAvailable": true - }, - { - "GroupID": 31, - "AffixID": 1, - "Property": "HPDelta", - "BaseValue": { - "Value": 67.7376 - }, - "LevelAdd": { - "Value": 23.70816 - }, - "IsAvailable": true - }, - { - "GroupID": 32, - "AffixID": 1, - "Property": "AttackDelta", - "BaseValue": { - "Value": 33.8688 - }, - "LevelAdd": { - "Value": 11.85408 - }, - "IsAvailable": true - }, - { - "GroupID": 33, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 33, - "AffixID": 2, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 33, - "AffixID": 3, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.05184 - }, - "LevelAdd": { - "Value": 0.018144 - }, - "IsAvailable": true - }, - { - "GroupID": 33, - "AffixID": 4, - "Property": "CriticalChanceBase", - "BaseValue": { - "Value": 0.031104 - }, - "LevelAdd": { - "Value": 0.010886001 - }, - "IsAvailable": true - }, - { - "GroupID": 33, - "AffixID": 5, - "Property": "CriticalDamageBase", - "BaseValue": { - "Value": 0.062208 - }, - "LevelAdd": { - "Value": 0.021773001 - }, - "IsAvailable": true - }, - { - "GroupID": 33, - "AffixID": 6, - "Property": "HealRatioBase", - "BaseValue": { - "Value": 0.033178 - }, - "LevelAdd": { - "Value": 0.011612 - }, - "IsAvailable": true - }, - { - "GroupID": 33, - "AffixID": 7, - "Property": "StatusProbabilityBase", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 34, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 34, - "AffixID": 2, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 34, - "AffixID": 3, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.05184 - }, - "LevelAdd": { - "Value": 0.018144 - }, - "IsAvailable": true - }, - { - "GroupID": 34, - "AffixID": 4, - "Property": "SpeedDelta", - "BaseValue": { - "Value": 2.4192 - }, - "LevelAdd": { - "Value": 1 - }, - "IsAvailable": true - }, - { - "GroupID": 35, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 35, - "AffixID": 2, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 35, - "AffixID": 3, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.05184 - }, - "LevelAdd": { - "Value": 0.018144 - }, - "IsAvailable": true - }, - { - "GroupID": 35, - "AffixID": 4, - "Property": "PhysicalAddedRatio", - "BaseValue": { - "Value": 0.037325 - }, - "LevelAdd": { - "Value": 0.013064001 - }, - "IsAvailable": true - }, - { - "GroupID": 35, - "AffixID": 5, - "Property": "FireAddedRatio", - "BaseValue": { - "Value": 0.037325 - }, - "LevelAdd": { - "Value": 0.013064001 - }, - "IsAvailable": true - }, - { - "GroupID": 35, - "AffixID": 6, - "Property": "IceAddedRatio", - "BaseValue": { - "Value": 0.037325 - }, - "LevelAdd": { - "Value": 0.013064001 - }, - "IsAvailable": true - }, - { - "GroupID": 35, - "AffixID": 7, - "Property": "ThunderAddedRatio", - "BaseValue": { - "Value": 0.037325 - }, - "LevelAdd": { - "Value": 0.013064001 - }, - "IsAvailable": true - }, - { - "GroupID": 35, - "AffixID": 8, - "Property": "WindAddedRatio", - "BaseValue": { - "Value": 0.037325 - }, - "LevelAdd": { - "Value": 0.013064001 - }, - "IsAvailable": true - }, - { - "GroupID": 35, - "AffixID": 9, - "Property": "QuantumAddedRatio", - "BaseValue": { - "Value": 0.037325 - }, - "LevelAdd": { - "Value": 0.013064001 - }, - "IsAvailable": true - }, - { - "GroupID": 35, - "AffixID": 10, - "Property": "ImaginaryAddedRatio", - "BaseValue": { - "Value": 0.037325 - }, - "LevelAdd": { - "Value": 0.013064001 - }, - "IsAvailable": true - }, - { - "GroupID": 36, - "AffixID": 1, - "Property": "BreakDamageAddedRatioBase", - "BaseValue": { - "Value": 0.062208 - }, - "LevelAdd": { - "Value": 0.021773001 - }, - "IsAvailable": true - }, - { - "GroupID": 36, - "AffixID": 2, - "Property": "SPRatioBase", - "BaseValue": { - "Value": 0.018662 - }, - "LevelAdd": { - "Value": 0.0065320004 - }, - "IsAvailable": true - }, - { - "GroupID": 36, - "AffixID": 3, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 36, - "AffixID": 4, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 36, - "AffixID": 5, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.05184 - }, - "LevelAdd": { - "Value": 0.018144 - }, - "IsAvailable": true - }, - { - "GroupID": 41, - "AffixID": 1, - "Property": "HPDelta", - "BaseValue": { - "Value": 90.3168 - }, - "LevelAdd": { - "Value": 31.61088 - }, - "IsAvailable": true - }, - { - "GroupID": 42, - "AffixID": 1, - "Property": "AttackDelta", - "BaseValue": { - "Value": 45.1584 - }, - "LevelAdd": { - "Value": 15.80544 - }, - "IsAvailable": true - }, - { - "GroupID": 43, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.055296 - }, - "LevelAdd": { - "Value": 0.019354 - }, - "IsAvailable": true - }, - { - "GroupID": 43, - "AffixID": 2, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.055296 - }, - "LevelAdd": { - "Value": 0.019354 - }, - "IsAvailable": true - }, - { - "GroupID": 43, - "AffixID": 3, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 43, - "AffixID": 4, - "Property": "CriticalChanceBase", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 43, - "AffixID": 5, - "Property": "CriticalDamageBase", - "BaseValue": { - "Value": 0.082944 - }, - "LevelAdd": { - "Value": 0.029029999 - }, - "IsAvailable": true - }, - { - "GroupID": 43, - "AffixID": 6, - "Property": "HealRatioBase", - "BaseValue": { - "Value": 0.044237 - }, - "LevelAdd": { - "Value": 0.015483 - }, - "IsAvailable": true - }, - { - "GroupID": 43, - "AffixID": 7, - "Property": "StatusProbabilityBase", - "BaseValue": { - "Value": 0.055296 - }, - "LevelAdd": { - "Value": 0.019354 - }, - "IsAvailable": true - }, - { - "GroupID": 44, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.055296 - }, - "LevelAdd": { - "Value": 0.019354 - }, - "IsAvailable": true - }, - { - "GroupID": 44, - "AffixID": 2, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.055296 - }, - "LevelAdd": { - "Value": 0.019354 - }, - "IsAvailable": true - }, - { - "GroupID": 44, - "AffixID": 3, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 44, - "AffixID": 4, - "Property": "SpeedDelta", - "BaseValue": { - "Value": 3.2256 - }, - "LevelAdd": { - "Value": 1.1 - }, - "IsAvailable": true - }, - { - "GroupID": 45, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.055296 - }, - "LevelAdd": { - "Value": 0.019354 - }, - "IsAvailable": true - }, - { - "GroupID": 45, - "AffixID": 2, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.055296 - }, - "LevelAdd": { - "Value": 0.019354 - }, - "IsAvailable": true - }, - { - "GroupID": 45, - "AffixID": 3, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 45, - "AffixID": 4, - "Property": "PhysicalAddedRatio", - "BaseValue": { - "Value": 0.049766 - }, - "LevelAdd": { - "Value": 0.017418 - }, - "IsAvailable": true - }, - { - "GroupID": 45, - "AffixID": 5, - "Property": "FireAddedRatio", - "BaseValue": { - "Value": 0.049766 - }, - "LevelAdd": { - "Value": 0.017418 - }, - "IsAvailable": true - }, - { - "GroupID": 45, - "AffixID": 6, - "Property": "IceAddedRatio", - "BaseValue": { - "Value": 0.049766 - }, - "LevelAdd": { - "Value": 0.017418 - }, - "IsAvailable": true - }, - { - "GroupID": 45, - "AffixID": 7, - "Property": "ThunderAddedRatio", - "BaseValue": { - "Value": 0.049766 - }, - "LevelAdd": { - "Value": 0.017418 - }, - "IsAvailable": true - }, - { - "GroupID": 45, - "AffixID": 8, - "Property": "WindAddedRatio", - "BaseValue": { - "Value": 0.049766 - }, - "LevelAdd": { - "Value": 0.017418 - }, - "IsAvailable": true - }, - { - "GroupID": 45, - "AffixID": 9, - "Property": "QuantumAddedRatio", - "BaseValue": { - "Value": 0.049766 - }, - "LevelAdd": { - "Value": 0.017418 - }, - "IsAvailable": true - }, - { - "GroupID": 45, - "AffixID": 10, - "Property": "ImaginaryAddedRatio", - "BaseValue": { - "Value": 0.049766 - }, - "LevelAdd": { - "Value": 0.017418 - }, - "IsAvailable": true - }, - { - "GroupID": 46, - "AffixID": 1, - "Property": "BreakDamageAddedRatioBase", - "BaseValue": { - "Value": 0.082944 - }, - "LevelAdd": { - "Value": 0.029029999 - }, - "IsAvailable": true - }, - { - "GroupID": 46, - "AffixID": 2, - "Property": "SPRatioBase", - "BaseValue": { - "Value": 0.024883 - }, - "LevelAdd": { - "Value": 0.008709 - }, - "IsAvailable": true - }, - { - "GroupID": 46, - "AffixID": 3, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.055296 - }, - "LevelAdd": { - "Value": 0.019354 - }, - "IsAvailable": true - }, - { - "GroupID": 46, - "AffixID": 4, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.055296 - }, - "LevelAdd": { - "Value": 0.019354 - }, - "IsAvailable": true - }, - { - "GroupID": 46, - "AffixID": 5, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 51, - "AffixID": 1, - "Property": "HPDelta", - "BaseValue": { - "Value": 112.896 - }, - "LevelAdd": { - "Value": 39.5136 - }, - "IsAvailable": true - }, - { - "GroupID": 52, - "AffixID": 1, - "Property": "AttackDelta", - "BaseValue": { - "Value": 56.448 - }, - "LevelAdd": { - "Value": 19.7568 - }, - "IsAvailable": true - }, - { - "GroupID": 53, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 53, - "AffixID": 2, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 53, - "AffixID": 3, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.0864 - }, - "LevelAdd": { - "Value": 0.030240001 - }, - "IsAvailable": true - }, - { - "GroupID": 53, - "AffixID": 4, - "Property": "CriticalChanceBase", - "BaseValue": { - "Value": 0.05184 - }, - "LevelAdd": { - "Value": 0.018144 - }, - "IsAvailable": true - }, - { - "GroupID": 53, - "AffixID": 5, - "Property": "CriticalDamageBase", - "BaseValue": { - "Value": 0.10368 - }, - "LevelAdd": { - "Value": 0.036288 - }, - "IsAvailable": true - }, - { - "GroupID": 53, - "AffixID": 6, - "Property": "HealRatioBase", - "BaseValue": { - "Value": 0.055296 - }, - "LevelAdd": { - "Value": 0.019354 - }, - "IsAvailable": true - }, - { - "GroupID": 53, - "AffixID": 7, - "Property": "StatusProbabilityBase", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 54, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 54, - "AffixID": 2, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 54, - "AffixID": 3, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.0864 - }, - "LevelAdd": { - "Value": 0.030240001 - }, - "IsAvailable": true - }, - { - "GroupID": 54, - "AffixID": 4, - "Property": "SpeedDelta", - "BaseValue": { - "Value": 4.032 - }, - "LevelAdd": { - "Value": 1.4 - }, - "IsAvailable": true - }, - { - "GroupID": 55, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 55, - "AffixID": 2, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 55, - "AffixID": 3, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.0864 - }, - "LevelAdd": { - "Value": 0.030240001 - }, - "IsAvailable": true - }, - { - "GroupID": 55, - "AffixID": 4, - "Property": "PhysicalAddedRatio", - "BaseValue": { - "Value": 0.062208 - }, - "LevelAdd": { - "Value": 0.021773001 - }, - "IsAvailable": true - }, - { - "GroupID": 55, - "AffixID": 5, - "Property": "FireAddedRatio", - "BaseValue": { - "Value": 0.062208 - }, - "LevelAdd": { - "Value": 0.021773001 - }, - "IsAvailable": true - }, - { - "GroupID": 55, - "AffixID": 6, - "Property": "IceAddedRatio", - "BaseValue": { - "Value": 0.062208 - }, - "LevelAdd": { - "Value": 0.021773001 - }, - "IsAvailable": true - }, - { - "GroupID": 55, - "AffixID": 7, - "Property": "ThunderAddedRatio", - "BaseValue": { - "Value": 0.062208 - }, - "LevelAdd": { - "Value": 0.021773001 - }, - "IsAvailable": true - }, - { - "GroupID": 55, - "AffixID": 8, - "Property": "WindAddedRatio", - "BaseValue": { - "Value": 0.062208 - }, - "LevelAdd": { - "Value": 0.021773001 - }, - "IsAvailable": true - }, - { - "GroupID": 55, - "AffixID": 9, - "Property": "QuantumAddedRatio", - "BaseValue": { - "Value": 0.062208 - }, - "LevelAdd": { - "Value": 0.021773001 - }, - "IsAvailable": true - }, - { - "GroupID": 55, - "AffixID": 10, - "Property": "ImaginaryAddedRatio", - "BaseValue": { - "Value": 0.062208 - }, - "LevelAdd": { - "Value": 0.021773001 - }, - "IsAvailable": true - }, - { - "GroupID": 56, - "AffixID": 1, - "Property": "BreakDamageAddedRatioBase", - "BaseValue": { - "Value": 0.10368 - }, - "LevelAdd": { - "Value": 0.036288 - }, - "IsAvailable": true - }, - { - "GroupID": 56, - "AffixID": 2, - "Property": "SPRatioBase", - "BaseValue": { - "Value": 0.031104 - }, - "LevelAdd": { - "Value": 0.010886001 - }, - "IsAvailable": true - }, - { - "GroupID": 56, - "AffixID": 3, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 56, - "AffixID": 4, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 56, - "AffixID": 5, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.0864 - }, - "LevelAdd": { - "Value": 0.030240001 - }, - "IsAvailable": true - }, - { - "GroupID": 433, - "AffixID": 1, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - }, - { - "GroupID": 434, - "AffixID": 1, - "Property": "CriticalChanceBase", - "BaseValue": { - "Value": 0.041472 - }, - "LevelAdd": { - "Value": 0.014515 - }, - "IsAvailable": true - }, - { - "GroupID": 436, - "AffixID": 1, - "Property": "HealRatioBase", - "BaseValue": { - "Value": 0.044237 - }, - "LevelAdd": { - "Value": 0.015483 - }, - "IsAvailable": true - }, - { - "GroupID": 441, - "AffixID": 1, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.055296 - }, - "LevelAdd": { - "Value": 0.019354 - }, - "IsAvailable": true - }, - { - "GroupID": 443, - "AffixID": 1, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.06912 - }, - "LevelAdd": { - "Value": 0.024192 - }, - "IsAvailable": true - } -] \ No newline at end of file diff --git a/StarRailUID/utils/excel/RelicSubAffixConfig.json b/StarRailUID/utils/excel/RelicSubAffixConfig.json deleted file mode 100644 index 0bd3d37..0000000 --- a/StarRailUID/utils/excel/RelicSubAffixConfig.json +++ /dev/null @@ -1,578 +0,0 @@ -[ - { - "GroupID": 2, - "AffixID": 1, - "Property": "HPDelta", - "BaseValue": { - "Value": 13.548016 - }, - "StepValue": { - "Value": 1.693502 - }, - "StepNum": 2 - }, - { - "GroupID": 2, - "AffixID": 2, - "Property": "AttackDelta", - "BaseValue": { - "Value": 6.774008 - }, - "StepValue": { - "Value": 0.846751 - }, - "StepNum": 2 - }, - { - "GroupID": 2, - "AffixID": 3, - "Property": "DefenceDelta", - "BaseValue": { - "Value": 6.774008 - }, - "StepValue": { - "Value": 0.846751 - }, - "StepNum": 2 - }, - { - "GroupID": 2, - "AffixID": 4, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.013824001 - }, - "StepValue": { - "Value": 0.0017280006 - }, - "StepNum": 2 - }, - { - "GroupID": 2, - "AffixID": 5, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.013824001 - }, - "StepValue": { - "Value": 0.0017280006 - }, - "StepNum": 2 - }, - { - "GroupID": 2, - "AffixID": 6, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.017280001 - }, - "StepValue": { - "Value": 0.0021600004 - }, - "StepNum": 2 - }, - { - "GroupID": 2, - "AffixID": 7, - "Property": "SpeedDelta", - "BaseValue": { - "Value": 1 - }, - "StepValue": { - "Value": 0.1 - }, - "StepNum": 2 - }, - { - "GroupID": 2, - "AffixID": 8, - "Property": "CriticalChanceBase", - "BaseValue": { - "Value": 0.010368001 - }, - "StepValue": { - "Value": 0.0012960008 - }, - "StepNum": 2 - }, - { - "GroupID": 2, - "AffixID": 9, - "Property": "CriticalDamageBase", - "BaseValue": { - "Value": 0.020736001 - }, - "StepValue": { - "Value": 0.0025920009 - }, - "StepNum": 2 - }, - { - "GroupID": 2, - "AffixID": 10, - "Property": "StatusProbabilityBase", - "BaseValue": { - "Value": 0.013824001 - }, - "StepValue": { - "Value": 0.0017280006 - }, - "StepNum": 2 - }, - { - "GroupID": 2, - "AffixID": 11, - "Property": "StatusResistanceBase", - "BaseValue": { - "Value": 0.013824001 - }, - "StepValue": { - "Value": 0.0017280006 - }, - "StepNum": 2 - }, - { - "GroupID": 2, - "AffixID": 12, - "Property": "BreakDamageAddedRatioBase", - "BaseValue": { - "Value": 0.020736001 - }, - "StepValue": { - "Value": 0.0025920009 - }, - "StepNum": 2 - }, - { - "GroupID": 3, - "AffixID": 1, - "Property": "HPDelta", - "BaseValue": { - "Value": 20.322023 - }, - "StepValue": { - "Value": 2.540253 - }, - "StepNum": 2 - }, - { - "GroupID": 3, - "AffixID": 2, - "Property": "AttackDelta", - "BaseValue": { - "Value": 10.161012 - }, - "StepValue": { - "Value": 1.270126 - }, - "StepNum": 2 - }, - { - "GroupID": 3, - "AffixID": 3, - "Property": "DefenceDelta", - "BaseValue": { - "Value": 10.161012 - }, - "StepValue": { - "Value": 1.270126 - }, - "StepNum": 2 - }, - { - "GroupID": 3, - "AffixID": 4, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.020736001 - }, - "StepValue": { - "Value": 0.0025920009 - }, - "StepNum": 2 - }, - { - "GroupID": 3, - "AffixID": 5, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.020736001 - }, - "StepValue": { - "Value": 0.0025920009 - }, - "StepNum": 2 - }, - { - "GroupID": 3, - "AffixID": 6, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.02592 - }, - "StepValue": { - "Value": 0.0032400002 - }, - "StepNum": 2 - }, - { - "GroupID": 3, - "AffixID": 7, - "Property": "SpeedDelta", - "BaseValue": { - "Value": 1.2 - }, - "StepValue": { - "Value": 0.1 - }, - "StepNum": 2 - }, - { - "GroupID": 3, - "AffixID": 8, - "Property": "CriticalChanceBase", - "BaseValue": { - "Value": 0.015552 - }, - "StepValue": { - "Value": 0.0019440008 - }, - "StepNum": 2 - }, - { - "GroupID": 3, - "AffixID": 9, - "Property": "CriticalDamageBase", - "BaseValue": { - "Value": 0.031104 - }, - "StepValue": { - "Value": 0.003888001 - }, - "StepNum": 2 - }, - { - "GroupID": 3, - "AffixID": 10, - "Property": "StatusProbabilityBase", - "BaseValue": { - "Value": 0.020736001 - }, - "StepValue": { - "Value": 0.0025920009 - }, - "StepNum": 2 - }, - { - "GroupID": 3, - "AffixID": 11, - "Property": "StatusResistanceBase", - "BaseValue": { - "Value": 0.020736001 - }, - "StepValue": { - "Value": 0.0025920009 - }, - "StepNum": 2 - }, - { - "GroupID": 3, - "AffixID": 12, - "Property": "BreakDamageAddedRatioBase", - "BaseValue": { - "Value": 0.031104 - }, - "StepValue": { - "Value": 0.003888001 - }, - "StepNum": 2 - }, - { - "GroupID": 4, - "AffixID": 1, - "Property": "HPDelta", - "BaseValue": { - "Value": 27.096031 - }, - "StepValue": { - "Value": 3.387004 - }, - "StepNum": 2 - }, - { - "GroupID": 4, - "AffixID": 2, - "Property": "AttackDelta", - "BaseValue": { - "Value": 13.548016 - }, - "StepValue": { - "Value": 1.693502 - }, - "StepNum": 2 - }, - { - "GroupID": 4, - "AffixID": 3, - "Property": "DefenceDelta", - "BaseValue": { - "Value": 13.548016 - }, - "StepValue": { - "Value": 1.693502 - }, - "StepNum": 2 - }, - { - "GroupID": 4, - "AffixID": 4, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.027648 - }, - "StepValue": { - "Value": 0.0034560005 - }, - "StepNum": 2 - }, - { - "GroupID": 4, - "AffixID": 5, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.027648 - }, - "StepValue": { - "Value": 0.0034560005 - }, - "StepNum": 2 - }, - { - "GroupID": 4, - "AffixID": 6, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.034560002 - }, - "StepValue": { - "Value": 0.0043200003 - }, - "StepNum": 2 - }, - { - "GroupID": 4, - "AffixID": 7, - "Property": "SpeedDelta", - "BaseValue": { - "Value": 1.6 - }, - "StepValue": { - "Value": 0.2 - }, - "StepNum": 2 - }, - { - "GroupID": 4, - "AffixID": 8, - "Property": "CriticalChanceBase", - "BaseValue": { - "Value": 0.020736001 - }, - "StepValue": { - "Value": 0.0025920009 - }, - "StepNum": 2 - }, - { - "GroupID": 4, - "AffixID": 9, - "Property": "CriticalDamageBase", - "BaseValue": { - "Value": 0.041472 - }, - "StepValue": { - "Value": 0.0051840004 - }, - "StepNum": 2 - }, - { - "GroupID": 4, - "AffixID": 10, - "Property": "StatusProbabilityBase", - "BaseValue": { - "Value": 0.027648 - }, - "StepValue": { - "Value": 0.0034560005 - }, - "StepNum": 2 - }, - { - "GroupID": 4, - "AffixID": 11, - "Property": "StatusResistanceBase", - "BaseValue": { - "Value": 0.027648 - }, - "StepValue": { - "Value": 0.0034560005 - }, - "StepNum": 2 - }, - { - "GroupID": 4, - "AffixID": 12, - "Property": "BreakDamageAddedRatioBase", - "BaseValue": { - "Value": 0.041472 - }, - "StepValue": { - "Value": 0.0051840004 - }, - "StepNum": 2 - }, - { - "GroupID": 5, - "AffixID": 1, - "Property": "HPDelta", - "BaseValue": { - "Value": 33.87004 - }, - "StepValue": { - "Value": 4.233755 - }, - "StepNum": 2 - }, - { - "GroupID": 5, - "AffixID": 2, - "Property": "AttackDelta", - "BaseValue": { - "Value": 16.935019 - }, - "StepValue": { - "Value": 2.116877 - }, - "StepNum": 2 - }, - { - "GroupID": 5, - "AffixID": 3, - "Property": "DefenceDelta", - "BaseValue": { - "Value": 16.935019 - }, - "StepValue": { - "Value": 2.116877 - }, - "StepNum": 2 - }, - { - "GroupID": 5, - "AffixID": 4, - "Property": "HPAddedRatio", - "BaseValue": { - "Value": 0.034560002 - }, - "StepValue": { - "Value": 0.0043200003 - }, - "StepNum": 2 - }, - { - "GroupID": 5, - "AffixID": 5, - "Property": "AttackAddedRatio", - "BaseValue": { - "Value": 0.034560002 - }, - "StepValue": { - "Value": 0.0043200003 - }, - "StepNum": 2 - }, - { - "GroupID": 5, - "AffixID": 6, - "Property": "DefenceAddedRatio", - "BaseValue": { - "Value": 0.0432 - }, - "StepValue": { - "Value": 0.0054 - }, - "StepNum": 2 - }, - { - "GroupID": 5, - "AffixID": 7, - "Property": "SpeedDelta", - "BaseValue": { - "Value": 2 - }, - "StepValue": { - "Value": 0.3 - }, - "StepNum": 2 - }, - { - "GroupID": 5, - "AffixID": 8, - "Property": "CriticalChanceBase", - "BaseValue": { - "Value": 0.02592 - }, - "StepValue": { - "Value": 0.0032400002 - }, - "StepNum": 2 - }, - { - "GroupID": 5, - "AffixID": 9, - "Property": "CriticalDamageBase", - "BaseValue": { - "Value": 0.05184 - }, - "StepValue": { - "Value": 0.0064800004 - }, - "StepNum": 2 - }, - { - "GroupID": 5, - "AffixID": 10, - "Property": "StatusProbabilityBase", - "BaseValue": { - "Value": 0.034560002 - }, - "StepValue": { - "Value": 0.0043200003 - }, - "StepNum": 2 - }, - { - "GroupID": 5, - "AffixID": 11, - "Property": "StatusResistanceBase", - "BaseValue": { - "Value": 0.034560002 - }, - "StepValue": { - "Value": 0.0043200003 - }, - "StepNum": 2 - }, - { - "GroupID": 5, - "AffixID": 12, - "Property": "BreakDamageAddedRatioBase", - "BaseValue": { - "Value": 0.05184 - }, - "StepValue": { - "Value": 0.0064800004 - }, - "StepNum": 2 - } -] \ No newline at end of file diff --git a/StarRailUID/utils/excel/model.py b/StarRailUID/utils/excel/model.py deleted file mode 100644 index e483db1..0000000 --- a/StarRailUID/utils/excel/model.py +++ /dev/null @@ -1,77 +0,0 @@ -from typing import List, Union - -from msgspec import Struct, convert - -from .read_excel import ( - AvatarPromotion, - EquipmentPromotion, - RelicMainAffix, - RelicSubAffix, -) - - -class PromotionCost(Struct): - ItemID: int - ItemNum: int - - -class PromotionAttr(Struct): - Value: float - - -class SingleAvatarPromotion(Struct): - AvatarID: int - Promotion: int - PromotionCostList: List[PromotionCost] - MaxLevel: int - PlayerLevelRequire: Union[int, None] - WorldLevelRequire: Union[int, None] - AttackBase: PromotionAttr - AttackAdd: PromotionAttr - DefenceBase: PromotionAttr - DefenceAdd: PromotionAttr - HPBase: PromotionAttr - HPAdd: PromotionAttr - SpeedBase: PromotionAttr - CriticalChance: PromotionAttr - CriticalDamage: PromotionAttr - BaseAggro: PromotionAttr - - -class SingleEquipmentPromotion(Struct): - EquipmentID: int - Promotion: int - PromotionCostList: List[PromotionCost] - MaxLevel: int - PlayerLevelRequire: Union[int, None] - WorldLevelRequire: Union[int, None] - BaseHP: PromotionAttr - BaseHPAdd: PromotionAttr - BaseAttack: PromotionAttr - BaseAttackAdd: PromotionAttr - BaseDefence: PromotionAttr - BaseDefenceAdd: PromotionAttr - - -class SingleRelicMainAffix(Struct): - GroupID: int - AffixID: int - Property: str - BaseValue: PromotionAttr - LevelAdd: PromotionAttr - IsAvailable: bool - - -class SingleRelicSubAffix(Struct): - GroupID: int - AffixID: int - Property: str - BaseValue: PromotionAttr - StepValue: PromotionAttr - StepNum: int - - -AvatarPromotionConfig = convert(AvatarPromotion, List[SingleAvatarPromotion]) -EquipmentPromotionConfig = convert(EquipmentPromotion, List[SingleEquipmentPromotion]) -RelicMainAffixConfig = convert(RelicMainAffix, List[SingleRelicMainAffix]) -RelicSubAffixConfig = convert(RelicSubAffix, List[SingleRelicSubAffix]) diff --git a/StarRailUID/utils/excel/read_excel.py b/StarRailUID/utils/excel/read_excel.py index e17547a..c0c8c09 100644 --- a/StarRailUID/utils/excel/read_excel.py +++ b/StarRailUID/utils/excel/read_excel.py @@ -3,17 +3,5 @@ from pathlib import Path EXCEL = Path(__file__).parent -with Path.open(EXCEL / "RelicMainAffixConfig.json", encoding="utf8") as f: - RelicMainAffix = json.load(f) - -with Path.open(EXCEL / "RelicSubAffixConfig.json", encoding="utf8") as f: - RelicSubAffix = json.load(f) - -with Path.open(EXCEL / "AvatarPromotionConfig.json", encoding="utf8") as f: - AvatarPromotion = json.load(f) - -with Path.open(EXCEL / "EquipmentPromotionConfig.json", encoding="utf8") as f: - EquipmentPromotion = json.load(f) - with Path.open(EXCEL / "light_cone_ranks.json", encoding="utf8") as f: light_cone_ranks = json.load(f) diff --git a/StarRailUID/utils/map/AvatarRelicScore.json b/StarRailUID/utils/map/AvatarRelicScore.json deleted file mode 100644 index 2e763b6..0000000 --- a/StarRailUID/utils/map/AvatarRelicScore.json +++ /dev/null @@ -1,884 +0,0 @@ -[ - { - "role": "景元", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "黄泉", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "希儿", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "加拉赫", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.5, - "AttackAddedRatio": 0.5, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0.75, - "SPRatio": 0.75, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "真理医生", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "雪衣", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "阮•梅", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.5, - "AttackAddedRatio": 0.5, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 1.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "黑天鹅", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 1, - "AttackAddedRatio": 1, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0.5, - "CriticalDamageBase": 0.5, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 1, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "花火", - "HPDelta": 0.5, - "HPAddedRatio": 0.5, - "AttackDelta": 0.5, - "AttackAddedRatio": 0.5, - "DefenceDelta": 0.5, - "DefenceAddedRatio": 0.5, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 1.0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 1.0, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.5, - "AttributeAddedRatio": 0.0 - }, - { - "role": "米沙", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.75, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "布洛妮娅", - "HPDelta": 0.75, - "HPAddedRatio": 0.75, - "AttackDelta": 0.5, - "AttackAddedRatio": 0.5, - "DefenceDelta": 0.5, - "DefenceAddedRatio": 0.5, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 1.0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 1.0, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.5, - "AttributeAddedRatio": 0.0 - }, - { - "role": "知更鸟", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 1, - "AttackAddedRatio": 1, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 0.0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 1.0, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 1.0, - "AttributeAddedRatio": 0.5 - }, - { - "role": "波提欧", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.5, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 1.0, - "HealRatio": 0, - "SPRatio": 0.0, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "杰帕德", - "HPDelta": 0.5, - "HPAddedRatio": 0.5, - "AttackDelta": 0.0, - "AttackAddedRatio": 0.0, - "DefenceDelta": 1.0, - "DefenceAddedRatio": 1.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 1.0, - "StatusProbabilityBase": 0.5, - "StatusResistanceBase": 0.5, - "AttributeAddedRatio": 0 - }, - { - "role": "砂金", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.0, - "AttackAddedRatio": 0.0, - "DefenceDelta": 0.75, - "DefenceAddedRatio": 0.75, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.75, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "姬子", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.5, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "瓦尔特", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 1.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "卡芙卡", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 1.0, - "AttackAddedRatio": 1.0, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0.5, - "CriticalDamageBase": 0.0, - "BreakDamageAddedRatioBase": 0.5, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.75, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "彦卿", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.75, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "镜流", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.75, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "白露", - "HPDelta": 1.0, - "HPAddedRatio": 1.0, - "AttackDelta": 0.0, - "AttackAddedRatio": 0.0, - "DefenceDelta": 0.5, - "DefenceAddedRatio": 0.5, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 1, - "SPRatio": 1.0, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.75, - "AttributeAddedRatio": 0 - }, - { - "role": "玲可", - "HPDelta": 1.0, - "HPAddedRatio": 1.0, - "AttackDelta": 0.0, - "AttackAddedRatio": 0.0, - "DefenceDelta": 0.5, - "DefenceAddedRatio": 0.5, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 1, - "SPRatio": 1.0, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.75, - "AttributeAddedRatio": 0 - }, - { - "role": "藿藿", - "HPDelta": 1.0, - "HPAddedRatio": 1.0, - "AttackDelta": 0.0, - "AttackAddedRatio": 0.0, - "DefenceDelta": 0.5, - "DefenceAddedRatio": 0.5, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 1, - "SPRatio": 1.0, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.75, - "AttributeAddedRatio": 0 - }, - { - "role": "符玄", - "HPDelta": 1.0, - "HPAddedRatio": 1.0, - "AttackDelta": 0.0, - "AttackAddedRatio": 0.0, - "DefenceDelta": 0.5, - "DefenceAddedRatio": 0.5, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0.0, - "SPRatio": 0.1, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 1.0, - "AttributeAddedRatio": 0 - }, - { - "role": "罗刹", - "HPDelta": 0.75, - "HPAddedRatio": 0.75, - "AttackDelta": 1.0, - "AttackAddedRatio": 1.0, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 1, - "SPRatio": 1, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.75, - "AttributeAddedRatio": 0 - }, - { - "role": "桂乃芬", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 1, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "驭空", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.5, - "AttackAddedRatio": 0.5, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 1, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "克拉拉", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "三月七", - "HPDelta": 0.5, - "HPAddedRatio": 0.5, - "AttackDelta": 0.0, - "AttackAddedRatio": 0.0, - "DefenceDelta": 1.0, - "DefenceAddedRatio": 1.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 1.0, - "StatusProbabilityBase": 0.5, - "StatusResistanceBase": 0.5, - "AttributeAddedRatio": 0 - }, - { - "role": "丹恒", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "阿兰", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "艾丝妲", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 0, - "BreakDamageAddedRatioBase": 0.75, - "HealRatio": 0, - "SPRatio": 1.0, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "黑塔", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "希露瓦", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "娜塔莎", - "HPDelta": 1.0, - "HPAddedRatio": 1.0, - "AttackDelta": 0.0, - "AttackAddedRatio": 0.0, - "DefenceDelta": 0.5, - "DefenceAddedRatio": 0.5, - "SpeedDelta": 0.75, - "CriticalChanceBase": 0, - "CriticalDamageBase": 0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 1, - "SPRatio": 0.75, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.5, - "AttributeAddedRatio": 0 - }, - { - "role": "佩拉", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 1.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "桑博", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 1.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "虎克", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "青雀", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "停云", - "HPDelta": 0.5, - "HPAddedRatio": 0.5, - "AttackDelta": 1.0, - "AttackAddedRatio": 1.0, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 1.0, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 0 - }, - { - "role": "素裳", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.5, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "开拓者火", - "HPDelta": 0.5, - "HPAddedRatio": 0.5, - "AttackDelta": 0.0, - "AttackAddedRatio": 0.0, - "DefenceDelta": 0.1, - "DefenceAddedRatio": 0.1, - "SpeedDelta": 1.0, - "CriticalChanceBase": 0, - "CriticalDamageBase": 0, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.0, - "StatusProbabilityBase": 1.0, - "StatusResistanceBase": 0.5, - "AttributeAddedRatio": 0 - }, - { - "role": "开拓者物理", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "刃", - "HPDelta": 0.75, - "HPAddedRatio": 0.75, - "AttackDelta": 0.0, - "AttackAddedRatio": 0.0, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "丹恒•饮月", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "银狼", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1.0, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 1.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "托帕&账账", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "银枝", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 0.75, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 0.75, - "CriticalChanceBase": 1, - "CriticalDamageBase": 1, - "BreakDamageAddedRatioBase": 0.0, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 1 - }, - { - "role": "流萤", - "HPDelta": 0.0, - "HPAddedRatio": 0.0, - "AttackDelta": 1, - "AttackAddedRatio": 0.75, - "DefenceDelta": 0.0, - "DefenceAddedRatio": 0.0, - "SpeedDelta": 1, - "CriticalChanceBase": 0.0, - "CriticalDamageBase": 0.0, - "BreakDamageAddedRatioBase": 1.25, - "HealRatio": 0, - "SPRatio": 0.5, - "StatusProbabilityBase": 0.0, - "StatusResistanceBase": 0.0, - "AttributeAddedRatio": 0 - } -] \ No newline at end of file diff --git a/StarRailUID/utils/map/SR_MAP_PATH.py b/StarRailUID/utils/map/SR_MAP_PATH.py deleted file mode 100644 index bd7f0f4..0000000 --- a/StarRailUID/utils/map/SR_MAP_PATH.py +++ /dev/null @@ -1,123 +0,0 @@ -from pathlib import Path -from typing import Dict, List, TypedDict - -from msgspec import Struct, json as msgjson - -from ...version import StarRail_version - - -class RelicSetStatusAdd(Struct): - Property: str - Value: float - - -MAP = Path(__file__).parent / "data" -current = Path(__file__).parent - -version = StarRail_version - -avatarId2Name_fileName = f"avatarId2Name_mapping_{version}.json" -avatarId2EnName_fileName = f"avatarId2EnName_mapping_{version}.json" -EquipmentID2Name_fileName = f"EquipmentID2Name_mapping_{version}.json" -EquipmentID2EnName_fileName = f"EquipmentID2EnName_mapping_{version}.json" -skillId2Name_fileName = f"skillId2Name_mapping_{version}.json" -skillId2Type_fileName = f"skillId2Type_mapping_{version}.json" -Property2Name_fileName = f"Property2Name_mapping_{version}.json" -RelicId2SetId_fileName = f"RelicId2SetId_mapping_{version}.json" -SetId2Name_fileName = f"SetId2Name_mapping_{version}.json" -rankId2Name_fileName = f"rankId2Name_mapping_{version}.json" -characterSkillTree_fileName = f"characterSkillTree_mapping_{version}.json" -avatarId2DamageType_fileName = f"avatarId2DamageType_mapping_{version}.json" -avatarId2Rarity_fileName = f"avatarId2Rarity_mapping_{version}.json" -EquipmentID2AbilityProperty_fileName = ( - f"EquipmentID2AbilityProperty_mapping_{version}.json" -) -RelicSetSkill_fileName = f"RelicSetSkill_mapping_{version}.json" -skillId2AttackType_fileName = f"skillId2AttackType_mapping_{version}.json" -EquipmentID2Rarity_fileName = f"EquipmentID2Rarity_mapping_{version}.json" -RelicId2Rarity_fileName = f"RelicId2Rarity_mapping_{version}.json" -ItemId2Name_fileName = f"ItemId2Name_mapping_{version}.json" -RelicId2MainAffixGroup_fileName = f"RelicId2MainAffixGroup_mapping_{version}.json" -avatarRankSkillUp_fileName = f"avatarRankSkillUp_mapping_{version}.json" - - -class TS(TypedDict): - Name: Dict[str, str] - Icon: Dict[str, str] - - -class LU(TypedDict): - id: str - num: int - - -with Path.open(MAP / avatarId2Name_fileName, encoding="UTF-8") as f: - avatarId2Name = msgjson.decode(f.read(), type=Dict[str, str]) - -with Path.open(MAP / avatarId2EnName_fileName, encoding="UTF-8") as f: - avatarId2EnName = msgjson.decode(f.read(), type=Dict[str, str]) - -with Path.open(MAP / EquipmentID2Name_fileName, encoding="UTF-8") as f: - EquipmentID2Name = msgjson.decode(f.read(), type=Dict[str, str]) - -with Path.open(MAP / EquipmentID2EnName_fileName, encoding="UTF-8") as f: - EquipmentID2EnName = msgjson.decode(f.read(), type=Dict[str, str]) - -with Path.open(MAP / skillId2Name_fileName, encoding="UTF-8") as f: - skillId2Name = msgjson.decode(f.read(), type=Dict[str, str]) - -with Path.open(MAP / skillId2Type_fileName, encoding="UTF-8") as f: - skillId2Effect = msgjson.decode(f.read(), type=Dict[str, str]) - -with Path.open(MAP / Property2Name_fileName, encoding="UTF-8") as f: - Property2Name = msgjson.decode(f.read(), type=Dict[str, str]) - -with Path.open(MAP / RelicId2SetId_fileName, encoding="UTF-8") as f: - RelicId2SetId = msgjson.decode(f.read(), type=Dict[str, int]) - -with Path.open(MAP / SetId2Name_fileName, encoding="UTF-8") as f: - SetId2Name = msgjson.decode(f.read(), type=Dict[str, str]) - -with Path.open(MAP / rankId2Name_fileName, encoding="UTF-8") as f: - rankId2Name = msgjson.decode(f.read(), type=Dict[str, str]) - -# with Path.open(MAP / characterSkillTree_fileName, encoding="UTF-8") as f: -# characterSkillTree = msgjson.decode(f.read(), type=Dict[str, Dict]) - -with Path.open(MAP / avatarId2DamageType_fileName, encoding="UTF-8") as f: - avatarId2DamageType = msgjson.decode(f.read(), type=Dict[str, str]) - -with Path.open(current / "char_alias.json", encoding="UTF-8") as f: - alias_data = msgjson.decode(f.read(), type=Dict[str, Dict[str, List]]) - -with Path.open(MAP / avatarId2Rarity_fileName, encoding="UTF-8") as f: - avatarId2Rarity = msgjson.decode(f.read(), type=Dict[str, str]) - -with Path.open(MAP / EquipmentID2AbilityProperty_fileName, encoding="UTF-8") as f: - EquipmentID2AbilityProperty = msgjson.decode( - f.read(), type=Dict[str, Dict[str, List]] - ) - -with Path.open(MAP / RelicSetSkill_fileName, encoding="UTF-8") as f: - RelicSetSkill = msgjson.decode(f.read(), type=Dict[str, Dict[str, object]]) - -with Path.open(MAP / skillId2AttackType_fileName, encoding="UTF-8") as f: - skillId2AttackType = msgjson.decode(f.read(), type=Dict[str, str]) - -with Path.open(MAP / EquipmentID2Rarity_fileName, encoding="UTF-8") as f: - EquipmentID2Rarity = msgjson.decode(f.read(), type=Dict[str, int]) - -with Path.open(MAP / RelicId2Rarity_fileName, encoding="UTF-8") as f: - RelicId2Rarity = msgjson.decode(f.read(), type=Dict[str, int]) - -with Path.open(MAP / ItemId2Name_fileName, encoding="UTF-8") as f: - ItemId2Name = msgjson.decode(f.read(), type=Dict[str, str]) - -with Path.open(MAP / RelicId2MainAffixGroup_fileName, encoding="UTF-8") as f: - RelicId2MainAffixGroup = msgjson.decode(f.read(), type=Dict[str, int]) - -with Path.open(current / "AvatarRelicScore.json", encoding="UTF-8") as f: - AvatarRelicScore = msgjson.decode(f.read(), type=List[Dict]) - -# with Path.open(MAP / avatarRankSkillUp_fileName, encoding="UTF-8") as f: -# AvatarRankSkillUp = msgjson.decode(f.read(), type=Dict[str, Union[List[LU], None]]) diff --git a/StarRailUID/utils/map/char_alias.json b/StarRailUID/utils/map/char_alias.json deleted file mode 100644 index 2a3f87f..0000000 --- a/StarRailUID/utils/map/char_alias.json +++ /dev/null @@ -1,862 +0,0 @@ -{ - "characters": { - "1001": [ - "三月七", - "三月", - "小三月", - "阿七", - "冷面小粉龙", - "赵相机", - "看板娘", - "纠缠之缘", - "小仓唯", - "xcw" - ], - "1002": [ - "丹恒", - "冷面小青龙", - "闷葫芦" - ], - "1003": [ - "姬子", - "寄子", - "姬子阿姐" - ], - "1004": [ - "瓦尔特", - "瓦尔特杨", - "杨叔" - ], - "1005": [ - "卡芙卡", - "卡妈", - "妈妈" - ], - "1006": [ - "银狼", - "小板鸭", - "酷鸭", - "超级骇客" - ], - "1008": [ - "阿兰" - ], - "1009": [ - "艾丝妲", - "富婆", - "代理站长", - "知名不具" - ], - "1013": [ - "黑塔", - "天才俱乐部#83", - "黑塔女士" - ], - "1101": [ - "布洛妮娅", - "布洛妮娅兰德", - "兰德鸭", - "大板鸭", - "三涡轮增鸭" - ], - "1102": [ - "希儿", - "蝴蝶", - "希尔" - ], - "1103": [ - "希露瓦", - "希露瓦朗道", - "朗道家长女", - "贝洛伯格机械师" - ], - "1104": [ - "杰帕德", - "杰帕德朗道", - "杰哥", - "小杰杰" - ], - "1105": [ - "娜塔莎", - "娜塔", - "娜塔莎姐姐", - "老巫婆" - ], - "1106": [ - "佩拉", - "佩拉格娅谢尔盖耶夫娜", - "佩拉格娅", - "谢尔盖耶夫娜" - ], - "1107": [ - "克拉拉", - "猩红兔子", - "天才侦探少女", - "史瓦罗", - "史瓦罗发射器" - ], - "1108": [ - "桑博", - "桑博科斯基", - "深蓝帅哥", - "布鲁海尔波桑" - ], - "1109": [ - "虎克", - "漆黑的虎克大人" - ], - "1110": [ - "玲可", - "玲宝" - ], - "1111": [ - "卢卡", - "铁臂卢卡", - "熔锤镇的卢卡" - ], - "1112": [ - "托帕&账账", - "托帕账账", - "托帕", - "账账" - ], - "1201": [ - "青雀", - "QQ", - "用牌玩命", - "青总" - ], - "1202": [ - "停云", - "屑狐狸", - "骚狐狸" - ], - "1203": [ - "罗刹", - "主教" - ], - "1204": [ - "景元", - "云骑将军", - "闭目将军", - "景元元", - "实名上网" - ], - "1205": [ - "刃", - "应星", - "阿刃", - "点刀哥", - "笑面小黑龙" - ], - "1206": [ - "素裳", - "李素裳", - "李大枕头", - "热心市民李女士", - "裳裳" - ], - "1207": [ - "驭空", - "星火之狐", - "司舵", - "风雨彩虹7854" - ], - "1208": [ - "符玄", - "符卿", - "符太卜", - "太卜大人", - "无情的卜算机器", - "小玄子", - "Type-C" - ], - "1209": [ - "彦卿", - "马彦卿", - "无敌剑士123" - ], - "1210": [ - "桂乃芬", - "格妮薇儿", - "桂师傅", - "小桂子", - "小桂子Guinevere", - "知名抽象艺术家", - "仙舟刀哥" - ], - "1211": [ - "白露", - "衔药龙女", - "小神医", - "龙尊", - "持明上网" - ], - "1212": [ - "镜流", - "无罅飞光", - "静流" - ], - "1213": [ - "丹恒•饮月", - "饮月君", - "饮月" - ], - "1214": [ - "雪衣", - "判官大人", - "下雪大衣", - "人偶判官" - ], - "1215": [ - "寒鸦", - "寒冷乌鸦", - "话唠判官", - "女鬼" - ], - "1217": [ - "藿藿", - "霍霍", - "小怂包", - "尾巴小跟班", - "抹茶小蛋糕", - "尾巴" - ], - "1301": [ - "加拉赫" - ], - "1302": [ - "银枝" - ], - "1303": [ - "阮•梅", - "阮梅", - "天才俱乐部#81", - "模拟宇宙的神", - "梅神", - "软妹" - ], - "1304": [ - "砂金" - ], - "1305": [ - "真理医生", - "拉帝奥教授", - "石膏头男人", - "义父" - ], - "1306": [ - "花火" - ], - "1307": [ - "黑天鹅", - "丑小鸭" - ], - "1308": [ - "黄泉" - ], - "1309": [ - "知更鸟" - ], - "1310": [ - "流萤" - ], - "1312": [ - "米沙" - ], - "1314": [ - "翡翠" - ], - "1315": [ - "波提欧" - ], - "8000": [ - "开拓者", - "爷", - "星爷", - "恩公", - "复读机", - "垃圾佬", - "灰牡丹", - "脸接大招", - "星核小鬼", - "银河球棒侠", - "热面小白马", - "机巧鸟捕手", - "合格的饲养员", - "天才少女侦探的助手" - ], - "8001": [ - "物理开拓者", - "毁灭开拓者", - "物主", - "物理主", - "毁灭主", - "开拓者物理", - "开拓者毁灭" - ], - "8002": [ - "物理女开拓者", - "毁灭女开拓者", - "物女主", - "物理女主", - "毁灭女主" - ], - "8003": [ - "火开拓者", - "存护开拓者", - "火主", - "存护主", - "开拓者火", - "开拓者存护" - ], - "8004": [ - "火女开拓者", - "存护女开拓者", - "火女主", - "存护女主" - ], - "8005": [ - "虚数开拓者", - "同谐开拓者", - "虚数主", - "同谐主", - "开拓者虚数", - "开拓者同谐" - ], - "8006": [ - "虚数女开拓者", - "同谐女开拓者", - "虚数女主", - "同谐女主" - ] - }, - "light_cones": { - "20000": [ - "锋镝" - ], - "20001": [ - "物穰" - ], - "20002": [ - "天倾" - ], - "20003": [ - "琥珀" - ], - "20004": [ - "幽邃" - ], - "20005": [ - "齐颂" - ], - "20006": [ - "智库" - ], - "20007": [ - "离弦" - ], - "20008": [ - "嘉果" - ], - "20009": [ - "乐圮" - ], - "20010": [ - "戍御" - ], - "20011": [ - "渊环" - ], - "20012": [ - "轮契" - ], - "20013": [ - "灵钥" - ], - "20014": [ - "相抗" - ], - "20015": [ - "蕃息" - ], - "20016": [ - "俱殁" - ], - "20017": [ - "开疆" - ], - "20018": [ - "匿影" - ], - "20019": [ - "调和" - ], - "20020": [ - "睿见" - ], - "21000": [ - "一场术后对话", - "术后对话" - ], - "21001": [ - "晚安与睡颜", - "晚安睡颜" - ], - "21002": [ - "余生的第一天" - ], - "21003": [ - "唯有沉默" - ], - "21004": [ - "记忆中的模样" - ], - "21005": [ - "鼹鼠党欢迎你", - "鼹鼠党" - ], - "21006": [ - "「我」的诞生", - "我的诞生" - ], - "21007": [ - "同一种心情" - ], - "21008": [ - "猎物的视线" - ], - "21009": [ - "朗道的选择" - ], - "21010": [ - "论剑" - ], - "21011": [ - "与行星相会" - ], - "21012": [ - "秘密誓心" - ], - "21013": [ - "别让世界静下来" - ], - "21014": [ - "此时恰好" - ], - "21015": [ - "决心如汗珠般闪耀" - ], - "21016": [ - "宇宙市场趋势" - ], - "21017": [ - "点个关注吧!", - "点个关注吧", - "点个关注" - ], - "21018": [ - "舞!舞!舞!", - "舞舞舞" - ], - "21019": [ - "在蓝天下" - ], - "21020": [ - "天才们的休憩" - ], - "21021": [ - "等价交换" - ], - "21022": [ - "延长记号" - ], - "21023": [ - "我们是地火", - "地火" - ], - "21024": [ - "春水初生" - ], - "21025": [ - "过往未来" - ], - "21026": [ - "汪!散步时间!", - "汪散步时间", - "散步时间" - ], - "21027": [ - "早餐的仪式感" - ], - "21028": [ - "暖夜不会漫长", - "暖夜" - ], - "21029": [ - "后会有期" - ], - "21030": [ - "这就是我啦!", - "这就是我啦" - ], - "21031": [ - "重返幽冥" - ], - "21032": [ - "镂月裁云之意", - "镂月裁云" - ], - "21033": [ - "无处可逃" - ], - "21034": [ - "今日亦是和平的一日", - "和平的一日" - ], - "21035": [ - "何物为真" - ], - "21036": [ - "美梦小镇大冒险", - "美梦小镇" - ], - "21037": [ - "最后的赢家" - ], - "21038": [ - "在火的远处" - ], - "21039": [ - "织造命运之线" - ], - "21040": [ - "银河沦陷日" - ], - "21041": [ - "好戏开演" - ], - "21042": [ - "铭记于心的约定" - ], - "21043": [ - "两个人的演唱会" - ], - "21044": [ - "无边曼舞" - ], - "21045": [ - "谐乐静默之后" - ], - "22000": [ - "新手任务开始前" - ], - "22001": [ - "嘿,我在这儿", - "嘿我在这儿", - "我在这儿" - ], - "22002": [ - "为了明日的旅途" - ], - "23000": [ - "银河铁道之夜", - "姬子专锥" - ], - "23001": [ - "于夜色中", - "希儿专锥" - ], - "23002": [ - "无可取代的东西", - "克拉拉专锥" - ], - "23003": [ - "但战斗还未结束", - "布洛妮娅专锥" - ], - "23004": [ - "以世界之名", - "瓦尔特专锥" - ], - "23005": [ - "制胜的瞬间", - "杰帕德专锥" - ], - "23006": [ - "只需等待", - "卡芙卡专锥" - ], - "23007": [ - "雨一直下", - "银狼专锥" - ], - "23008": [ - "棺的回响", - "罗刹专锥" - ], - "23009": [ - "到不了的彼岸", - "刃专锥" - ], - "23010": [ - "拂晓之前", - "景元专锥" - ], - "23011": [ - "她已闭上双眼", - "符玄专锥" - ], - "23012": [ - "如泥酣眠", - "彦卿专锥" - ], - "23013": [ - "时节不居", - "白露专锥" - ], - "23014": [ - "此身为剑", - "镜流专锥" - ], - "23015": [ - "比阳光更明亮的", - "饮月专锥" - ], - "23016": [ - "烦恼着,幸福着", - "烦恼着幸福着", - "托帕专锥" - ], - "23017": [ - "惊魂夜", - "藿藿专锥" - ], - "23018": [ - "片刻,留在眼底", - "片刻留在眼底", - "银枝专锥" - ], - "23019": [ - "镜中故我", - "阮梅专锥" - ], - "23020": [ - "纯粹思维的洗礼", - "真理医生专锥" - ], - "23021": [ - "游戏尘寰", - "花火专锥" - ], - "23022": [ - "重塑时光之忆", - "黑天鹅专锥" - ], - "23023": [ - "命运从未公平" - ], - "23024": [ - "行于流逝的岸" - ], - "23025": [ - "梦应归于何处" - ], - "23026": [ - "夜色流光溢彩" - ], - "23027": [ - "驶向第二次生命" - ], - "23028": [ - "偏偏希望无价" - ], - "24000": [ - "记一位星神的陨落", - "星神陨落", - "星神的陨落" - ], - "24001": [ - "星海巡航" - ], - "24002": [ - "记忆的质料" - ], - "24003": [ - "孤独的疗愈" - ], - "24004": [ - "不息的演算" - ] - }, - "relic_sets": { - "101": [ - "云无留迹的过客", - "治疗套", - "过客" - ], - "102": [ - "野穗伴行的快枪手", - "普攻套", - "快枪手" - ], - "103": [ - "净庭教宗的圣骑士", - "防御套", - "圣骑士" - ], - "104": [ - "密林卧雪的猎人", - "冰套", - "猎人" - ], - "105": [ - "街头出身的拳王", - "物理套", - "拳王" - ], - "106": [ - "戍卫风雪的铁卫", - "减伤套", - "铁卫" - ], - "107": [ - "熔岩锻铸的火匠", - "火套", - "火匠" - ], - "108": [ - "繁星璀璨的天才", - "量子套", - "天才" - ], - "109": [ - "激奏雷电的乐队", - "雷套", - "乐队" - ], - "110": [ - "晨昏交界的翔鹰", - "风套", - "翔鹰" - ], - "111": [ - "流星追迹的怪盗", - "击破回能套", - "怪盗" - ], - "112": [ - "盗匪荒漠的废土客", - "虚数套", - "废土客" - ], - "113": [ - "宝命长存的莳者", - "生命套", - "莳者" - ], - "114": [ - "骇域漫游的信使", - "速度套", - "信使" - ], - "115": [ - "毁烬焚骨的大公", - "追加套", - "焚骨", - "大公" - ], - "116": [ - "幽锁深牢的系囚", - "持续伤害套", - "幽锁" - ], - "117": [ - "死水深潜的先驱", - "负面套", - "死水", - "先驱" - ], - "118": [ - "机心戏梦的钟表匠", - "击破套", - "机心", - "钟表匠" - ], - "119": [ - "荡除蠹灾的铁骑" - ], - "120": [ - "风举云飞的勇烈" - ], - "301": [ - "太空封印站", - "太空站" - ], - "302": [ - "不老者的仙舟", - "不老者仙舟", - "不老仙舟", - "仙舟" - ], - "303": [ - "泛银河商业公司", - "银河商业公司", - "商业公司", - "公司" - ], - "304": [ - "筑城者的贝洛伯格", - "贝洛伯格", - "筑城者" - ], - "305": [ - "星体差分机", - "差分机" - ], - "306": [ - "停转的萨尔索图", - "萨尔索图", - "停转" - ], - "307": [ - "盗贼公国塔利亚", - "盗贼公国", - "塔利亚" - ], - "308": [ - "生命的翁瓦克", - "翁瓦克" - ], - "309": [ - "繁星竞技场", - "竞技场" - ], - "310": [ - "折断的龙骨", - "龙骨" - ], - "311": [ - "苍穹战线格拉默", - "苍穹战线", - "格拉默" - ], - "312": [ - "梦想之地匹诺康尼", - "梦想之地", - "匹诺康尼" - ], - "313": [ - "无主荒星茨冈尼亚" - ], - "314": [ - "出云显世与高天神国" - ], - "315": [ - "奔狼的都蓝王朝" - ], - "316": [ - "劫火莲灯铸炼宫" - ] - } -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/EquipmentID2AbilityProperty_mapping_2.5.0.json b/StarRailUID/utils/map/data/EquipmentID2AbilityProperty_mapping_2.5.0.json deleted file mode 100644 index e2966cb..0000000 --- a/StarRailUID/utils/map/data/EquipmentID2AbilityProperty_mapping_2.5.0.json +++ /dev/null @@ -1,3202 +0,0 @@ -{ - "20000": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20001": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20002": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20003": { - "1": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "3": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "5": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.32 - } - } - ] - }, - "20004": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20005": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20006": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20007": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20008": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20009": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20010": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20011": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20012": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20013": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20014": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20015": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20016": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20017": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20018": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20019": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "20020": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21000": { - "1": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.08 - } - } - ], - "2": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.1 - } - } - ], - "3": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.12 - } - } - ], - "4": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.14 - } - } - ], - "5": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.16 - } - } - ] - }, - "21001": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21002": { - "1": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.18 - } - } - ], - "3": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "4": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.22 - } - } - ], - "5": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.24 - } - } - ] - }, - "21003": { - "1": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "3": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "5": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.32 - } - } - ] - }, - "21004": { - "1": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.28 - } - } - ], - "2": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.35 - } - } - ], - "3": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.42 - } - } - ], - "4": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.49 - } - } - ], - "5": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.56 - } - } - ] - }, - "21005": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21006": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21008": { - "1": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.2 - } - } - ], - "2": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.25 - } - } - ], - "3": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.3 - } - } - ], - "4": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.35 - } - } - ], - "5": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.4 - } - } - ] - }, - "21009": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21010": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21011": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21012": { - "1": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "2": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.25 - } - } - ], - "3": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.3 - } - } - ], - "4": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.35 - } - } - ], - "5": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.4 - } - } - ] - }, - "21013": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21014": { - "1": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.2 - } - } - ], - "3": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.28 - } - } - ], - "5": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.32 - } - } - ] - }, - "21015": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21016": { - "1": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "3": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "5": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.32 - } - } - ] - }, - "21017": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21018": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21019": { - "1": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "3": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "5": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.32 - } - } - ] - }, - "21020": { - "1": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "3": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "5": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.32 - } - } - ] - }, - "21021": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21022": { - "1": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.2 - } - } - ], - "3": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.28 - } - } - ], - "5": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.32 - } - } - ] - }, - "21023": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21024": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21026": { - "1": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.1 - } - } - ], - "2": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.125 - } - } - ], - "3": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.15 - } - } - ], - "4": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.175 - } - } - ], - "5": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.2 - } - } - ] - }, - "21027": { - "1": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.12 - } - } - ], - "2": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.15 - } - } - ], - "3": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.18 - } - } - ], - "4": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.21 - } - } - ], - "5": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.24 - } - } - ] - }, - "21028": { - "1": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "3": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "5": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.32 - } - } - ] - }, - "21029": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21030": { - "1": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "3": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "5": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.32 - } - } - ] - }, - "21031": { - "1": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.12 - } - } - ], - "2": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.15 - } - } - ], - "3": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.18 - } - } - ], - "4": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.21 - } - } - ], - "5": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.24 - } - } - ] - }, - "21032": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21033": { - "1": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "2": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.3 - } - } - ], - "3": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.36 - } - } - ], - "4": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.42 - } - } - ], - "5": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.48 - } - } - ] - }, - "21034": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "22000": { - "1": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.2 - } - } - ], - "2": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.25 - } - } - ], - "3": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.3 - } - } - ], - "4": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.35 - } - } - ], - "5": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.4 - } - } - ] - }, - "23000": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "23001": { - "1": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.18 - } - } - ], - "2": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.21 - } - } - ], - "3": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.27 - } - } - ], - "5": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.3 - } - } - ] - }, - "23002": { - "1": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "2": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "3": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.32 - } - } - ], - "4": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.36 - } - } - ], - "5": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.4 - } - } - ] - }, - "23003": { - "1": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.1 - } - } - ], - "2": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.12 - } - } - ], - "3": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.14 - } - } - ], - "4": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.16 - } - } - ], - "5": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.18 - } - } - ] - }, - "23004": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "23005": { - "1": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.24 - } - }, - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.24 - } - } - ], - "2": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.28 - } - }, - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.28 - } - } - ], - "3": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.32 - } - }, - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.32 - } - } - ], - "4": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.36 - } - }, - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.36 - } - } - ], - "5": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.4 - } - }, - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.4 - } - } - ] - }, - "23006": { - "1": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "2": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "3": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.32 - } - } - ], - "4": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.36 - } - } - ], - "5": [ - { - "PropertyType": "AllDamageTypeAddedRatio", - "Value": { - "Value": 0.4 - } - } - ] - }, - "23007": { - "1": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.24 - } - } - ], - "2": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.28 - } - } - ], - "3": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.32 - } - } - ], - "4": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.36 - } - } - ], - "5": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.4 - } - } - ] - }, - "23008": { - "1": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "2": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "3": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.32 - } - } - ], - "4": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.36 - } - } - ], - "5": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.4 - } - } - ] - }, - "23009": { - "1": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.18 - } - }, - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.18 - } - } - ], - "2": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.21 - } - }, - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.21 - } - } - ], - "3": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.24 - } - }, - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.27 - } - }, - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.27 - } - } - ], - "5": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.3 - } - }, - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.3 - } - } - ] - }, - "23010": { - "1": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.36 - } - } - ], - "2": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.42 - } - } - ], - "3": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.48 - } - } - ], - "4": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.54 - } - } - ], - "5": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.6 - } - } - ] - }, - "23011": { - "1": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.24 - } - }, - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.12 - } - } - ], - "2": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.28 - } - }, - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.14 - } - } - ], - "3": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.32 - } - }, - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.16 - } - } - ], - "4": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.36 - } - }, - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.18 - } - } - ], - "5": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.4 - } - }, - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.2 - } - } - ] - }, - "23012": { - "1": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.3 - } - } - ], - "2": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.35 - } - } - ], - "3": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.4 - } - } - ], - "4": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.45 - } - } - ], - "5": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.5 - } - } - ] - }, - "23013": { - "1": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.18 - } - }, - { - "PropertyType": "HealRatioBase", - "Value": { - "Value": 0.12 - } - } - ], - "2": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.21 - } - }, - { - "PropertyType": "HealRatioBase", - "Value": { - "Value": 0.14 - } - } - ], - "3": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.24 - } - }, - { - "PropertyType": "HealRatioBase", - "Value": { - "Value": 0.16 - } - } - ], - "4": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.27 - } - }, - { - "PropertyType": "HealRatioBase", - "Value": { - "Value": 0.18 - } - } - ], - "5": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.3 - } - }, - { - "PropertyType": "HealRatioBase", - "Value": { - "Value": 0.2 - } - } - ] - }, - "23014": { - "1": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.2 - } - } - ], - "2": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.23 - } - } - ], - "3": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.26 - } - } - ], - "4": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.29 - } - } - ], - "5": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.32 - } - } - ] - }, - "23015": { - "1": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.18 - } - } - ], - "2": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.21 - } - } - ], - "3": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.27 - } - } - ], - "5": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.3 - } - } - ] - }, - "23016": { - "1": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.18 - } - } - ], - "2": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.21 - } - } - ], - "3": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.27 - } - } - ], - "5": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.3 - } - } - ] - }, - "24000": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "24001": { - "1": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.08 - } - } - ], - "2": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.1 - } - } - ], - "3": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.12 - } - } - ], - "4": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.14 - } - } - ], - "5": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.16 - } - } - ] - }, - "24002": { - "1": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.08 - } - } - ], - "2": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.1 - } - } - ], - "3": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.12 - } - } - ], - "4": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.14 - } - } - ], - "5": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.16 - } - } - ] - }, - "21025": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "23017": { - "1": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.12 - } - } - ], - "2": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.14 - } - } - ], - "3": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.16 - } - } - ], - "4": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.18 - } - } - ], - "5": [ - { - "PropertyType": "SPRatioBase", - "Value": { - "Value": 0.2 - } - } - ] - }, - "23018": { - "1": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.36 - } - } - ], - "2": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.42 - } - } - ], - "3": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.48 - } - } - ], - "4": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.54 - } - } - ], - "5": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.6 - } - } - ] - }, - "23019": { - "1": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.6 - } - } - ], - "2": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.7 - } - } - ], - "3": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.8 - } - } - ], - "4": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.9 - } - } - ], - "5": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 1 - } - } - ] - }, - "23021": { - "1": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.32 - } - } - ], - "2": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.39 - } - } - ], - "3": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.46 - } - } - ], - "4": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.53 - } - } - ], - "5": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.6 - } - } - ] - }, - "23023": { - "1": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.4 - } - } - ], - "2": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.46 - } - } - ], - "3": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.52 - } - } - ], - "4": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.58 - } - } - ], - "5": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.64 - } - } - ] - }, - "23020": { - "1": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.2 - } - } - ], - "2": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.23 - } - } - ], - "3": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.26 - } - } - ], - "4": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.29 - } - } - ], - "5": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.32 - } - } - ] - }, - "24003": { - "1": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.2 - } - } - ], - "2": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.25 - } - } - ], - "3": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.3 - } - } - ], - "4": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.35 - } - } - ], - "5": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.4 - } - } - ] - }, - "21035": { - "1": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.24 - } - } - ], - "2": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.3 - } - } - ], - "3": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.36 - } - } - ], - "4": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.42 - } - } - ], - "5": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.48 - } - } - ] - }, - "21036": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21037": { - "1": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.12 - } - } - ], - "2": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.14 - } - } - ], - "3": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "4": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.18 - } - } - ], - "5": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.2 - } - } - ] - }, - "21038": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "21039": { - "1": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.12 - } - } - ], - "2": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.14 - } - } - ], - "3": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.16 - } - } - ], - "4": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.18 - } - } - ], - "5": [ - { - "PropertyType": "StatusResistanceBase", - "Value": { - "Value": 0.2 - } - } - ] - }, - "21040": { - "1": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.18 - } - } - ], - "3": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "4": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.22 - } - } - ], - "5": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.24 - } - } - ] - }, - "21041": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "23022": { - "1": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.4 - } - } - ], - "2": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.45 - } - } - ], - "3": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.5 - } - } - ], - "4": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.55 - } - } - ], - "5": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.6 - } - } - ] - }, - "21007": { - "1": [ - { - "PropertyType": "HealRatioBase", - "Value": { - "Value": 0.1 - } - } - ], - "2": [ - { - "PropertyType": "HealRatioBase", - "Value": { - "Value": 0.125 - } - } - ], - "3": [ - { - "PropertyType": "HealRatioBase", - "Value": { - "Value": 0.15 - } - } - ], - "4": [ - { - "PropertyType": "HealRatioBase", - "Value": { - "Value": 0.175 - } - } - ], - "5": [ - { - "PropertyType": "HealRatioBase", - "Value": { - "Value": 0.2 - } - } - ] - }, - "24004": { - "1": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.08 - } - } - ], - "2": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.09 - } - } - ], - "3": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.1 - } - } - ], - "4": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.11 - } - } - ], - "5": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.12 - } - } - ] - }, - "22001": { - "1": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.08 - } - } - ], - "2": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.09 - } - } - ], - "3": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.1 - } - } - ], - "4": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.11 - } - } - ], - "5": [ - { - "PropertyType": "HPAddedRatio", - "Value": { - "Value": 0.12 - } - } - ] - }, - "23024": { - "1": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.36 - } - } - ], - "2": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.42 - } - } - ], - "3": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.48 - } - } - ], - "4": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.54 - } - } - ], - "5": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.6 - } - } - ] - }, - "23025": { - "1": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.6 - } - } - ], - "2": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.7 - } - } - ], - "3": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.8 - } - } - ], - "4": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.9 - } - } - ], - "5": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 1 - } - } - ] - }, - "21042": { - "1": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.28 - } - } - ], - "2": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.35 - } - } - ], - "3": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.42 - } - } - ], - "4": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.49 - } - } - ], - "5": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.56 - } - } - ] - }, - "21043": { - "1": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "3": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "5": [ - { - "PropertyType": "DefenceAddedRatio", - "Value": { - "Value": 0.32 - } - } - ] - }, - "23027": { - "1": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.6 - } - } - ], - "2": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.7 - } - } - ], - "3": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.8 - } - } - ], - "4": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.9 - } - } - ], - "5": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 1 - } - } - ] - }, - "23028": { - "1": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.19 - } - } - ], - "3": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.22 - } - } - ], - "4": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.25 - } - } - ], - "5": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.28 - } - } - ] - }, - "21044": { - "1": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.08 - } - } - ], - "2": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.1 - } - } - ], - "3": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.12 - } - } - ], - "4": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.14 - } - } - ], - "5": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.16 - } - } - ] - }, - "21045": { - "1": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.28 - } - } - ], - "2": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.35 - } - } - ], - "3": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.42 - } - } - ], - "4": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.49 - } - } - ], - "5": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.56 - } - } - ] - }, - "21046": { - "1": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "3": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "5": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.32 - } - } - ] - }, - "21047": { - "1": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.28 - } - } - ], - "2": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.35 - } - } - ], - "3": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.42 - } - } - ], - "4": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.49 - } - } - ], - "5": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.56 - } - } - ] - }, - "22002": { - "1": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.16 - } - } - ], - "2": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.2 - } - } - ], - "3": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.24 - } - } - ], - "4": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.28 - } - } - ], - "5": [ - { - "PropertyType": "AttackAddedRatio", - "Value": { - "Value": 0.32 - } - } - ] - }, - "23026": { - "1": [], - "2": [], - "3": [], - "4": [], - "5": [] - }, - "23030": { - "1": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.36 - } - } - ], - "2": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.42 - } - } - ], - "3": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.48 - } - } - ], - "4": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.54 - } - } - ], - "5": [ - { - "PropertyType": "CriticalDamageBase", - "Value": { - "Value": 0.6 - } - } - ] - }, - "23029": { - "1": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.6 - } - } - ], - "2": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.7 - } - } - ], - "3": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.8 - } - } - ], - "4": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 0.9 - } - } - ], - "5": [ - { - "PropertyType": "StatusProbabilityBase", - "Value": { - "Value": 1 - } - } - ] - }, - "23031": { - "1": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.15 - } - } - ], - "2": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.175 - } - } - ], - "3": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.2 - } - } - ], - "4": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.225 - } - } - ], - "5": [ - { - "PropertyType": "CriticalChanceBase", - "Value": { - "Value": 0.25 - } - } - ] - }, - "23032": { - "1": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.6 - } - } - ], - "2": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.7 - } - } - ], - "3": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.8 - } - } - ], - "4": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 0.9 - } - } - ], - "5": [ - { - "PropertyType": "BreakDamageAddedRatioBase", - "Value": { - "Value": 1 - } - } - ] - } -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/EquipmentID2EnName_mapping_2.5.0.json b/StarRailUID/utils/map/data/EquipmentID2EnName_mapping_2.5.0.json deleted file mode 100644 index 064f345..0000000 --- a/StarRailUID/utils/map/data/EquipmentID2EnName_mapping_2.5.0.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "20000": "Arrows", - "20001": "Cornucopia", - "20002": "CollapsingSky", - "20003": "Amber", - "20004": "Void", - "20005": "Chorus", - "20006": "DataBank", - "20007": "DartingArrow", - "20008": "FineFruit", - "20009": "ShatteredHome", - "20010": "Defense", - "20011": "Loop", - "20012": "MeshingCogs", - "20013": "Passkey", - "20014": "Adversarial", - "20015": "Multiplication", - "20016": "MutualDemise", - "20017": "Pioneering", - "20018": "HiddenShadow", - "20019": "Mediation", - "20020": "Sagacity", - "21000": "Post-OpConversation", - "21001": "GoodNightandSleepWell", - "21002": "DayOneofMyNewLife", - "21003": "OnlySilenceRemains", - "21004": "MemoriesofthePast", - "21005": "TheMolesWelcomeYou", - "21006": "TheBirthoftheSelf", - "21008": "EyesofthePrey", - "21009": "Landau'sChoice", - "21010": "Swordplay", - "21011": "PlanetaryRendezvous", - "21012": "ASecretVow", - "21013": "MaketheWorldClamor", - "21014": "PerfectTiming", - "21015": "ResolutionShinesAsPearlsofSweat", - "21016": "TrendoftheUniversalMarket", - "21017": "SubscribeforMore!", - "21018": "Dance!Dance!Dance!", - "21019": "UndertheBlueSky", - "21020": "Geniuses'Repose", - "21021": "QuidProQuo", - "21022": "Fermata", - "21023": "WeAreWildfire", - "21024": "RiverFlowsinSpring", - "21026": "Woof!WalkTime!", - "21027": "TheSeriousnessofBreakfast", - "21028": "WarmthShortensColdNights", - "21029": "WeWillMeetAgain", - "21030": "ThisIsMe!", - "21031": "ReturntoDarkness", - "21032": "CarvetheMoon,WeavetheClouds", - "21033": "NowheretoRun", - "21034": "TodayIsAnotherPeacefulDay", - "22000": "BeforetheTutorialMissionStarts", - "23000": "NightontheMilkyWay", - "23001": "IntheNight", - "23002": "SomethingIrreplaceable", - "23003": "ButtheBattleIsn'tOver", - "23004": "IntheNameoftheWorld", - "23005": "MomentofVictory", - "23006": "PatienceIsAllYouNeed", - "23007": "IncessantRain", - "23008": "EchoesoftheCoffin", - "23009": "TheUnreachableSide", - "23010": "BeforeDawn", - "23011": "SheAlreadyShutHerEyes", - "23012": "SleepLiketheDead", - "23013": "TimeWaitsforNoOne", - "23014": "IShallBeMyOwnSword", - "23015": "BrighterThantheSun", - "23016": "Worrisome,Blissful", - "24000": "OntheFallofanAeon", - "24001": "CruisingintheStellarSea", - "24002": "TextureofMemories", - "21025": "PastandFuture", - "23017": "NightofFright", - "23018": "AnInstantBeforeAGaze", - "23019": "PastSelfinMirror", - "23021": "EarthlyEscapade", - "23023": "InherentlyUnjustDestiny", - "23020": "BaptismofPureThought", - "24003": "SolitaryHealing", - "21035": "WhatIsReal?", - "21036": "DreamvilleAdventure", - "21037": "FinalVictor", - "21038": "FlamesAfar", - "21039": "Destiny'sThreadsForewoven", - "21040": "TheDayTheCosmosFell", - "21041": "It'sShowtime", - "23022": "ReforgedRemembrance", - "21007": "SharedFeeling", - "24004": "EternalCalculus", - "22001": "Hey,OverHere", - "23024": "AlongthePassingShore", - "23025": "WhereaboutsShouldDreamsRest", - "21042": "IndeliblePromise", - "21043": "ConcertforTwo", - "23027": "SailingTowardsaSecondLife", - "23028": "YetHopeIsPriceless", - "21044": "BoundlessChoreo", - "21045": "AftertheCharmonyFall", - "21046": "PoisedtoBloom", - "21047": "ShadowedbyNight", - "22002": "ForTomorrow'sJourney", - "23026": "FlowingNightglow", - "23030": "DanceatSunset", - "23029": "ThoseManySprings", - "23031": "IVentureForthtoHunt", - "23032": "ScentAloneStaysTrue" -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/EquipmentID2Name_mapping_2.5.0.json b/StarRailUID/utils/map/data/EquipmentID2Name_mapping_2.5.0.json deleted file mode 100644 index d89f257..0000000 --- a/StarRailUID/utils/map/data/EquipmentID2Name_mapping_2.5.0.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "20000": "锋镝", - "20001": "物穰", - "20002": "天倾", - "20003": "琥珀", - "20004": "幽邃", - "20005": "齐颂", - "20006": "智库", - "20007": "离弦", - "20008": "嘉果", - "20009": "乐圮", - "20010": "戍御", - "20011": "渊环", - "20012": "轮契", - "20013": "灵钥", - "20014": "相抗", - "20015": "蕃息", - "20016": "俱殁", - "20017": "开疆", - "20018": "匿影", - "20019": "调和", - "20020": "睿见", - "21000": "一场术后对话", - "21001": "晚安与睡颜", - "21002": "余生的第一天", - "21003": "唯有沉默", - "21004": "记忆中的模样", - "21005": "鼹鼠党欢迎你", - "21006": "「我」的诞生", - "21008": "猎物的视线", - "21009": "朗道的选择", - "21010": "论剑", - "21011": "与行星相会", - "21012": "秘密誓心", - "21013": "别让世界静下来", - "21014": "此时恰好", - "21015": "决心如汗珠般闪耀", - "21016": "宇宙市场趋势", - "21017": "点个关注吧!", - "21018": "舞!舞!舞!", - "21019": "在蓝天下", - "21020": "天才们的休憩", - "21021": "等价交换", - "21022": "延长记号", - "21023": "我们是地火", - "21024": "春水初生", - "21026": "汪!散步时间!", - "21027": "早餐的仪式感", - "21028": "暖夜不会漫长", - "21029": "后会有期", - "21030": "这就是我啦!", - "21031": "重返幽冥", - "21032": "镂月裁云之意", - "21033": "无处可逃", - "21034": "今日亦是和平的一日", - "22000": "新手任务开始前", - "23000": "银河铁道之夜", - "23001": "于夜色中", - "23002": "无可取代的东西", - "23003": "但战斗还未结束", - "23004": "以世界之名", - "23005": "制胜的瞬间", - "23006": "只需等待", - "23007": "雨一直下", - "23008": "棺的回响", - "23009": "到不了的彼岸", - "23010": "拂晓之前", - "23011": "她已闭上双眼", - "23012": "如泥酣眠", - "23013": "时节不居", - "23014": "此身为剑", - "23015": "比阳光更明亮的", - "23016": "烦恼着,幸福着", - "24000": "记一位星神的陨落", - "24001": "星海巡航", - "24002": "记忆的质料", - "21025": "过往未来", - "23017": "惊魂夜", - "23018": "片刻,留在眼底", - "23019": "镜中故我", - "23021": "游戏尘寰", - "23023": "命运从未公平", - "23020": "纯粹思维的洗礼", - "24003": "孤独的疗愈", - "21035": "何物为真", - "21036": "美梦小镇大冒险", - "21037": "最后的赢家", - "21038": "在火的远处", - "21039": "织造命运之线", - "21040": "银河沦陷日", - "21041": "好戏开演", - "23022": "重塑时光之忆", - "21007": "同一种心情", - "24004": "不息的演算", - "22001": "嘿,我在这儿", - "23024": "行于流逝的岸", - "23025": "梦应归于何处", - "21042": "铭记于心的约定", - "21043": "两个人的演唱会", - "23027": "驶向第二次生命", - "23028": "偏偏希望无价", - "21044": "无边曼舞", - "21045": "谐乐静默之后", - "21046": "芳华待灼", - "21047": "黑夜如影随行", - "22002": "为了明日的旅途", - "23026": "夜色流光溢彩", - "23030": "落日时起舞", - "23029": "那无数个春天", - "23031": "我将,巡征追猎", - "23032": "唯有香如故" -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/EquipmentID2Rarity_mapping_2.5.0.json b/StarRailUID/utils/map/data/EquipmentID2Rarity_mapping_2.5.0.json deleted file mode 100644 index b6c19a9..0000000 --- a/StarRailUID/utils/map/data/EquipmentID2Rarity_mapping_2.5.0.json +++ /dev/null @@ -1,112 +0,0 @@ -{ - "20000": 3, - "20001": 3, - "20002": 3, - "20003": 3, - "20004": 3, - "20005": 3, - "20006": 3, - "20007": 3, - "20008": 3, - "20009": 3, - "20010": 3, - "20011": 3, - "20012": 3, - "20013": 3, - "20014": 3, - "20015": 3, - "20016": 3, - "20017": 3, - "20018": 3, - "20019": 3, - "20020": 3, - "21000": 4, - "21001": 4, - "21002": 4, - "21003": 4, - "21004": 4, - "21005": 4, - "21006": 4, - "21007": 4, - "21008": 4, - "21009": 4, - "21010": 4, - "21011": 4, - "21012": 4, - "21013": 4, - "21014": 4, - "21015": 4, - "21016": 4, - "21017": 4, - "21018": 4, - "21019": 4, - "21020": 4, - "21021": 4, - "21022": 4, - "21023": 4, - "21024": 4, - "21025": 4, - "21026": 4, - "21027": 4, - "21028": 4, - "21029": 4, - "21030": 4, - "21031": 4, - "21032": 4, - "21033": 4, - "21034": 4, - "21035": 4, - "21036": 4, - "21037": 4, - "21038": 4, - "21039": 4, - "21040": 4, - "21041": 4, - "21042": 4, - "21043": 4, - "21044": 4, - "21045": 4, - "21046": 4, - "21047": 4, - "22000": 4, - "22001": 4, - "22002": 4, - "23000": 5, - "23001": 5, - "23002": 5, - "23003": 5, - "23004": 5, - "23005": 5, - "23006": 5, - "23007": 5, - "23008": 5, - "23009": 5, - "23010": 5, - "23011": 5, - "23012": 5, - "23013": 5, - "23014": 5, - "23015": 5, - "23016": 5, - "23017": 5, - "23018": 5, - "23019": 5, - "23020": 5, - "23021": 5, - "23022": 5, - "23023": 5, - "23024": 5, - "23025": 5, - "23026": 5, - "23027": 5, - "23028": 5, - "23029": 5, - "23030": 5, - "23031": 5, - "23032": 5, - "24000": 5, - "24001": 5, - "24002": 5, - "24003": 5, - "24004": 5 -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/ItemId2Name_mapping_2.5.0.json b/StarRailUID/utils/map/data/ItemId2Name_mapping_2.5.0.json deleted file mode 100644 index 2b64f16..0000000 --- a/StarRailUID/utils/map/data/ItemId2Name_mapping_2.5.0.json +++ /dev/null @@ -1,472 +0,0 @@ -{ - "31011": "过客的逢春木簪", - "31012": "过客的游龙臂鞲", - "31013": "过客的残绣风衣", - "31014": "过客的冥途游履", - "31021": "快枪手的野穗毡帽", - "31022": "快枪手的粗革手套", - "31023": "快枪手的猎风披肩", - "31024": "快枪手的铆钉马靴", - "31031": "圣骑的宽恕盔面", - "31032": "圣骑的沉默誓环", - "31033": "圣骑的肃穆胸甲", - "31034": "圣骑的秩序铁靴", - "31041": "雪猎的荒神兜帽", - "31042": "雪猎的巨蜥手套", - "31043": "雪猎的冰龙披风", - "31044": "雪猎的鹿皮软靴", - "31051": "拳王的冠军护头", - "31052": "拳王的重炮拳套", - "31053": "拳王的贴身护胸", - "31054": "拳王的弧步战靴", - "31061": "铁卫的铸铁面盔", - "31062": "铁卫的银鳞手甲", - "31063": "铁卫的旧制军服", - "31064": "铁卫的白银护胫", - "31071": "火匠的黑曜目镜", - "31072": "火匠的御火戒指", - "31073": "火匠的阻燃围裙", - "31074": "火匠的合金义肢", - "31081": "天才的超距遥感", - "31082": "天才的频变捕手", - "31083": "天才的元域深潜", - "31084": "天才的引力漫步", - "31091": "乐队的偏光墨镜", - "31092": "乐队的巡演手绳", - "31093": "乐队的钉刺皮衣", - "31094": "乐队的铆钉短靴", - "31101": "翔鹰的长喙头盔", - "31102": "翔鹰的鹰击指环", - "31103": "翔鹰的翼装束带", - "31104": "翔鹰的绒羽绑带", - "31111": "怪盗的千人假面", - "31112": "怪盗的绘纹手套", - "31113": "怪盗的纤钢爪钩", - "31114": "怪盗的流星快靴", - "31121": "废土客的呼吸面罩", - "31122": "废土客的荒漠终端", - "31123": "废土客的修士长袍", - "31124": "废土客的动力腿甲", - "31131": "莳者的复明义眼", - "31132": "莳者的机巧木手", - "31133": "莳者的承露羽衣", - "31134": "莳者的天人丝履", - "31141": "信使的全息目镜", - "31142": "信使的百变义手", - "31143": "信使的密信挎包", - "31144": "信使的酷跑板鞋", - "31151": "大公的冥焰冠冕", - "31152": "大公的绒火指套", - "31153": "大公的蒙恩长袍", - "31154": "大公的绅雅礼靴", - "31161": "系囚的合啮拘笼", - "31162": "系囚的铅石梏铐", - "31163": "系囚的幽闭缚束", - "31164": "系囚的绝足锁桎", - "31171": "先驱的绝热围壳", - "31172": "先驱的虚极罗盘", - "31173": "先驱的密合铅衣", - "31174": "先驱的泊星桩锚", - "31181": "钟表匠的极目透镜", - "31182": "钟表匠的交运腕表", - "31183": "钟表匠的空幻礼服", - "31184": "钟表匠的隐梦革履", - "31191": "铁骑的索敌战盔", - "31192": "铁骑的摧坚铁腕", - "31193": "铁骑的银影装甲", - "31194": "铁骑的行空护胫", - "31201": "勇烈的玄枵面甲", - "31202": "勇烈的钩爪腕甲", - "31203": "勇烈的飞翎瓷甲", - "31204": "勇烈的逐猎腿甲", - "33015": "「黑塔」的空间站点", - "33016": "「黑塔」的漫历轨迹", - "33025": "罗浮仙舟的天外楼船", - "33026": "罗浮仙舟的建木枝蔓", - "33035": "公司的巨构总部", - "33036": "公司的贸易航道", - "33045": "贝洛伯格的存护堡垒", - "33046": "贝洛伯格的铁卫防线", - "33055": "螺丝星的机械烈阳", - "33056": "螺丝星的环星孔带", - "33065": "萨尔索图的移动城市", - "33066": "萨尔索图的晨昏界线", - "33075": "塔利亚的钉壳小镇", - "33076": "塔利亚的裸皮电线", - "33085": "翁瓦克的诞生之岛", - "33086": "翁瓦克的环岛海岸", - "33095": "泰科铵的镭射球场", - "33096": "泰科铵的弧光赛道", - "33105": "伊须磨洲的残船鲸落", - "33106": "伊须磨洲的坼裂缆索", - "33115": "格拉默的铁骑兵团", - "33116": "格拉默的寂静坟碑", - "33125": "匹诺康尼的堂皇酒店", - "33126": "匹诺康尼的逐梦轨道", - "33135": "茨冈尼亚的母神卧榻", - "33136": "茨冈尼亚的轮回纽结", - "33145": "出云的祸津众神", - "33146": "出云的终始一刀", - "33155": "都蓝的穹窿金帐", - "33156": "都蓝的器兽缰辔", - "33165": "铸炼宫的莲华灯芯", - "33166": "铸炼宫的焰轮天绸", - "33175": "露莎卡的水朽苍都", - "33176": "露莎卡的双生航道", - "33185": "蕉乐园的蕉芯广场", - "33186": "蕉乐园的模因线缆", - "41011": "过客的逢春木簪", - "41012": "过客的游龙臂鞲", - "41013": "过客的残绣风衣", - "41014": "过客的冥途游履", - "41021": "快枪手的野穗毡帽", - "41022": "快枪手的粗革手套", - "41023": "快枪手的猎风披肩", - "41024": "快枪手的铆钉马靴", - "41031": "圣骑的宽恕盔面", - "41032": "圣骑的沉默誓环", - "41033": "圣骑的肃穆胸甲", - "41034": "圣骑的秩序铁靴", - "41041": "雪猎的荒神兜帽", - "41042": "雪猎的巨蜥手套", - "41043": "雪猎的冰龙披风", - "41044": "雪猎的鹿皮软靴", - "41051": "拳王的冠军护头", - "41052": "拳王的重炮拳套", - "41053": "拳王的贴身护胸", - "41054": "拳王的弧步战靴", - "41061": "铁卫的铸铁面盔", - "41062": "铁卫的银鳞手甲", - "41063": "铁卫的旧制军服", - "41064": "铁卫的白银护胫", - "41071": "火匠的黑曜目镜", - "41072": "火匠的御火戒指", - "41073": "火匠的阻燃围裙", - "41074": "火匠的合金义肢", - "41081": "天才的超距遥感", - "41082": "天才的频变捕手", - "41083": "天才的元域深潜", - "41084": "天才的引力漫步", - "41091": "乐队的偏光墨镜", - "41092": "乐队的巡演手绳", - "41093": "乐队的钉刺皮衣", - "41094": "乐队的铆钉短靴", - "41101": "翔鹰的长喙头盔", - "41102": "翔鹰的鹰击指环", - "41103": "翔鹰的翼装束带", - "41104": "翔鹰的绒羽绑带", - "41111": "怪盗的千人假面", - "41112": "怪盗的绘纹手套", - "41113": "怪盗的纤钢爪钩", - "41114": "怪盗的流星快靴", - "41121": "废土客的呼吸面罩", - "41122": "废土客的荒漠终端", - "41123": "废土客的修士长袍", - "41124": "废土客的动力腿甲", - "41131": "莳者的复明义眼", - "41132": "莳者的机巧木手", - "41133": "莳者的承露羽衣", - "41134": "莳者的天人丝履", - "41141": "信使的全息目镜", - "41142": "信使的百变义手", - "41143": "信使的密信挎包", - "41144": "信使的酷跑板鞋", - "41151": "大公的冥焰冠冕", - "41152": "大公的绒火指套", - "41153": "大公的蒙恩长袍", - "41154": "大公的绅雅礼靴", - "41161": "系囚的合啮拘笼", - "41162": "系囚的铅石梏铐", - "41163": "系囚的幽闭缚束", - "41164": "系囚的绝足锁桎", - "41171": "先驱的绝热围壳", - "41172": "先驱的虚极罗盘", - "41173": "先驱的密合铅衣", - "41174": "先驱的泊星桩锚", - "41181": "钟表匠的极目透镜", - "41182": "钟表匠的交运腕表", - "41183": "钟表匠的空幻礼服", - "41184": "钟表匠的隐梦革履", - "41191": "铁骑的索敌战盔", - "41192": "铁骑的摧坚铁腕", - "41193": "铁骑的银影装甲", - "41194": "铁骑的行空护胫", - "41201": "勇烈的玄枵面甲", - "41202": "勇烈的钩爪腕甲", - "41203": "勇烈的飞翎瓷甲", - "41204": "勇烈的逐猎腿甲", - "43015": "「黑塔」的空间站点", - "43016": "「黑塔」的漫历轨迹", - "43025": "罗浮仙舟的天外楼船", - "43026": "罗浮仙舟的建木枝蔓", - "43035": "公司的巨构总部", - "43036": "公司的贸易航道", - "43045": "贝洛伯格的存护堡垒", - "43046": "贝洛伯格的铁卫防线", - "43055": "螺丝星的机械烈阳", - "43056": "螺丝星的环星孔带", - "43065": "萨尔索图的移动城市", - "43066": "萨尔索图的晨昏界线", - "43075": "塔利亚的钉壳小镇", - "43076": "塔利亚的裸皮电线", - "43085": "翁瓦克的诞生之岛", - "43086": "翁瓦克的环岛海岸", - "43095": "泰科铵的镭射球场", - "43096": "泰科铵的弧光赛道", - "43105": "伊须磨洲的残船鲸落", - "43106": "伊须磨洲的坼裂缆索", - "43115": "格拉默的铁骑兵团", - "43116": "格拉默的寂静坟碑", - "43125": "匹诺康尼的堂皇酒店", - "43126": "匹诺康尼的逐梦轨道", - "43135": "茨冈尼亚的母神卧榻", - "43136": "茨冈尼亚的轮回纽结", - "43145": "出云的祸津众神", - "43146": "出云的终始一刀", - "43155": "都蓝的穹窿金帐", - "43156": "都蓝的器兽缰辔", - "43165": "铸炼宫的莲华灯芯", - "43166": "铸炼宫的焰轮天绸", - "43175": "露莎卡的水朽苍都", - "43176": "露莎卡的双生航道", - "43185": "蕉乐园的蕉芯广场", - "43186": "蕉乐园的模因线缆", - "51011": "过客的逢春木簪", - "51012": "过客的游龙臂鞲", - "51013": "过客的残绣风衣", - "51014": "过客的冥途游履", - "51021": "快枪手的野穗毡帽", - "51022": "快枪手的粗革手套", - "51023": "快枪手的猎风披肩", - "51024": "快枪手的铆钉马靴", - "51031": "圣骑的宽恕盔面", - "51032": "圣骑的沉默誓环", - "51033": "圣骑的肃穆胸甲", - "51034": "圣骑的秩序铁靴", - "51041": "雪猎的荒神兜帽", - "51042": "雪猎的巨蜥手套", - "51043": "雪猎的冰龙披风", - "51044": "雪猎的鹿皮软靴", - "51051": "拳王的冠军护头", - "51052": "拳王的重炮拳套", - "51053": "拳王的贴身护胸", - "51054": "拳王的弧步战靴", - "51061": "铁卫的铸铁面盔", - "51062": "铁卫的银鳞手甲", - "51063": "铁卫的旧制军服", - "51064": "铁卫的白银护胫", - "51071": "火匠的黑曜目镜", - "51072": "火匠的御火戒指", - "51073": "火匠的阻燃围裙", - "51074": "火匠的合金义肢", - "51081": "天才的超距遥感", - "51082": "天才的频变捕手", - "51083": "天才的元域深潜", - "51084": "天才的引力漫步", - "51091": "乐队的偏光墨镜", - "51092": "乐队的巡演手绳", - "51093": "乐队的钉刺皮衣", - "51094": "乐队的铆钉短靴", - "51101": "翔鹰的长喙头盔", - "51102": "翔鹰的鹰击指环", - "51103": "翔鹰的翼装束带", - "51104": "翔鹰的绒羽绑带", - "51111": "怪盗的千人假面", - "51112": "怪盗的绘纹手套", - "51113": "怪盗的纤钢爪钩", - "51114": "怪盗的流星快靴", - "51121": "废土客的呼吸面罩", - "51122": "废土客的荒漠终端", - "51123": "废土客的修士长袍", - "51124": "废土客的动力腿甲", - "51131": "莳者的复明义眼", - "51132": "莳者的机巧木手", - "51133": "莳者的承露羽衣", - "51134": "莳者的天人丝履", - "51141": "信使的全息目镜", - "51142": "信使的百变义手", - "51143": "信使的密信挎包", - "51144": "信使的酷跑板鞋", - "51151": "大公的冥焰冠冕", - "51152": "大公的绒火指套", - "51153": "大公的蒙恩长袍", - "51154": "大公的绅雅礼靴", - "51161": "系囚的合啮拘笼", - "51162": "系囚的铅石梏铐", - "51163": "系囚的幽闭缚束", - "51164": "系囚的绝足锁桎", - "51171": "先驱的绝热围壳", - "51172": "先驱的虚极罗盘", - "51173": "先驱的密合铅衣", - "51174": "先驱的泊星桩锚", - "51181": "钟表匠的极目透镜", - "51182": "钟表匠的交运腕表", - "51183": "钟表匠的空幻礼服", - "51184": "钟表匠的隐梦革履", - "51191": "铁骑的索敌战盔", - "51192": "铁骑的摧坚铁腕", - "51193": "铁骑的银影装甲", - "51194": "铁骑的行空护胫", - "51201": "勇烈的玄枵面甲", - "51202": "勇烈的钩爪腕甲", - "51203": "勇烈的飞翎瓷甲", - "51204": "勇烈的逐猎腿甲", - "53015": "「黑塔」的空间站点", - "53016": "「黑塔」的漫历轨迹", - "53025": "罗浮仙舟的天外楼船", - "53026": "罗浮仙舟的建木枝蔓", - "53035": "公司的巨构总部", - "53036": "公司的贸易航道", - "53045": "贝洛伯格的存护堡垒", - "53046": "贝洛伯格的铁卫防线", - "53055": "螺丝星的机械烈阳", - "53056": "螺丝星的环星孔带", - "53065": "萨尔索图的移动城市", - "53066": "萨尔索图的晨昏界线", - "53075": "塔利亚的钉壳小镇", - "53076": "塔利亚的裸皮电线", - "53085": "翁瓦克的诞生之岛", - "53086": "翁瓦克的环岛海岸", - "53095": "泰科铵的镭射球场", - "53096": "泰科铵的弧光赛道", - "53105": "伊须磨洲的残船鲸落", - "53106": "伊须磨洲的坼裂缆索", - "53115": "格拉默的铁骑兵团", - "53116": "格拉默的寂静坟碑", - "53125": "匹诺康尼的堂皇酒店", - "53126": "匹诺康尼的逐梦轨道", - "53135": "茨冈尼亚的母神卧榻", - "53136": "茨冈尼亚的轮回纽结", - "53145": "出云的祸津众神", - "53146": "出云的终始一刀", - "53155": "都蓝的穹窿金帐", - "53156": "都蓝的器兽缰辔", - "53165": "铸炼宫的莲华灯芯", - "53166": "铸炼宫的焰轮天绸", - "53175": "露莎卡的水朽苍都", - "53176": "露莎卡的双生航道", - "53185": "蕉乐园的蕉芯广场", - "53186": "蕉乐园的模因线缆", - "55001": "过客的残绣风衣", - "55002": "过客的冥途游履", - "55003": "快枪手的猎风披肩", - "55004": "圣骑的肃穆胸甲", - "55005": "圣骑的秩序铁靴", - "55006": "拳王的贴身护胸", - "61011": "过客的逢春木簪", - "61012": "过客的游龙臂鞲", - "61013": "过客的残绣风衣", - "61014": "过客的冥途游履", - "61021": "快枪手的野穗毡帽", - "61022": "快枪手的粗革手套", - "61023": "快枪手的猎风披肩", - "61024": "快枪手的铆钉马靴", - "61031": "圣骑的宽恕盔面", - "61032": "圣骑的沉默誓环", - "61033": "圣骑的肃穆胸甲", - "61034": "圣骑的秩序铁靴", - "61041": "雪猎的荒神兜帽", - "61042": "雪猎的巨蜥手套", - "61043": "雪猎的冰龙披风", - "61044": "雪猎的鹿皮软靴", - "61051": "拳王的冠军护头", - "61052": "拳王的重炮拳套", - "61053": "拳王的贴身护胸", - "61054": "拳王的弧步战靴", - "61061": "铁卫的铸铁面盔", - "61062": "铁卫的银鳞手甲", - "61063": "铁卫的旧制军服", - "61064": "铁卫的白银护胫", - "61071": "火匠的黑曜目镜", - "61072": "火匠的御火戒指", - "61073": "火匠的阻燃围裙", - "61074": "火匠的合金义肢", - "61081": "天才的超距遥感", - "61082": "天才的频变捕手", - "61083": "天才的元域深潜", - "61084": "天才的引力漫步", - "61091": "乐队的偏光墨镜", - "61092": "乐队的巡演手绳", - "61093": "乐队的钉刺皮衣", - "61094": "乐队的铆钉短靴", - "61101": "翔鹰的长喙头盔", - "61102": "翔鹰的鹰击指环", - "61103": "翔鹰的翼装束带", - "61104": "翔鹰的绒羽绑带", - "61111": "怪盗的千人假面", - "61112": "怪盗的绘纹手套", - "61113": "怪盗的纤钢爪钩", - "61114": "怪盗的流星快靴", - "61121": "废土客的呼吸面罩", - "61122": "废土客的荒漠终端", - "61123": "废土客的修士长袍", - "61124": "废土客的动力腿甲", - "61131": "莳者的复明义眼", - "61132": "莳者的机巧木手", - "61133": "莳者的承露羽衣", - "61134": "莳者的天人丝履", - "61141": "信使的全息目镜", - "61142": "信使的百变义手", - "61143": "信使的密信挎包", - "61144": "信使的酷跑板鞋", - "61151": "大公的冥焰冠冕", - "61152": "大公的绒火指套", - "61153": "大公的蒙恩长袍", - "61154": "大公的绅雅礼靴", - "61161": "系囚的合啮拘笼", - "61162": "系囚的铅石梏铐", - "61163": "系囚的幽闭缚束", - "61164": "系囚的绝足锁桎", - "61171": "先驱的绝热围壳", - "61172": "先驱的虚极罗盘", - "61173": "先驱的密合铅衣", - "61174": "先驱的泊星桩锚", - "61181": "钟表匠的极目透镜", - "61182": "钟表匠的交运腕表", - "61183": "钟表匠的空幻礼服", - "61184": "钟表匠的隐梦革履", - "61191": "铁骑的索敌战盔", - "61192": "铁骑的摧坚铁腕", - "61193": "铁骑的银影装甲", - "61194": "铁骑的行空护胫", - "61201": "勇烈的玄枵面甲", - "61202": "勇烈的钩爪腕甲", - "61203": "勇烈的飞翎瓷甲", - "61204": "勇烈的逐猎腿甲", - "63015": "「黑塔」的空间站点", - "63016": "「黑塔」的漫历轨迹", - "63025": "罗浮仙舟的天外楼船", - "63026": "罗浮仙舟的建木枝蔓", - "63035": "公司的巨构总部", - "63036": "公司的贸易航道", - "63045": "贝洛伯格的存护堡垒", - "63046": "贝洛伯格的铁卫防线", - "63055": "螺丝星的机械烈阳", - "63056": "螺丝星的环星孔带", - "63065": "萨尔索图的移动城市", - "63066": "萨尔索图的晨昏界线", - "63075": "塔利亚的钉壳小镇", - "63076": "塔利亚的裸皮电线", - "63085": "翁瓦克的诞生之岛", - "63086": "翁瓦克的环岛海岸", - "63095": "泰科铵的镭射球场", - "63096": "泰科铵的弧光赛道", - "63105": "伊须磨洲的残船鲸落", - "63106": "伊须磨洲的坼裂缆索", - "63115": "格拉默的铁骑兵团", - "63116": "格拉默的寂静坟碑", - "63125": "匹诺康尼的堂皇酒店", - "63126": "匹诺康尼的逐梦轨道", - "63135": "茨冈尼亚的母神卧榻", - "63136": "茨冈尼亚的轮回纽结", - "63145": "出云的祸津众神", - "63146": "出云的终始一刀", - "63155": "都蓝的穹窿金帐", - "63156": "都蓝的器兽缰辔", - "63165": "铸炼宫的莲华灯芯", - "63166": "铸炼宫的焰轮天绸", - "63175": "露莎卡的水朽苍都", - "63176": "露莎卡的双生航道", - "63185": "蕉乐园的蕉芯广场", - "63186": "蕉乐园的模因线缆" -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/Property2Name_mapping_2.5.0.json b/StarRailUID/utils/map/data/Property2Name_mapping_2.5.0.json deleted file mode 100644 index 92f0208..0000000 --- a/StarRailUID/utils/map/data/Property2Name_mapping_2.5.0.json +++ /dev/null @@ -1,55 +0,0 @@ -{ - "MaxHP": "生命值", - "Attack": "攻击力", - "Defence": "防御力", - "Speed": "速度", - "CriticalChance": "暴击率", - "CriticalDamage": "暴击伤害", - "BreakDamageAddedRatio": "击破特攻", - "BreakDamageAddedRatioBase": "击破特攻", - "HealRatio": "治疗量加成", - "MaxSP": "能量上限", - "SPRatio": "能量恢复效率", - "StatusProbability": "效果命中", - "StatusResistance": "效果抵抗", - "CriticalChanceBase": "暴击率", - "CriticalDamageBase": "暴击伤害", - "HealRatioBase": "治疗量加成", - "StanceBreakAddedRatio": "dev_失效字段", - "SPRatioBase": "能量恢复效率", - "StatusProbabilityBase": "效果命中", - "StatusResistanceBase": "效果抵抗", - "PhysicalAddedRatio": "物理属性伤害提高", - "PhysicalResistance": "物理属性抗性提高", - "FireAddedRatio": "火属性伤害提高", - "FireResistance": "火属性抗性提高", - "IceAddedRatio": "冰属性伤害提高", - "IceResistance": "冰属性抗性提高", - "ThunderAddedRatio": "雷属性伤害提高", - "ThunderResistance": "雷属性抗性提高", - "WindAddedRatio": "风属性伤害提高", - "WindResistance": "风属性抗性提高", - "QuantumAddedRatio": "量子属性伤害提高", - "QuantumResistance": "量子属性抗性提高", - "ImaginaryAddedRatio": "虚数属性伤害提高", - "ImaginaryResistance": "虚数属性抗性提高", - "BaseHP": "基础生命值提高#1[i]", - "HPDelta": "生命值", - "HPAddedRatio": "生命值百分比", - "BaseAttack": "基础攻击力提高#1[i]", - "AttackDelta": "攻击力", - "AttackAddedRatio": "攻击力百分比", - "BaseDefence": "基础防御力提高#1[i]", - "DefenceDelta": "防御力", - "DefenceAddedRatio": "防御力百分比", - "BaseSpeed": "速度", - "HealTakenRatio": "治疗量加成", - "PhysicalResistanceDelta": "物理属性抗性提高", - "FireResistanceDelta": "火属性抗性提高", - "IceResistanceDelta": "冰属性抗性提高", - "ThunderResistanceDelta": "雷属性抗性提高", - "WindResistanceDelta": "风属性抗性提高", - "QuantumResistanceDelta": "量子属性抗性提高", - "ImaginaryResistanceDelta": "虚数属性抗性提高", - "SpeedDelta": "速度" -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/RelicId2MainAffixGroup_mapping_2.5.0.json b/StarRailUID/utils/map/data/RelicId2MainAffixGroup_mapping_2.5.0.json deleted file mode 100644 index b04f6ba..0000000 --- a/StarRailUID/utils/map/data/RelicId2MainAffixGroup_mapping_2.5.0.json +++ /dev/null @@ -1,472 +0,0 @@ -{ - "31011": 21, - "41011": 31, - "51011": 41, - "61011": 51, - "31012": 22, - "41012": 32, - "51012": 42, - "61012": 52, - "31013": 23, - "41013": 33, - "51013": 43, - "61013": 53, - "31014": 24, - "41014": 34, - "51014": 44, - "61014": 54, - "31021": 21, - "41021": 31, - "51021": 41, - "61021": 51, - "31022": 22, - "41022": 32, - "51022": 42, - "61022": 52, - "31023": 23, - "41023": 33, - "51023": 43, - "61023": 53, - "31024": 24, - "41024": 34, - "51024": 44, - "61024": 54, - "31031": 21, - "41031": 31, - "51031": 41, - "61031": 51, - "31032": 22, - "41032": 32, - "51032": 42, - "61032": 52, - "31033": 23, - "41033": 33, - "51033": 43, - "61033": 53, - "31034": 24, - "41034": 34, - "51034": 44, - "61034": 54, - "31041": 21, - "41041": 31, - "51041": 41, - "61041": 51, - "31042": 22, - "41042": 32, - "51042": 42, - "61042": 52, - "31043": 23, - "41043": 33, - "51043": 43, - "61043": 53, - "31044": 24, - "41044": 34, - "51044": 44, - "61044": 54, - "31051": 21, - "41051": 31, - "51051": 41, - "61051": 51, - "31052": 22, - "41052": 32, - "51052": 42, - "61052": 52, - "31053": 23, - "41053": 33, - "51053": 43, - "61053": 53, - "31054": 24, - "41054": 34, - "51054": 44, - "61054": 54, - "31061": 21, - "41061": 31, - "51061": 41, - "61061": 51, - "31062": 22, - "41062": 32, - "51062": 42, - "61062": 52, - "31063": 23, - "41063": 33, - "51063": 43, - "61063": 53, - "31064": 24, - "41064": 34, - "51064": 44, - "61064": 54, - "31071": 21, - "41071": 31, - "51071": 41, - "61071": 51, - "31072": 22, - "41072": 32, - "51072": 42, - "61072": 52, - "31073": 23, - "41073": 33, - "51073": 43, - "61073": 53, - "31074": 24, - "41074": 34, - "51074": 44, - "61074": 54, - "31081": 21, - "41081": 31, - "51081": 41, - "61081": 51, - "31082": 22, - "41082": 32, - "51082": 42, - "61082": 52, - "31083": 23, - "41083": 33, - "51083": 43, - "61083": 53, - "31084": 24, - "41084": 34, - "51084": 44, - "61084": 54, - "31091": 21, - "41091": 31, - "51091": 41, - "61091": 51, - "31092": 22, - "41092": 32, - "51092": 42, - "61092": 52, - "31093": 23, - "41093": 33, - "51093": 43, - "61093": 53, - "31094": 24, - "41094": 34, - "51094": 44, - "61094": 54, - "31101": 21, - "41101": 31, - "51101": 41, - "61101": 51, - "31102": 22, - "41102": 32, - "51102": 42, - "61102": 52, - "31103": 23, - "41103": 33, - "51103": 43, - "61103": 53, - "31104": 24, - "41104": 34, - "51104": 44, - "61104": 54, - "31111": 21, - "41111": 31, - "51111": 41, - "61111": 51, - "31112": 22, - "41112": 32, - "51112": 42, - "61112": 52, - "31113": 23, - "41113": 33, - "51113": 43, - "61113": 53, - "31114": 24, - "41114": 34, - "51114": 44, - "61114": 54, - "31121": 21, - "41121": 31, - "51121": 41, - "61121": 51, - "31122": 22, - "41122": 32, - "51122": 42, - "61122": 52, - "31123": 23, - "41123": 33, - "51123": 43, - "61123": 53, - "31124": 24, - "41124": 34, - "51124": 44, - "61124": 54, - "33015": 25, - "43015": 35, - "53015": 45, - "63015": 55, - "33016": 26, - "43016": 36, - "53016": 46, - "63016": 56, - "33025": 25, - "43025": 35, - "53025": 45, - "63025": 55, - "33026": 26, - "43026": 36, - "53026": 46, - "63026": 56, - "33035": 25, - "43035": 35, - "53035": 45, - "63035": 55, - "33036": 26, - "43036": 36, - "53036": 46, - "63036": 56, - "33045": 25, - "43045": 35, - "53045": 45, - "63045": 55, - "33046": 26, - "43046": 36, - "53046": 46, - "63046": 56, - "33055": 25, - "43055": 35, - "53055": 45, - "63055": 55, - "33056": 26, - "43056": 36, - "53056": 46, - "63056": 56, - "33065": 25, - "43065": 35, - "53065": 45, - "63065": 55, - "33066": 26, - "43066": 36, - "53066": 46, - "63066": 56, - "33075": 25, - "43075": 35, - "53075": 45, - "63075": 55, - "33076": 26, - "43076": 36, - "53076": 46, - "63076": 56, - "33085": 25, - "43085": 35, - "53085": 45, - "63085": 55, - "33086": 26, - "43086": 36, - "53086": 46, - "63086": 56, - "33095": 25, - "43095": 35, - "53095": 45, - "63095": 55, - "33096": 26, - "43096": 36, - "53096": 46, - "63096": 56, - "33105": 25, - "43105": 35, - "53105": 45, - "63105": 55, - "33106": 26, - "43106": 36, - "53106": 46, - "63106": 56, - "55001": 436, - "55002": 441, - "55003": 434, - "55004": 433, - "55005": 443, - "55006": 434, - "31131": 21, - "41131": 31, - "51131": 41, - "61131": 51, - "31132": 22, - "41132": 32, - "51132": 42, - "61132": 52, - "31133": 23, - "41133": 33, - "51133": 43, - "61133": 53, - "31134": 24, - "41134": 34, - "51134": 44, - "61134": 54, - "31141": 21, - "41141": 31, - "51141": 41, - "61141": 51, - "31142": 22, - "41142": 32, - "51142": 42, - "61142": 52, - "31143": 23, - "41143": 33, - "51143": 43, - "61143": 53, - "31144": 24, - "41144": 34, - "51144": 44, - "61144": 54, - "31151": 21, - "41151": 31, - "51151": 41, - "61151": 51, - "31152": 22, - "41152": 32, - "51152": 42, - "61152": 52, - "31153": 23, - "41153": 33, - "51153": 43, - "61153": 53, - "31154": 24, - "41154": 34, - "51154": 44, - "61154": 54, - "31161": 21, - "41161": 31, - "51161": 41, - "61161": 51, - "31162": 22, - "41162": 32, - "51162": 42, - "61162": 52, - "31163": 23, - "41163": 33, - "51163": 43, - "61163": 53, - "31164": 24, - "41164": 34, - "51164": 44, - "61164": 54, - "33115": 25, - "43115": 35, - "53115": 45, - "63115": 55, - "33116": 26, - "43116": 36, - "53116": 46, - "63116": 56, - "33125": 25, - "43125": 35, - "53125": 45, - "63125": 55, - "33126": 26, - "43126": 36, - "53126": 46, - "63126": 56, - "31171": 21, - "41171": 31, - "51171": 41, - "61171": 51, - "31172": 22, - "41172": 32, - "51172": 42, - "61172": 52, - "31173": 23, - "41173": 33, - "51173": 43, - "61173": 53, - "31174": 24, - "41174": 34, - "51174": 44, - "61174": 54, - "31181": 21, - "41181": 31, - "51181": 41, - "61181": 51, - "31182": 22, - "41182": 32, - "51182": 42, - "61182": 52, - "31183": 23, - "41183": 33, - "51183": 43, - "61183": 53, - "31184": 24, - "41184": 34, - "51184": 44, - "61184": 54, - "33135": 25, - "43135": 35, - "53135": 45, - "63135": 55, - "33136": 26, - "43136": 36, - "53136": 46, - "63136": 56, - "33145": 25, - "43145": 35, - "53145": 45, - "63145": 55, - "33146": 26, - "43146": 36, - "53146": 46, - "63146": 56, - "31191": 21, - "41191": 31, - "51191": 41, - "61191": 51, - "31192": 22, - "41192": 32, - "51192": 42, - "61192": 52, - "31193": 23, - "41193": 33, - "51193": 43, - "61193": 53, - "31194": 24, - "41194": 34, - "51194": 44, - "61194": 54, - "31201": 21, - "41201": 31, - "51201": 41, - "61201": 51, - "31202": 22, - "41202": 32, - "51202": 42, - "61202": 52, - "31203": 23, - "41203": 33, - "51203": 43, - "61203": 53, - "31204": 24, - "41204": 34, - "51204": 44, - "61204": 54, - "33155": 25, - "43155": 35, - "53155": 45, - "63155": 55, - "33156": 26, - "43156": 36, - "53156": 46, - "63156": 56, - "33165": 25, - "43165": 35, - "53165": 45, - "63165": 55, - "33166": 26, - "43166": 36, - "53166": 46, - "63166": 56, - "33175": 25, - "43175": 35, - "53175": 45, - "63175": 55, - "33176": 26, - "43176": 36, - "53176": 46, - "63176": 56, - "33185": 25, - "43185": 35, - "53185": 45, - "63185": 55, - "33186": 26, - "43186": 36, - "53186": 46, - "63186": 56 -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/RelicId2Rarity_mapping_2.5.0.json b/StarRailUID/utils/map/data/RelicId2Rarity_mapping_2.5.0.json deleted file mode 100644 index 30227d2..0000000 --- a/StarRailUID/utils/map/data/RelicId2Rarity_mapping_2.5.0.json +++ /dev/null @@ -1,472 +0,0 @@ -{ - "31011": 2, - "31012": 2, - "31013": 2, - "31014": 2, - "31021": 2, - "31022": 2, - "31023": 2, - "31024": 2, - "31031": 2, - "31032": 2, - "31033": 2, - "31034": 2, - "31041": 2, - "31042": 2, - "31043": 2, - "31044": 2, - "31051": 2, - "31052": 2, - "31053": 2, - "31054": 2, - "31061": 2, - "31062": 2, - "31063": 2, - "31064": 2, - "31071": 2, - "31072": 2, - "31073": 2, - "31074": 2, - "31081": 2, - "31082": 2, - "31083": 2, - "31084": 2, - "31091": 2, - "31092": 2, - "31093": 2, - "31094": 2, - "31101": 2, - "31102": 2, - "31103": 2, - "31104": 2, - "31111": 2, - "31112": 2, - "31113": 2, - "31114": 2, - "31121": 2, - "31122": 2, - "31123": 2, - "31124": 2, - "31131": 2, - "31132": 2, - "31133": 2, - "31134": 2, - "31141": 2, - "31142": 2, - "31143": 2, - "31144": 2, - "31151": 2, - "31152": 2, - "31153": 2, - "31154": 2, - "31161": 2, - "31162": 2, - "31163": 2, - "31164": 2, - "31171": 2, - "31172": 2, - "31173": 2, - "31174": 2, - "31181": 2, - "31182": 2, - "31183": 2, - "31184": 2, - "31191": 2, - "31192": 2, - "31193": 2, - "31194": 2, - "31201": 2, - "31202": 2, - "31203": 2, - "31204": 2, - "33015": 2, - "33016": 2, - "33025": 2, - "33026": 2, - "33035": 2, - "33036": 2, - "33045": 2, - "33046": 2, - "33055": 2, - "33056": 2, - "33065": 2, - "33066": 2, - "33075": 2, - "33076": 2, - "33085": 2, - "33086": 2, - "33095": 2, - "33096": 2, - "33105": 2, - "33106": 2, - "33115": 2, - "33116": 2, - "33125": 2, - "33126": 2, - "33135": 2, - "33136": 2, - "33145": 2, - "33146": 2, - "33155": 2, - "33156": 2, - "33165": 2, - "33166": 2, - "33175": 2, - "33176": 2, - "33185": 2, - "33186": 2, - "41011": 3, - "41012": 3, - "41013": 3, - "41014": 3, - "41021": 3, - "41022": 3, - "41023": 3, - "41024": 3, - "41031": 3, - "41032": 3, - "41033": 3, - "41034": 3, - "41041": 3, - "41042": 3, - "41043": 3, - "41044": 3, - "41051": 3, - "41052": 3, - "41053": 3, - "41054": 3, - "41061": 3, - "41062": 3, - "41063": 3, - "41064": 3, - "41071": 3, - "41072": 3, - "41073": 3, - "41074": 3, - "41081": 3, - "41082": 3, - "41083": 3, - "41084": 3, - "41091": 3, - "41092": 3, - "41093": 3, - "41094": 3, - "41101": 3, - "41102": 3, - "41103": 3, - "41104": 3, - "41111": 3, - "41112": 3, - "41113": 3, - "41114": 3, - "41121": 3, - "41122": 3, - "41123": 3, - "41124": 3, - "41131": 3, - "41132": 3, - "41133": 3, - "41134": 3, - "41141": 3, - "41142": 3, - "41143": 3, - "41144": 3, - "41151": 3, - "41152": 3, - "41153": 3, - "41154": 3, - "41161": 3, - "41162": 3, - "41163": 3, - "41164": 3, - "41171": 3, - "41172": 3, - "41173": 3, - "41174": 3, - "41181": 3, - "41182": 3, - "41183": 3, - "41184": 3, - "41191": 3, - "41192": 3, - "41193": 3, - "41194": 3, - "41201": 3, - "41202": 3, - "41203": 3, - "41204": 3, - "43015": 3, - "43016": 3, - "43025": 3, - "43026": 3, - "43035": 3, - "43036": 3, - "43045": 3, - "43046": 3, - "43055": 3, - "43056": 3, - "43065": 3, - "43066": 3, - "43075": 3, - "43076": 3, - "43085": 3, - "43086": 3, - "43095": 3, - "43096": 3, - "43105": 3, - "43106": 3, - "43115": 3, - "43116": 3, - "43125": 3, - "43126": 3, - "43135": 3, - "43136": 3, - "43145": 3, - "43146": 3, - "43155": 3, - "43156": 3, - "43165": 3, - "43166": 3, - "43175": 3, - "43176": 3, - "43185": 3, - "43186": 3, - "51011": 4, - "51012": 4, - "51013": 4, - "51014": 4, - "51021": 4, - "51022": 4, - "51023": 4, - "51024": 4, - "51031": 4, - "51032": 4, - "51033": 4, - "51034": 4, - "51041": 4, - "51042": 4, - "51043": 4, - "51044": 4, - "51051": 4, - "51052": 4, - "51053": 4, - "51054": 4, - "51061": 4, - "51062": 4, - "51063": 4, - "51064": 4, - "51071": 4, - "51072": 4, - "51073": 4, - "51074": 4, - "51081": 4, - "51082": 4, - "51083": 4, - "51084": 4, - "51091": 4, - "51092": 4, - "51093": 4, - "51094": 4, - "51101": 4, - "51102": 4, - "51103": 4, - "51104": 4, - "51111": 4, - "51112": 4, - "51113": 4, - "51114": 4, - "51121": 4, - "51122": 4, - "51123": 4, - "51124": 4, - "51131": 4, - "51132": 4, - "51133": 4, - "51134": 4, - "51141": 4, - "51142": 4, - "51143": 4, - "51144": 4, - "51151": 4, - "51152": 4, - "51153": 4, - "51154": 4, - "51161": 4, - "51162": 4, - "51163": 4, - "51164": 4, - "51171": 4, - "51172": 4, - "51173": 4, - "51174": 4, - "51181": 4, - "51182": 4, - "51183": 4, - "51184": 4, - "51191": 4, - "51192": 4, - "51193": 4, - "51194": 4, - "51201": 4, - "51202": 4, - "51203": 4, - "51204": 4, - "53015": 4, - "53016": 4, - "53025": 4, - "53026": 4, - "53035": 4, - "53036": 4, - "53045": 4, - "53046": 4, - "53055": 4, - "53056": 4, - "53065": 4, - "53066": 4, - "53075": 4, - "53076": 4, - "53085": 4, - "53086": 4, - "53095": 4, - "53096": 4, - "53105": 4, - "53106": 4, - "53115": 4, - "53116": 4, - "53125": 4, - "53126": 4, - "53135": 4, - "53136": 4, - "53145": 4, - "53146": 4, - "53155": 4, - "53156": 4, - "53165": 4, - "53166": 4, - "53175": 4, - "53176": 4, - "53185": 4, - "53186": 4, - "55001": 4, - "55002": 4, - "55003": 4, - "55004": 4, - "55005": 4, - "55006": 4, - "61011": 5, - "61012": 5, - "61013": 5, - "61014": 5, - "61021": 5, - "61022": 5, - "61023": 5, - "61024": 5, - "61031": 5, - "61032": 5, - "61033": 5, - "61034": 5, - "61041": 5, - "61042": 5, - "61043": 5, - "61044": 5, - "61051": 5, - "61052": 5, - "61053": 5, - "61054": 5, - "61061": 5, - "61062": 5, - "61063": 5, - "61064": 5, - "61071": 5, - "61072": 5, - "61073": 5, - "61074": 5, - "61081": 5, - "61082": 5, - "61083": 5, - "61084": 5, - "61091": 5, - "61092": 5, - "61093": 5, - "61094": 5, - "61101": 5, - "61102": 5, - "61103": 5, - "61104": 5, - "61111": 5, - "61112": 5, - "61113": 5, - "61114": 5, - "61121": 5, - "61122": 5, - "61123": 5, - "61124": 5, - "61131": 5, - "61132": 5, - "61133": 5, - "61134": 5, - "61141": 5, - "61142": 5, - "61143": 5, - "61144": 5, - "61151": 5, - "61152": 5, - "61153": 5, - "61154": 5, - "61161": 5, - "61162": 5, - "61163": 5, - "61164": 5, - "61171": 5, - "61172": 5, - "61173": 5, - "61174": 5, - "61181": 5, - "61182": 5, - "61183": 5, - "61184": 5, - "61191": 5, - "61192": 5, - "61193": 5, - "61194": 5, - "61201": 5, - "61202": 5, - "61203": 5, - "61204": 5, - "63015": 5, - "63016": 5, - "63025": 5, - "63026": 5, - "63035": 5, - "63036": 5, - "63045": 5, - "63046": 5, - "63055": 5, - "63056": 5, - "63065": 5, - "63066": 5, - "63075": 5, - "63076": 5, - "63085": 5, - "63086": 5, - "63095": 5, - "63096": 5, - "63105": 5, - "63106": 5, - "63115": 5, - "63116": 5, - "63125": 5, - "63126": 5, - "63135": 5, - "63136": 5, - "63145": 5, - "63146": 5, - "63155": 5, - "63156": 5, - "63165": 5, - "63166": 5, - "63175": 5, - "63176": 5, - "63185": 5, - "63186": 5 -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/RelicId2SetId_mapping_2.5.0.json b/StarRailUID/utils/map/data/RelicId2SetId_mapping_2.5.0.json deleted file mode 100644 index 00fc793..0000000 --- a/StarRailUID/utils/map/data/RelicId2SetId_mapping_2.5.0.json +++ /dev/null @@ -1,472 +0,0 @@ -{ - "31011": 101, - "41011": 101, - "51011": 101, - "61011": 101, - "31012": 101, - "41012": 101, - "51012": 101, - "61012": 101, - "31013": 101, - "41013": 101, - "51013": 101, - "61013": 101, - "31014": 101, - "41014": 101, - "51014": 101, - "61014": 101, - "31021": 102, - "41021": 102, - "51021": 102, - "61021": 102, - "31022": 102, - "41022": 102, - "51022": 102, - "61022": 102, - "31023": 102, - "41023": 102, - "51023": 102, - "61023": 102, - "31024": 102, - "41024": 102, - "51024": 102, - "61024": 102, - "31031": 103, - "41031": 103, - "51031": 103, - "61031": 103, - "31032": 103, - "41032": 103, - "51032": 103, - "61032": 103, - "31033": 103, - "41033": 103, - "51033": 103, - "61033": 103, - "31034": 103, - "41034": 103, - "51034": 103, - "61034": 103, - "31041": 104, - "41041": 104, - "51041": 104, - "61041": 104, - "31042": 104, - "41042": 104, - "51042": 104, - "61042": 104, - "31043": 104, - "41043": 104, - "51043": 104, - "61043": 104, - "31044": 104, - "41044": 104, - "51044": 104, - "61044": 104, - "31051": 105, - "41051": 105, - "51051": 105, - "61051": 105, - "31052": 105, - "41052": 105, - "51052": 105, - "61052": 105, - "31053": 105, - "41053": 105, - "51053": 105, - "61053": 105, - "31054": 105, - "41054": 105, - "51054": 105, - "61054": 105, - "31061": 106, - "41061": 106, - "51061": 106, - "61061": 106, - "31062": 106, - "41062": 106, - "51062": 106, - "61062": 106, - "31063": 106, - "41063": 106, - "51063": 106, - "61063": 106, - "31064": 106, - "41064": 106, - "51064": 106, - "61064": 106, - "31071": 107, - "41071": 107, - "51071": 107, - "61071": 107, - "31072": 107, - "41072": 107, - "51072": 107, - "61072": 107, - "31073": 107, - "41073": 107, - "51073": 107, - "61073": 107, - "31074": 107, - "41074": 107, - "51074": 107, - "61074": 107, - "31081": 108, - "41081": 108, - "51081": 108, - "61081": 108, - "31082": 108, - "41082": 108, - "51082": 108, - "61082": 108, - "31083": 108, - "41083": 108, - "51083": 108, - "61083": 108, - "31084": 108, - "41084": 108, - "51084": 108, - "61084": 108, - "31091": 109, - "41091": 109, - "51091": 109, - "61091": 109, - "31092": 109, - "41092": 109, - "51092": 109, - "61092": 109, - "31093": 109, - "41093": 109, - "51093": 109, - "61093": 109, - "31094": 109, - "41094": 109, - "51094": 109, - "61094": 109, - "31101": 110, - "41101": 110, - "51101": 110, - "61101": 110, - "31102": 110, - "41102": 110, - "51102": 110, - "61102": 110, - "31103": 110, - "41103": 110, - "51103": 110, - "61103": 110, - "31104": 110, - "41104": 110, - "51104": 110, - "61104": 110, - "31111": 111, - "41111": 111, - "51111": 111, - "61111": 111, - "31112": 111, - "41112": 111, - "51112": 111, - "61112": 111, - "31113": 111, - "41113": 111, - "51113": 111, - "61113": 111, - "31114": 111, - "41114": 111, - "51114": 111, - "61114": 111, - "31121": 112, - "41121": 112, - "51121": 112, - "61121": 112, - "31122": 112, - "41122": 112, - "51122": 112, - "61122": 112, - "31123": 112, - "41123": 112, - "51123": 112, - "61123": 112, - "31124": 112, - "41124": 112, - "51124": 112, - "61124": 112, - "33015": 301, - "43015": 301, - "53015": 301, - "63015": 301, - "33016": 301, - "43016": 301, - "53016": 301, - "63016": 301, - "33025": 302, - "43025": 302, - "53025": 302, - "63025": 302, - "33026": 302, - "43026": 302, - "53026": 302, - "63026": 302, - "33035": 303, - "43035": 303, - "53035": 303, - "63035": 303, - "33036": 303, - "43036": 303, - "53036": 303, - "63036": 303, - "33045": 304, - "43045": 304, - "53045": 304, - "63045": 304, - "33046": 304, - "43046": 304, - "53046": 304, - "63046": 304, - "33055": 305, - "43055": 305, - "53055": 305, - "63055": 305, - "33056": 305, - "43056": 305, - "53056": 305, - "63056": 305, - "33065": 306, - "43065": 306, - "53065": 306, - "63065": 306, - "33066": 306, - "43066": 306, - "53066": 306, - "63066": 306, - "33075": 307, - "43075": 307, - "53075": 307, - "63075": 307, - "33076": 307, - "43076": 307, - "53076": 307, - "63076": 307, - "33085": 308, - "43085": 308, - "53085": 308, - "63085": 308, - "33086": 308, - "43086": 308, - "53086": 308, - "63086": 308, - "33095": 309, - "43095": 309, - "53095": 309, - "63095": 309, - "33096": 309, - "43096": 309, - "53096": 309, - "63096": 309, - "33105": 310, - "43105": 310, - "53105": 310, - "63105": 310, - "33106": 310, - "43106": 310, - "53106": 310, - "63106": 310, - "55001": 101, - "55002": 101, - "55003": 102, - "55004": 103, - "55005": 103, - "55006": 105, - "31131": 113, - "41131": 113, - "51131": 113, - "61131": 113, - "31132": 113, - "41132": 113, - "51132": 113, - "61132": 113, - "31133": 113, - "41133": 113, - "51133": 113, - "61133": 113, - "31134": 113, - "41134": 113, - "51134": 113, - "61134": 113, - "31141": 114, - "41141": 114, - "51141": 114, - "61141": 114, - "31142": 114, - "41142": 114, - "51142": 114, - "61142": 114, - "31143": 114, - "41143": 114, - "51143": 114, - "61143": 114, - "31144": 114, - "41144": 114, - "51144": 114, - "61144": 114, - "31151": 115, - "41151": 115, - "51151": 115, - "61151": 115, - "31152": 115, - "41152": 115, - "51152": 115, - "61152": 115, - "31153": 115, - "41153": 115, - "51153": 115, - "61153": 115, - "31154": 115, - "41154": 115, - "51154": 115, - "61154": 115, - "31161": 116, - "41161": 116, - "51161": 116, - "61161": 116, - "31162": 116, - "41162": 116, - "51162": 116, - "61162": 116, - "31163": 116, - "41163": 116, - "51163": 116, - "61163": 116, - "31164": 116, - "41164": 116, - "51164": 116, - "61164": 116, - "33115": 311, - "43115": 311, - "53115": 311, - "63115": 311, - "33116": 311, - "43116": 311, - "53116": 311, - "63116": 311, - "33125": 312, - "43125": 312, - "53125": 312, - "63125": 312, - "33126": 312, - "43126": 312, - "53126": 312, - "63126": 312, - "31171": 117, - "41171": 117, - "51171": 117, - "61171": 117, - "31172": 117, - "41172": 117, - "51172": 117, - "61172": 117, - "31173": 117, - "41173": 117, - "51173": 117, - "61173": 117, - "31174": 117, - "41174": 117, - "51174": 117, - "61174": 117, - "31181": 118, - "41181": 118, - "51181": 118, - "61181": 118, - "31182": 118, - "41182": 118, - "51182": 118, - "61182": 118, - "31183": 118, - "41183": 118, - "51183": 118, - "61183": 118, - "31184": 118, - "41184": 118, - "51184": 118, - "61184": 118, - "33135": 313, - "43135": 313, - "53135": 313, - "63135": 313, - "33136": 313, - "43136": 313, - "53136": 313, - "63136": 313, - "33145": 314, - "43145": 314, - "53145": 314, - "63145": 314, - "33146": 314, - "43146": 314, - "53146": 314, - "63146": 314, - "31191": 119, - "41191": 119, - "51191": 119, - "61191": 119, - "31192": 119, - "41192": 119, - "51192": 119, - "61192": 119, - "31193": 119, - "41193": 119, - "51193": 119, - "61193": 119, - "31194": 119, - "41194": 119, - "51194": 119, - "61194": 119, - "31201": 120, - "41201": 120, - "51201": 120, - "61201": 120, - "31202": 120, - "41202": 120, - "51202": 120, - "61202": 120, - "31203": 120, - "41203": 120, - "51203": 120, - "61203": 120, - "31204": 120, - "41204": 120, - "51204": 120, - "61204": 120, - "33155": 315, - "43155": 315, - "53155": 315, - "63155": 315, - "33156": 315, - "43156": 315, - "53156": 315, - "63156": 315, - "33165": 316, - "43165": 316, - "53165": 316, - "63165": 316, - "33166": 316, - "43166": 316, - "53166": 316, - "63166": 316, - "33175": 317, - "43175": 317, - "53175": 317, - "63175": 317, - "33176": 317, - "43176": 317, - "53176": 317, - "63176": 317, - "33185": 318, - "43185": 318, - "53185": 318, - "63185": 318, - "33186": 318, - "43186": 318, - "53186": 318, - "63186": 318 -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/RelicSetSkill_mapping_2.5.0.json b/StarRailUID/utils/map/data/RelicSetSkill_mapping_2.5.0.json deleted file mode 100644 index 99feed5..0000000 --- a/StarRailUID/utils/map/data/RelicSetSkill_mapping_2.5.0.json +++ /dev/null @@ -1,250 +0,0 @@ -{ - "101": { - "2": { - "Property": "HealRatioBase", - "Value": 0.1 - }, - "4": {} - }, - "102": { - "2": { - "Property": "AttackAddedRatio", - "Value": 0.12 - }, - "4": { - "Property": "SpeedAddedRatio", - "Value": 0.06 - } - }, - "103": { - "2": { - "Property": "DefenceAddedRatio", - "Value": 0.15 - }, - "4": {} - }, - "104": { - "2": { - "Property": "IceAddedRatio", - "Value": 0.1 - }, - "4": {} - }, - "105": { - "2": { - "Property": "PhysicalAddedRatio", - "Value": 0.1 - }, - "4": {} - }, - "106": { - "2": {}, - "4": {} - }, - "107": { - "2": { - "Property": "FireAddedRatio", - "Value": 0.1 - }, - "4": {} - }, - "108": { - "2": { - "Property": "QuantumAddedRatio", - "Value": 0.1 - }, - "4": {} - }, - "109": { - "2": { - "Property": "ThunderAddedRatio", - "Value": 0.1 - }, - "4": {} - }, - "110": { - "2": { - "Property": "WindAddedRatio", - "Value": 0.1 - }, - "4": {} - }, - "111": { - "2": { - "Property": "BreakDamageAddedRatioBase", - "Value": 0.16 - }, - "4": { - "Property": "BreakDamageAddedRatioBase", - "Value": 0.16 - } - }, - "112": { - "2": { - "Property": "ImaginaryAddedRatio", - "Value": 0.1 - }, - "4": {} - }, - "301": { - "2": { - "Property": "AttackAddedRatio", - "Value": 0.12 - } - }, - "302": { - "2": { - "Property": "HPAddedRatio", - "Value": 0.12 - } - }, - "303": { - "2": { - "Property": "StatusProbabilityBase", - "Value": 0.1 - } - }, - "304": { - "2": { - "Property": "DefenceAddedRatio", - "Value": 0.15 - } - }, - "305": { - "2": { - "Property": "CriticalDamageBase", - "Value": 0.16 - } - }, - "306": { - "2": { - "Property": "CriticalChanceBase", - "Value": 0.08 - } - }, - "307": { - "2": { - "Property": "BreakDamageAddedRatioBase", - "Value": 0.16 - } - }, - "308": { - "2": { - "Property": "SPRatioBase", - "Value": 0.05 - } - }, - "309": { - "2": { - "Property": "CriticalChanceBase", - "Value": 0.08 - } - }, - "310": { - "2": { - "Property": "StatusResistanceBase", - "Value": 0.1 - } - }, - "113": { - "2": { - "Property": "HPAddedRatio", - "Value": 0.12 - }, - "4": {} - }, - "114": { - "2": { - "Property": "SpeedAddedRatio", - "Value": 0.06 - }, - "4": {} - }, - "115": { - "2": {}, - "4": {} - }, - "116": { - "2": { - "Property": "AttackAddedRatio", - "Value": 0.12 - }, - "4": {} - }, - "311": { - "2": { - "Property": "AttackAddedRatio", - "Value": 0.12 - } - }, - "312": { - "2": { - "Property": "SPRatioBase", - "Value": 0.05 - } - }, - "117": { - "2": {}, - "4": { - "Property": "CriticalChanceBase", - "Value": 0.04 - } - }, - "118": { - "2": { - "Property": "BreakDamageAddedRatioBase", - "Value": 0.16 - }, - "4": {} - }, - "313": { - "2": { - "Property": "CriticalChanceBase", - "Value": 0.04 - } - }, - "314": { - "2": { - "Property": "AttackAddedRatio", - "Value": 0.12 - } - }, - "119": { - "2": { - "Property": "BreakDamageAddedRatioBase", - "Value": 0.16 - }, - "4": {} - }, - "120": { - "2": { - "Property": "AttackAddedRatio", - "Value": 0.12 - }, - "4": { - "Property": "CriticalChanceBase", - "Value": 0.06 - } - }, - "315": { - "2": {} - }, - "316": { - "2": { - "Property": "SpeedAddedRatio", - "Value": 0.06 - } - }, - "317": { - "2": { - "Property": "SPRatioBase", - "Value": 0.05 - } - }, - "318": { - "2": { - "Property": "CriticalDamageBase", - "Value": 0.16 - } - } -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/SetId2Name_mapping_2.5.0.json b/StarRailUID/utils/map/data/SetId2Name_mapping_2.5.0.json deleted file mode 100644 index 58912a4..0000000 --- a/StarRailUID/utils/map/data/SetId2Name_mapping_2.5.0.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "101": "云无留迹的过客", - "102": "野穗伴行的快枪手", - "103": "净庭教宗的圣骑士", - "104": "密林卧雪的猎人", - "105": "街头出身的拳王", - "106": "戍卫风雪的铁卫", - "107": "熔岩锻铸的火匠", - "108": "繁星璀璨的天才", - "109": "激奏雷电的乐队", - "110": "晨昏交界的翔鹰", - "111": "流星追迹的怪盗", - "112": "盗匪荒漠的废土客", - "113": "宝命长存的莳者", - "114": "骇域漫游的信使", - "115": "毁烬焚骨的大公", - "116": "幽锁深牢的系囚", - "117": "死水深潜的先驱", - "118": "机心戏梦的钟表匠", - "119": "荡除蠹灾的铁骑", - "120": "风举云飞的勇烈", - "301": "太空封印站", - "302": "不老者的仙舟", - "303": "泛银河商业公司", - "304": "筑城者的贝洛伯格", - "305": "星体差分机", - "306": "停转的萨尔索图", - "307": "盗贼公国塔利亚", - "308": "生命的翁瓦克", - "309": "繁星竞技场", - "310": "折断的龙骨", - "311": "苍穹战线格拉默", - "312": "梦想之地匹诺康尼", - "313": "无主荒星茨冈尼亚", - "314": "出云显世与高天神国", - "315": "奔狼的都蓝王朝", - "316": "劫火莲灯铸炼宫", - "317": "沉陆海域露莎卡", - "318": "奇想蕉乐园" -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/avatarId2DamageType_mapping_2.5.0.json b/StarRailUID/utils/map/data/avatarId2DamageType_mapping_2.5.0.json deleted file mode 100644 index eade38c..0000000 --- a/StarRailUID/utils/map/data/avatarId2DamageType_mapping_2.5.0.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "1001": "Ice", - "1002": "Wind", - "1003": "Fire", - "1004": "Imaginary", - "1005": "Thunder", - "1006": "Quantum", - "1008": "Thunder", - "1009": "Fire", - "1013": "Ice", - "1101": "Wind", - "1102": "Quantum", - "1103": "Thunder", - "1104": "Ice", - "1105": "Physical", - "1106": "Ice", - "1107": "Physical", - "1108": "Wind", - "1109": "Fire", - "1110": "Quantum", - "1111": "Physical", - "1112": "Fire", - "1201": "Quantum", - "1202": "Thunder", - "1203": "Imaginary", - "1204": "Thunder", - "1205": "Wind", - "1206": "Physical", - "1207": "Imaginary", - "1208": "Quantum", - "1209": "Ice", - "1210": "Fire", - "1211": "Thunder", - "1212": "Ice", - "1213": "Imaginary", - "1214": "Quantum", - "1215": "Physical", - "1217": "Wind", - "1218": "Fire", - "1220": "Wind", - "1221": "Physical", - "1222": "Fire", - "1223": "Thunder", - "1224": "Imaginary", - "1301": "Fire", - "1302": "Physical", - "1303": "Ice", - "1304": "Imaginary", - "1305": "Imaginary", - "1306": "Quantum", - "1307": "Wind", - "1308": "Thunder", - "1309": "Physical", - "1310": "Fire", - "1312": "Ice", - "1314": "Quantum", - "1315": "Physical", - "8001": "Physical", - "8002": "Physical", - "8003": "Fire", - "8004": "Fire", - "8005": "Imaginary", - "8006": "Imaginary" -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/avatarId2EnName_mapping_2.5.0.json b/StarRailUID/utils/map/data/avatarId2EnName_mapping_2.5.0.json deleted file mode 100644 index bd9b7e5..0000000 --- a/StarRailUID/utils/map/data/avatarId2EnName_mapping_2.5.0.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "1001": "March7th", - "1002": "DanHeng", - "1003": "Himeko", - "1004": "Welt", - "1005": "Kafka", - "1006": "SilverWolf", - "1008": "Arlan", - "1009": "Asta", - "1013": "Herta", - "1101": "Bronya", - "1102": "Seele", - "1103": "Serval", - "1104": "Gepard", - "1105": "Natasha", - "1106": "Pela", - "1107": "Clara", - "1108": "Sampo", - "1109": "Hook", - "1110": "Lynx", - "1111": "Luka", - "1112": "Topaz&Numby", - "1201": "Qingque", - "1202": "Tingyun", - "1203": "Luocha", - "1204": "JingYuan", - "1205": "Blade", - "1206": "Sushang", - "1207": "Yukong", - "1208": "FuXuan", - "1209": "Yanqing", - "1210": "Guinaifen", - "1211": "Bailu", - "1212": "Jingliu", - "1213": "DanHeng•ImbibitorLunae", - "1214": "Xueyi", - "1215": "Hanya", - "1217": "Huohuo", - "1218": "Jiaoqiu", - "1220": "Feixiao", - "1221": "Yunli", - "1222": "Lingsha", - "1223": "Moze", - "1224": "March7th", - "1301": "Gallagher", - "1302": "Argenti", - "1303": "RuanMei", - "1304": "Aventurine", - "1305": "Dr.Ratio", - "1306": "Sparkle", - "1307": "BlackSwan", - "1308": "Acheron", - "1309": "Robin", - "1310": "Firefly", - "1312": "Misha", - "1314": "Jade", - "1315": "Boothill", - "8001": "{NICKNAME}", - "8002": "{NICKNAME}", - "8003": "{NICKNAME}", - "8004": "{NICKNAME}", - "8005": "{NICKNAME}", - "8006": "{NICKNAME}" -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/avatarId2Name_mapping_2.5.0.json b/StarRailUID/utils/map/data/avatarId2Name_mapping_2.5.0.json deleted file mode 100644 index f970f74..0000000 --- a/StarRailUID/utils/map/data/avatarId2Name_mapping_2.5.0.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "1001": "三月七", - "1002": "丹恒", - "1003": "姬子", - "1004": "瓦尔特", - "1005": "卡芙卡", - "1006": "银狼", - "1008": "阿兰", - "1009": "艾丝妲", - "1013": "黑塔", - "1101": "布洛妮娅", - "1102": "希儿", - "1103": "希露瓦", - "1104": "杰帕德", - "1105": "娜塔莎", - "1106": "佩拉", - "1107": "克拉拉", - "1108": "桑博", - "1109": "虎克", - "1110": "玲可", - "1111": "卢卡", - "1112": "托帕&账账", - "1201": "青雀", - "1202": "停云", - "1203": "罗刹", - "1204": "景元", - "1205": "刃", - "1206": "素裳", - "1207": "驭空", - "1208": "符玄", - "1209": "彦卿", - "1210": "桂乃芬", - "1211": "白露", - "1212": "镜流", - "1213": "丹恒•饮月", - "1214": "雪衣", - "1215": "寒鸦", - "1217": "藿藿", - "1218": "椒丘", - "1220": "飞霄", - "1221": "云璃", - "1222": "灵砂", - "1223": "貊泽", - "1224": "三月七", - "1301": "加拉赫", - "1302": "银枝", - "1303": "阮•梅", - "1304": "砂金", - "1305": "真理医生", - "1306": "花火", - "1307": "黑天鹅", - "1308": "黄泉", - "1309": "知更鸟", - "1310": "流萤", - "1312": "米沙", - "1314": "翡翠", - "1315": "波提欧", - "8001": "开拓者", - "8002": "开拓者", - "8003": "开拓者", - "8004": "开拓者", - "8005": "开拓者", - "8006": "开拓者" -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/avatarId2Rarity_mapping_2.5.0.json b/StarRailUID/utils/map/data/avatarId2Rarity_mapping_2.5.0.json deleted file mode 100644 index 83f6af5..0000000 --- a/StarRailUID/utils/map/data/avatarId2Rarity_mapping_2.5.0.json +++ /dev/null @@ -1,64 +0,0 @@ -{ - "1001": "4", - "1002": "4", - "1003": "5", - "1004": "5", - "1005": "5", - "1006": "5", - "1008": "4", - "1009": "4", - "1013": "4", - "1101": "5", - "1102": "5", - "1103": "4", - "1104": "5", - "1105": "4", - "1106": "4", - "1107": "5", - "1108": "4", - "1109": "4", - "1110": "4", - "1111": "4", - "1112": "5", - "1201": "4", - "1202": "4", - "1203": "5", - "1204": "5", - "1205": "5", - "1206": "4", - "1207": "4", - "1208": "5", - "1209": "5", - "1210": "4", - "1211": "5", - "1212": "5", - "1213": "5", - "1214": "4", - "1215": "4", - "1217": "5", - "1218": "5", - "1220": "5", - "1221": "5", - "1222": "5", - "1223": "4", - "1224": "4", - "1301": "4", - "1302": "5", - "1303": "5", - "1304": "5", - "1305": "5", - "1306": "5", - "1307": "5", - "1308": "5", - "1309": "5", - "1310": "5", - "1312": "4", - "1314": "5", - "1315": "5", - "8001": "5", - "8002": "5", - "8003": "5", - "8004": "5", - "8005": "5", - "8006": "5" -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/avatarRankSkillUp_mapping_2.5.0.json b/StarRailUID/utils/map/data/avatarRankSkillUp_mapping_2.5.0.json deleted file mode 100644 index 1838ed3..0000000 --- a/StarRailUID/utils/map/data/avatarRankSkillUp_mapping_2.5.0.json +++ /dev/null @@ -1,1598 +0,0 @@ -{ - "100101": [], - "100102": [], - "100103": [ - { - "id": "100103", - "num": 2 - }, - { - "id": "100101", - "num": 1 - } - ], - "100104": [], - "100105": [ - { - "id": "100102", - "num": 2 - }, - { - "id": "100104", - "num": 2 - } - ], - "100106": [], - "100201": [], - "100202": [], - "100203": [ - { - "id": "100202", - "num": 2 - }, - { - "id": "100201", - "num": 1 - } - ], - "100204": [], - "100205": [ - { - "id": "100203", - "num": 2 - }, - { - "id": "100204", - "num": 2 - } - ], - "100206": [], - "100301": [], - "100302": [], - "100303": [ - { - "id": "100302", - "num": 2 - }, - { - "id": "100301", - "num": 1 - } - ], - "100304": [], - "100305": [ - { - "id": "100303", - "num": 2 - }, - { - "id": "100304", - "num": 2 - } - ], - "100306": [], - "100401": [], - "100402": [], - "100403": [ - { - "id": "100402", - "num": 2 - }, - { - "id": "100401", - "num": 1 - } - ], - "100404": [], - "100405": [ - { - "id": "100403", - "num": 2 - }, - { - "id": "100404", - "num": 2 - } - ], - "100406": [], - "100501": [], - "100502": [], - "100503": [ - { - "id": "100502", - "num": 2 - }, - { - "id": "100501", - "num": 1 - } - ], - "100504": [], - "100505": [ - { - "id": "100503", - "num": 2 - }, - { - "id": "100504", - "num": 2 - } - ], - "100506": [], - "100601": [], - "100602": [], - "100603": [ - { - "id": "100602", - "num": 2 - }, - { - "id": "100604", - "num": 2 - } - ], - "100604": [], - "100605": [ - { - "id": "100603", - "num": 2 - }, - { - "id": "100601", - "num": 1 - } - ], - "100606": [], - "100801": [], - "100802": [], - "100803": [ - { - "id": "100802", - "num": 2 - }, - { - "id": "100801", - "num": 1 - } - ], - "100804": [], - "100805": [ - { - "id": "100803", - "num": 2 - }, - { - "id": "100804", - "num": 2 - } - ], - "100806": [], - "100901": [], - "100902": [], - "100903": [ - { - "id": "100902", - "num": 2 - }, - { - "id": "100904", - "num": 2 - } - ], - "100904": [], - "100905": [ - { - "id": "100903", - "num": 2 - }, - { - "id": "100901", - "num": 1 - } - ], - "100906": [], - "101301": [], - "101302": [], - "101303": [ - { - "id": "101302", - "num": 2 - }, - { - "id": "101301", - "num": 1 - } - ], - "101304": [], - "101305": [ - { - "id": "101303", - "num": 2 - }, - { - "id": "101304", - "num": 2 - } - ], - "101306": [], - "110101": [], - "110102": [], - "110103": [ - { - "id": "110103", - "num": 2 - }, - { - "id": "110104", - "num": 2 - } - ], - "110104": [], - "110105": [ - { - "id": "110102", - "num": 2 - }, - { - "id": "110101", - "num": 1 - } - ], - "110106": [], - "110201": [], - "110202": [], - "110203": [ - { - "id": "110202", - "num": 2 - }, - { - "id": "110204", - "num": 2 - } - ], - "110204": [], - "110205": [ - { - "id": "110203", - "num": 2 - }, - { - "id": "110201", - "num": 1 - } - ], - "110206": [], - "110301": [], - "110302": [], - "110303": [ - { - "id": "110302", - "num": 2 - }, - { - "id": "110301", - "num": 1 - } - ], - "110304": [], - "110305": [ - { - "id": "110303", - "num": 2 - }, - { - "id": "110304", - "num": 2 - } - ], - "110306": [], - "110401": [], - "110402": [], - "110403": [ - { - "id": "110403", - "num": 2 - }, - { - "id": "110404", - "num": 2 - } - ], - "110404": [], - "110405": [ - { - "id": "110402", - "num": 2 - }, - { - "id": "110401", - "num": 1 - } - ], - "110406": [], - "110501": [], - "110502": [], - "110503": [ - { - "id": "110502", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ], - "110504": [], - "110505": [ - { - "id": "110503", - "num": 2 - }, - { - "id": "110504", - "num": 2 - } - ], - "110506": [], - "110601": [], - "110602": [], - "110603": [ - { - "id": "110602", - "num": 2 - }, - { - "id": "110601", - "num": 1 - } - ], - "110604": [], - "110605": [ - { - "id": "110603", - "num": 2 - }, - { - "id": "110604", - "num": 2 - } - ], - "110606": [], - "110701": [], - "110702": [], - "110703": [ - { - "id": "110702", - "num": 2 - }, - { - "id": "110701", - "num": 1 - } - ], - "110704": [], - "110705": [ - { - "id": "110703", - "num": 2 - }, - { - "id": "110704", - "num": 2 - } - ], - "110706": [], - "110801": [], - "110802": [], - "110803": [ - { - "id": "110802", - "num": 2 - }, - { - "id": "110801", - "num": 1 - } - ], - "110804": [], - "110805": [ - { - "id": "110803", - "num": 2 - }, - { - "id": "110804", - "num": 2 - } - ], - "110806": [], - "110901": [], - "110902": [], - "110903": [ - { - "id": "110902", - "num": 2 - }, - { - "id": "110901", - "num": 1 - }, - { - "id": "110909", - "num": 2 - } - ], - "110904": [], - "110905": [ - { - "id": "110903", - "num": 2 - }, - { - "id": "110904", - "num": 2 - } - ], - "110906": [], - "111001": [], - "111002": [], - "111003": [ - { - "id": "111002", - "num": 2 - }, - { - "id": "111001", - "num": 1 - } - ], - "111004": [], - "111005": [ - { - "id": "111003", - "num": 2 - }, - { - "id": "111004", - "num": 2 - } - ], - "111006": [], - "111101": [], - "111102": [], - "111103": [ - { - "id": "111102", - "num": 2 - }, - { - "id": "111104", - "num": 2 - } - ], - "111104": [], - "111105": [ - { - "id": "111103", - "num": 2 - }, - { - "id": "111101", - "num": 1 - }, - { - "id": "111108", - "num": 1 - } - ], - "111106": [], - "111201": [], - "111202": [], - "111203": [ - { - "id": "111202", - "num": 2 - }, - { - "id": "111201", - "num": 1 - } - ], - "111204": [], - "111205": [ - { - "id": "111203", - "num": 2 - }, - { - "id": "111204", - "num": 2 - } - ], - "111206": [], - "120101": [], - "120102": [], - "120103": [ - { - "id": "120103", - "num": 2 - }, - { - "id": "120104", - "num": 2 - } - ], - "120104": [], - "120105": [ - { - "id": "120102", - "num": 2 - }, - { - "id": "120101", - "num": 1 - }, - { - "id": "120108", - "num": 1 - } - ], - "120106": [], - "120201": [], - "120202": [], - "120203": [ - { - "id": "120203", - "num": 2 - }, - { - "id": "120201", - "num": 1 - } - ], - "120204": [], - "120205": [ - { - "id": "120202", - "num": 2 - }, - { - "id": "120204", - "num": 2 - } - ], - "120206": [], - "120301": [], - "120302": [], - "120303": [ - { - "id": "120302", - "num": 2 - }, - { - "id": "120301", - "num": 1 - } - ], - "120304": [], - "120305": [ - { - "id": "120303", - "num": 2 - }, - { - "id": "120304", - "num": 2 - } - ], - "120306": [], - "120401": [], - "120402": [], - "120403": [ - { - "id": "120403", - "num": 2 - }, - { - "id": "120401", - "num": 1 - } - ], - "120404": [], - "120405": [ - { - "id": "120402", - "num": 2 - }, - { - "id": "120404", - "num": 2 - } - ], - "120406": [], - "120501": [], - "120502": [], - "120503": [ - { - "id": "120503", - "num": 2 - }, - { - "id": "120504", - "num": 2 - } - ], - "120504": [], - "120505": [ - { - "id": "120502", - "num": 2 - }, - { - "id": "120501", - "num": 1 - }, - { - "id": "120508", - "num": 1 - } - ], - "120506": [], - "120601": [], - "120602": [], - "120603": [ - { - "id": "120603", - "num": 2 - }, - { - "id": "120604", - "num": 2 - } - ], - "120604": [], - "120605": [ - { - "id": "120602", - "num": 2 - }, - { - "id": "120601", - "num": 1 - } - ], - "120606": [], - "120701": [], - "120702": [], - "120703": [ - { - "id": "120702", - "num": 2 - }, - { - "id": "120701", - "num": 1 - } - ], - "120704": [], - "120705": [ - { - "id": "120703", - "num": 2 - }, - { - "id": "120704", - "num": 2 - } - ], - "120706": [], - "120801": [], - "120802": [], - "120803": [ - { - "id": "120802", - "num": 2 - }, - { - "id": "120804", - "num": 2 - } - ], - "120804": [], - "120805": [ - { - "id": "120803", - "num": 2 - }, - { - "id": "120801", - "num": 1 - } - ], - "120806": [], - "120901": [], - "120902": [], - "120903": [ - { - "id": "120902", - "num": 2 - }, - { - "id": "120901", - "num": 1 - } - ], - "120904": [], - "120905": [ - { - "id": "120903", - "num": 2 - }, - { - "id": "120904", - "num": 2 - } - ], - "120906": [], - "121001": [], - "121002": [], - "121003": [ - { - "id": "121002", - "num": 2 - }, - { - "id": "121001", - "num": 1 - } - ], - "121004": [], - "121005": [ - { - "id": "121003", - "num": 2 - }, - { - "id": "121004", - "num": 2 - } - ], - "121006": [], - "121101": [], - "121102": [], - "121103": [ - { - "id": "121102", - "num": 2 - }, - { - "id": "121104", - "num": 2 - } - ], - "121104": [], - "121105": [ - { - "id": "121103", - "num": 2 - }, - { - "id": "121101", - "num": 1 - } - ], - "121106": [], - "121201": [], - "121202": [], - "121203": [ - { - "id": "121203", - "num": 2 - }, - { - "id": "121204", - "num": 2 - } - ], - "121204": [], - "121205": [ - { - "id": "121202", - "num": 2 - }, - { - "id": "121201", - "num": 1 - }, - { - "id": "121209", - "num": 2 - } - ], - "121206": [], - "121301": [], - "121302": [], - "121303": [ - { - "id": "121302", - "num": 2 - }, - { - "id": "121301", - "num": 1 - }, - { - "id": "121308", - "num": 1 - }, - { - "id": "121310", - "num": 1 - }, - { - "id": "121312", - "num": 1 - } - ], - "121304": [], - "121305": [ - { - "id": "121303", - "num": 2 - }, - { - "id": "121304", - "num": 2 - } - ], - "121306": [], - "121401": [], - "121402": [], - "121403": [ - { - "id": "121402", - "num": 2 - }, - { - "id": "121401", - "num": 1 - } - ], - "121404": [], - "121405": [ - { - "id": "121403", - "num": 2 - }, - { - "id": "121404", - "num": 2 - } - ], - "121406": [], - "121501": [], - "121502": [], - "121503": [ - { - "id": "121502", - "num": 2 - }, - { - "id": "121501", - "num": 1 - } - ], - "121504": [], - "121505": [ - { - "id": "121503", - "num": 2 - }, - { - "id": "121504", - "num": 2 - } - ], - "121506": [], - "121701": [], - "121702": [], - "121703": [ - { - "id": "121703", - "num": 2 - }, - { - "id": "121704", - "num": 2 - } - ], - "121704": [], - "121705": [ - { - "id": "121702", - "num": 2 - }, - { - "id": "121701", - "num": 1 - } - ], - "121706": [], - "121801": [], - "121802": [], - "121803": [ - { - "id": "121802", - "num": 2 - }, - { - "id": "121801", - "num": 1 - } - ], - "121804": [], - "121805": [ - { - "id": "121803", - "num": 2 - }, - { - "id": "121804", - "num": 2 - } - ], - "121806": [], - "122001": [], - "122002": [], - "122003": [ - { - "id": "122003", - "num": 2 - }, - { - "id": "122001", - "num": 1 - }, - { - "id": "122008", - "num": 2 - }, - { - "id": "122009", - "num": 2 - }, - { - "id": "122014", - "num": 2 - } - ], - "122004": [], - "122005": [ - { - "id": "122002", - "num": 2 - }, - { - "id": "122004", - "num": 2 - } - ], - "122006": [], - "122101": [], - "122102": [], - "122103": [ - { - "id": "122103", - "num": 2 - }, - { - "id": "122101", - "num": 1 - } - ], - "122104": [], - "122105": [ - { - "id": "122102", - "num": 2 - }, - { - "id": "122104", - "num": 2 - } - ], - "122106": [], - "122201": [], - "122202": [], - "122203": [ - { - "id": "122203", - "num": 2 - }, - { - "id": "122204", - "num": 2 - } - ], - "122204": [], - "122205": [ - { - "id": "122202", - "num": 2 - }, - { - "id": "122201", - "num": 1 - } - ], - "122206": [], - "122301": [], - "122302": [], - "122303": [ - { - "id": "122303", - "num": 2 - }, - { - "id": "122304", - "num": 2 - } - ], - "122304": [], - "122305": [ - { - "id": "122302", - "num": 2 - }, - { - "id": "122301", - "num": 1 - } - ], - "122306": [], - "122401": [], - "122402": [], - "122403": [ - { - "id": "122402", - "num": 2 - }, - { - "id": "122401", - "num": 1 - }, - { - "id": "122408", - "num": 1 - } - ], - "122404": [], - "122405": [ - { - "id": "122403", - "num": 2 - }, - { - "id": "122404", - "num": 2 - } - ], - "122406": [], - "130101": [], - "130102": [], - "130103": [ - { - "id": "130102", - "num": 2 - }, - { - "id": "130101", - "num": 1 - }, - { - "id": "130108", - "num": 1 - } - ], - "130104": [], - "130105": [ - { - "id": "130103", - "num": 2 - }, - { - "id": "130104", - "num": 2 - } - ], - "130106": [], - "130201": [], - "130202": [], - "130203": [ - { - "id": "130202", - "num": 2 - }, - { - "id": "130204", - "num": 2 - } - ], - "130204": [], - "130205": [ - { - "id": "130203", - "num": 2 - }, - { - "id": "130201", - "num": 1 - }, - { - "id": "130214", - "num": 2 - } - ], - "130206": [], - "130301": [], - "130302": [], - "130303": [ - { - "id": "130303", - "num": 2 - }, - { - "id": "130304", - "num": 2 - } - ], - "130304": [], - "130305": [ - { - "id": "130302", - "num": 2 - }, - { - "id": "130301", - "num": 1 - } - ], - "130306": [], - "130401": [], - "130402": [], - "130403": [ - { - "id": "130403", - "num": 2 - }, - { - "id": "130401", - "num": 1 - } - ], - "130404": [], - "130405": [ - { - "id": "130402", - "num": 2 - }, - { - "id": "130404", - "num": 2 - } - ], - "130406": [], - "130501": [], - "130502": [], - "130503": [ - { - "id": "130503", - "num": 2 - }, - { - "id": "130501", - "num": 1 - } - ], - "130504": [], - "130505": [ - { - "id": "130502", - "num": 2 - }, - { - "id": "130504", - "num": 2 - } - ], - "130506": [], - "130601": [], - "130602": [], - "130603": [ - { - "id": "130602", - "num": 2 - }, - { - "id": "130601", - "num": 1 - } - ], - "130604": [], - "130605": [ - { - "id": "130603", - "num": 2 - }, - { - "id": "130604", - "num": 2 - } - ], - "130606": [], - "130701": [], - "130702": [], - "130703": [ - { - "id": "130702", - "num": 2 - }, - { - "id": "130704", - "num": 2 - } - ], - "130704": [], - "130705": [ - { - "id": "130703", - "num": 2 - }, - { - "id": "130701", - "num": 1 - } - ], - "130706": [], - "130801": [], - "130802": [], - "130803": [ - { - "id": "130803", - "num": 2 - }, - { - "id": "130801", - "num": 1 - }, - { - "id": "130814", - "num": 2 - }, - { - "id": "130815", - "num": 2 - }, - { - "id": "130816", - "num": 2 - }, - { - "id": "130817", - "num": 2 - } - ], - "130804": [], - "130805": [ - { - "id": "130802", - "num": 2 - }, - { - "id": "130804", - "num": 2 - } - ], - "130806": [], - "130901": [], - "130902": [], - "130903": [ - { - "id": "130902", - "num": 2 - }, - { - "id": "130903", - "num": 2 - } - ], - "130904": [], - "130905": [ - { - "id": "130901", - "num": 1 - }, - { - "id": "130904", - "num": 2 - } - ], - "130906": [], - "131001": [], - "131002": [], - "131003": [ - { - "id": "131002", - "num": 2 - }, - { - "id": "131001", - "num": 1 - }, - { - "id": "131009", - "num": 2 - }, - { - "id": "131008", - "num": 1 - } - ], - "131004": [], - "131005": [ - { - "id": "131003", - "num": 2 - }, - { - "id": "131004", - "num": 2 - } - ], - "131006": [], - "131201": [], - "131202": [], - "131203": [ - { - "id": "131203", - "num": 2 - }, - { - "id": "131201", - "num": 1 - } - ], - "131204": [], - "131205": [ - { - "id": "131202", - "num": 2 - }, - { - "id": "131204", - "num": 2 - } - ], - "131206": [], - "131401": [], - "131402": [], - "131403": [ - { - "id": "131402", - "num": 2 - }, - { - "id": "131404", - "num": 2 - } - ], - "131404": [], - "131405": [ - { - "id": "131403", - "num": 2 - }, - { - "id": "131401", - "num": 1 - } - ], - "131406": [], - "131501": [], - "131502": [], - "131503": [ - { - "id": "131503", - "num": 2 - }, - { - "id": "131501", - "num": 1 - }, - { - "id": "131508", - "num": 1 - } - ], - "131504": [], - "131505": [ - { - "id": "131502", - "num": 2 - }, - { - "id": "131504", - "num": 2 - } - ], - "131506": [], - "800101": [], - "800102": [], - "800103": [ - { - "id": "800102", - "num": 2 - }, - { - "id": "800104", - "num": 2 - } - ], - "800104": [], - "800105": [ - { - "id": "800103", - "num": 2 - }, - { - "id": "800101", - "num": 1 - }, - { - "id": "800108", - "num": 2 - }, - { - "id": "800109", - "num": 2 - } - ], - "800106": [], - "800201": [], - "800202": [], - "800203": [ - { - "id": "800202", - "num": 2 - }, - { - "id": "800204", - "num": 2 - } - ], - "800204": [], - "800205": [ - { - "id": "800203", - "num": 2 - }, - { - "id": "800201", - "num": 1 - }, - { - "id": "800208", - "num": 2 - }, - { - "id": "800209", - "num": 2 - } - ], - "800206": [], - "800301": [], - "800302": [], - "800303": [ - { - "id": "800302", - "num": 2 - }, - { - "id": "800304", - "num": 2 - } - ], - "800304": [], - "800305": [ - { - "id": "800303", - "num": 2 - }, - { - "id": "800301", - "num": 1 - }, - { - "id": "800308", - "num": 1 - } - ], - "800306": [], - "800401": [], - "800402": [], - "800403": [ - { - "id": "800402", - "num": 2 - }, - { - "id": "800404", - "num": 2 - } - ], - "800404": [], - "800405": [ - { - "id": "800403", - "num": 2 - }, - { - "id": "800401", - "num": 1 - }, - { - "id": "800408", - "num": 1 - } - ], - "800406": [], - "800501": [], - "800502": [], - "800503": [ - { - "id": "800502", - "num": 2 - }, - { - "id": "800504", - "num": 2 - } - ], - "800504": [], - "800505": [ - { - "id": "800503", - "num": 2 - }, - { - "id": "800501", - "num": 1 - } - ], - "800506": [], - "800601": [], - "800602": [], - "800603": [ - { - "id": "800602", - "num": 2 - }, - { - "id": "800604", - "num": 2 - } - ], - "800604": [], - "800605": [ - { - "id": "800603", - "num": 2 - }, - { - "id": "800601", - "num": 1 - } - ], - "800606": [] -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/characterSkillTree_mapping_2.5.0.json b/StarRailUID/utils/map/data/characterSkillTree_mapping_2.5.0.json deleted file mode 100644 index e4a11cb..0000000 --- a/StarRailUID/utils/map/data/characterSkillTree_mapping_2.5.0.json +++ /dev/null @@ -1,77488 +0,0 @@ -{ - "1001": { - "1001001": { - "id": "1001001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "100101", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1001_basic_atk.png" - }, - "1001002": { - "id": "1001002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "100102", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110142", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110143", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110143", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1001_skill.png" - }, - "1001003": { - "id": "1001003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "100103", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110142", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110143", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110143", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1001_ultimate.png" - }, - "1001004": { - "id": "1001004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "100104", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110142", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110143", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110143", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1001_talent.png" - }, - "1001007": { - "id": "1001007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "100107", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1001_technique.png" - }, - "1001101": { - "id": "1001101", - "name": "纯洁", - "max_level": 1, - "desc": "施放战技时,解除指定我方单体的1个负面效果。", - "params": [], - "anchor": "Point06", - "pre_points": [ - "1001201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1001_skilltree1.png" - }, - "1001102": { - "id": "1001102", - "name": "加护", - "max_level": 1, - "desc": "战技提供的护盾持续时间增加#1[i]回合。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point07", - "pre_points": [ - "1001201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1001_skilltree2.png" - }, - "1001103": { - "id": "1001103", - "name": "冰咒", - "max_level": 1, - "desc": "施放终结技时,冻结敌方目标的基础概率提高#1[i]%。", - "params": [ - [ - 0.15 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1001_skilltree3.png" - }, - "1001201": { - "id": "1001201", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1001202": { - "id": "1001202", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1001101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1001203": { - "id": "1001203", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1001202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1001204": { - "id": "1001204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1001205": { - "id": "1001205", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1001102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1001206": { - "id": "1001206", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1001205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1001207": { - "id": "1001207", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1001208": { - "id": "1001208", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1001103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1001209": { - "id": "1001209", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1001208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1001210": { - "id": "1001210", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1001208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.1 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - } - }, - "1002": { - "1002001": { - "id": "1002001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "100201", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110121", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110122", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110122", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110123", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1002_basic_atk.png" - }, - "1002002": { - "id": "1002002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "100202", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110121", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110122", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110122", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110122", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110123", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110123", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110123", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1002_skill.png" - }, - "1002003": { - "id": "1002003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "100203", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110121", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110122", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110122", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110122", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110123", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110123", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110123", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1002_ultimate.png" - }, - "1002004": { - "id": "1002004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "100204", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110121", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110122", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110122", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110122", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110123", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110123", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110123", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1002_talent.png" - }, - "1002007": { - "id": "1002007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "100207", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1002_technique.png" - }, - "1002101": { - "id": "1002101", - "name": "潜龙", - "max_level": 1, - "desc": "若当前生命值百分比小于等于#1[i]%,则被敌方目标攻击的概率降低。", - "params": [ - [ - 0.5, - 0.5 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110121", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1002_skilltree1.png" - }, - "1002102": { - "id": "1002102", - "name": "绝影", - "max_level": 1, - "desc": "施放攻击后有#1[i]%的固定概率使自身速度提高#2[i]%,持续#3[i]回合。", - "params": [ - [ - 0.5, - 0.2, - 2 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110122", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1002_skilltree2.png" - }, - "1002103": { - "id": "1002103", - "name": "罡风", - "max_level": 1, - "desc": "普攻对减速状态下的敌方目标造成的伤害提高#1[i]%。", - "params": [ - [ - 0.4 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1002_skilltree3.png" - }, - "1002201": { - "id": "1002201", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - }, - "1002202": { - "id": "1002202", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1002101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110121", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1002203": { - "id": "1002203", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1002202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110122", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - }, - "1002204": { - "id": "1002204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110122", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1002205": { - "id": "1002205", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1002102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110122", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - }, - "1002206": { - "id": "1002206", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1002205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110123", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1002207": { - "id": "1002207", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110123", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - }, - "1002208": { - "id": "1002208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1002103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1002209": { - "id": "1002209", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1002208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1002210": { - "id": "1002210", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1002208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - } - }, - "1003": { - "1003001": { - "id": "1003001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "100301", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "111003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1003_basic_atk.png" - }, - "1003002": { - "id": "1003002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "100302", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110132", - "num": 7 - }, - { - "id": "111002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110133", - "num": 5 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110133", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1003_skill.png" - }, - "1003003": { - "id": "1003003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "100303", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110132", - "num": 7 - }, - { - "id": "111002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110133", - "num": 5 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110133", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1003_ultimate.png" - }, - "1003004": { - "id": "1003004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "100304", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110132", - "num": 7 - }, - { - "id": "111002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110133", - "num": 5 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110133", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1003_talent.png" - }, - "1003007": { - "id": "1003007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "100307", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1003_technique.png" - }, - "1003101": { - "id": "1003101", - "name": "星火", - "max_level": 1, - "desc": "施放攻击后,有#1[i]%的基础概率使敌方目标陷入灼烧状态,持续#2[i]回合。\n灼烧状态下,敌方目标每回合开始时受到等同于姬子#3[i]%攻击力的火属性持续伤害。", - "params": [ - [ - 0.5, - 2, - 0.3 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1003_skilltree1.png" - }, - "1003102": { - "id": "1003102", - "name": "灼热", - "max_level": 1, - "desc": "战技对灼烧状态下的敌方目标造成的伤害提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1003_skilltree2.png" - }, - "1003103": { - "id": "1003103", - "name": "道标", - "max_level": 1, - "desc": "若当前生命值百分比大于等于#1[i]%,则暴击率提高#2[i]%。", - "params": [ - [ - 0.8, - 0.15 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1003_skilltree3.png" - }, - "1003201": { - "id": "1003201", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1003202": { - "id": "1003202", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1003101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1003203": { - "id": "1003203", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1003202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1003204": { - "id": "1003204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1003202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1003205": { - "id": "1003205", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1003102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1003206": { - "id": "1003206", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1003205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1003207": { - "id": "1003207", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1003205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1003208": { - "id": "1003208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1003103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "111003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1003209": { - "id": "1003209", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1003103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "111003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1003210": { - "id": "1003210", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "111003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - } - }, - "1004": { - "1004001": { - "id": "1004001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "100401", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "112003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1004_basic_atk.png" - }, - "1004002": { - "id": "1004002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "100402", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110152", - "num": 7 - }, - { - "id": "112002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110153", - "num": 5 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "112003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110153", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1004_skill.png" - }, - "1004003": { - "id": "1004003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "100403", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110152", - "num": 7 - }, - { - "id": "112002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110153", - "num": 5 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "112003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110153", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1004_ultimate.png" - }, - "1004004": { - "id": "1004004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "100404", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110152", - "num": 7 - }, - { - "id": "112002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110153", - "num": 5 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "112003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110153", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1004_talent.png" - }, - "1004007": { - "id": "1004007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "100407", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1004_technique.png" - }, - "1004101": { - "id": "1004101", - "name": "惩戒", - "max_level": 1, - "desc": "施放终结技时,有#1[i]%基础概率使目标受到的伤害提高#2[i]%,持续#3[i]回合。", - "params": [ - [ - 1, - 0.12, - 2 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1004_skilltree1.png" - }, - "1004102": { - "id": "1004102", - "name": "审判", - "max_level": 1, - "desc": "施放终结技时,额外恢复#1[i]点能量。", - "params": [ - [ - 10 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1004_skilltree2.png" - }, - "1004103": { - "id": "1004103", - "name": "裁决", - "max_level": 1, - "desc": "对被弱点击破的敌方目标造成的伤害提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1004_skilltree3.png" - }, - "1004201": { - "id": "1004201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1004202": { - "id": "1004202", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1004101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1004203": { - "id": "1004203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1004202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1004204": { - "id": "1004204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1004203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1004205": { - "id": "1004205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1004102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1004206": { - "id": "1004206", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1004205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1004207": { - "id": "1004207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1004206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1004208": { - "id": "1004208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1004103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "112003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1004209": { - "id": "1004209", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1004103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "112003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1004210": { - "id": "1004210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1004201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "112003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1005": { - "1005001": { - "id": "1005001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "100501", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "111013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1005_basic_atk.png" - }, - "1005002": { - "id": "1005002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "100502", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110152", - "num": 7 - }, - { - "id": "111012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110153", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "111013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110153", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1005_skill.png" - }, - "1005003": { - "id": "1005003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "100503", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110152", - "num": 7 - }, - { - "id": "111012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110153", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "111013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110153", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1005_ultimate.png" - }, - "1005004": { - "id": "1005004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "100504", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110152", - "num": 7 - }, - { - "id": "111012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110153", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "111013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110153", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1005_talent.png" - }, - "1005007": { - "id": "1005007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "100507", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1005_technique.png" - }, - "1005101": { - "id": "1005101", - "name": "折磨", - "max_level": 1, - "desc": "施放终结技时,敌方目标由「其当前承受的触电状态立即产生伤害」变更为「其当前承受的所有持续伤害类负面状态立即产生伤害」。", - "params": [], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1005_skilltree1.png" - }, - "1005102": { - "id": "1005102", - "name": "掠夺", - "max_level": 1, - "desc": "触电状态下的敌方目标被消灭时,卡芙卡额外恢复#1[i]点能量。", - "params": [ - [ - 5 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1005_skilltree2.png" - }, - "1005103": { - "id": "1005103", - "name": "荆棘", - "max_level": 1, - "desc": "终结技、秘技与天赋触发的追加攻击使敌方目标陷入的触电状态的基础概率提高#1[i]%。", - "params": [ - [ - 0.3 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1005_skilltree3.png" - }, - "1005201": { - "id": "1005201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1005202": { - "id": "1005202", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1005101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1005203": { - "id": "1005203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1005202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1005204": { - "id": "1005204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1005203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1005205": { - "id": "1005205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1005102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1005206": { - "id": "1005206", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1005205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1005207": { - "id": "1005207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1005206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1005208": { - "id": "1005208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1005103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "111013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1005209": { - "id": "1005209", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1005103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "111013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1005210": { - "id": "1005210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1005201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "111013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1006": { - "1006001": { - "id": "1006001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "100601", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "112011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "112012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "112013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1006_basic_atk.png" - }, - "1006002": { - "id": "1006002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "100602", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "112011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "112012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110152", - "num": 7 - }, - { - "id": "112012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110153", - "num": 5 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "112013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110153", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1006_skill.png" - }, - "1006003": { - "id": "1006003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "100603", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "112011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "112012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110152", - "num": 7 - }, - { - "id": "112012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110153", - "num": 5 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "112013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110153", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1006_ultimate.png" - }, - "1006004": { - "id": "1006004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "100604", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "112011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "112012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110152", - "num": 7 - }, - { - "id": "112012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110153", - "num": 5 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "112013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110153", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1006_talent.png" - }, - "1006007": { - "id": "1006007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "100607", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1006_technique.png" - }, - "1006101": { - "id": "1006101", - "name": "生成", - "max_level": 1, - "desc": "【缺陷】的持续时间增加#1[i]回合。每当有敌方目标的弱点被击破时,银狼有#2[i]%的基础概率对该目标植入1个随机【缺陷】。", - "params": [ - [ - 1, - 0.65 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1006_skilltree1.png" - }, - "1006102": { - "id": "1006102", - "name": "注入", - "max_level": 1, - "desc": "施放战技时,为敌方目标添加的弱点持续时间增加#1[i]回合。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1006_skilltree2.png" - }, - "1006103": { - "id": "1006103", - "name": "旁注", - "max_level": 1, - "desc": "施放战技时,若敌方目标的负面效果数量大于等于#1[i]个,则战技使目标全属性抗性降低的效果额外降低#2[i]%。", - "params": [ - [ - 3, - 0.03 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1006_skilltree3.png" - }, - "1006201": { - "id": "1006201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1006202": { - "id": "1006202", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1006101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110151", - "num": 3 - }, - { - "id": "112011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1006203": { - "id": "1006203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1006202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "112012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1006204": { - "id": "1006204", - "name": "伤害强化•量子", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1006203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "QuantumAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110152", - "num": 3 - }, - { - "id": "112012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconQuantumAddedRatio.png" - }, - "1006205": { - "id": "1006205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1006102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110152", - "num": 5 - }, - { - "id": "112012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1006206": { - "id": "1006206", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1006205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "112013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1006207": { - "id": "1006207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1006206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110153", - "num": 3 - }, - { - "id": "112013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1006208": { - "id": "1006208", - "name": "伤害强化•量子", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1006103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "QuantumAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "112013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconQuantumAddedRatio.png" - }, - "1006209": { - "id": "1006209", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1006103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "112013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1006210": { - "id": "1006210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1006201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110153", - "num": 8 - }, - { - "id": "112013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1008": { - "1008001": { - "id": "1008001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "100801", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1008_basic_atk.png" - }, - "1008002": { - "id": "1008002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "100802", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1008_skill.png" - }, - "1008003": { - "id": "1008003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "100803", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1008_ultimate.png" - }, - "1008004": { - "id": "1008004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "100804", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1008_talent.png" - }, - "1008007": { - "id": "1008007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "100807", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1008_technique.png" - }, - "1008101": { - "id": "1008101", - "name": "苏生", - "max_level": 1, - "desc": "消灭敌方目标时,若当前生命值百分比小于等于#1[i]%,则立即回复等同于自身生命上限#2[i]%的生命值。", - "params": [ - [ - 0.3, - 0.2 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1008_skilltree1.png" - }, - "1008102": { - "id": "1008102", - "name": "坚忍", - "max_level": 1, - "desc": "抵抗持续伤害类负面状态的概率提高#1[i]%。", - "params": [ - [ - 0.5 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1008_skilltree2.png" - }, - "1008103": { - "id": "1008103", - "name": "抗御", - "max_level": 1, - "desc": "进入战斗时,若当前生命值百分比小于等于#1[i]%,阿兰可以抵抗除持续伤害外的所有伤害。当阿兰受到攻击后,该效果解除。", - "params": [ - [ - 0.5 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1008_skilltree3.png" - }, - "1008201": { - "id": "1008201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1008202": { - "id": "1008202", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1008101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1008203": { - "id": "1008203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1008202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1008204": { - "id": "1008204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1008203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1008205": { - "id": "1008205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1008102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1008206": { - "id": "1008206", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1008205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1008207": { - "id": "1008207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1008206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1008208": { - "id": "1008208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1008103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1008209": { - "id": "1008209", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1008208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1008210": { - "id": "1008210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1008208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1009": { - "1009001": { - "id": "1009001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "100901", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "112001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "112002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "112003", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "112003", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1009_basic_atk.png" - }, - "1009002": { - "id": "1009002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "100902", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "112001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "112002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110162", - "num": 6 - }, - { - "id": "112002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "112003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110163", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110163", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1009_skill.png" - }, - "1009003": { - "id": "1009003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "100903", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "112001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "112002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110162", - "num": 6 - }, - { - "id": "112002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "112003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110163", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110163", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1009_ultimate.png" - }, - "1009004": { - "id": "1009004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "100904", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "112001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "112002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110162", - "num": 6 - }, - { - "id": "112002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "112003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110163", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110163", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1009_talent.png" - }, - "1009007": { - "id": "1009007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "100907", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1009_technique.png" - }, - "1009101": { - "id": "1009101", - "name": "火花", - "max_level": 1, - "desc": "施放普攻时,有#1[i]%的基础概率使敌方目标陷入灼烧状态,持续#2[i]回合。\n灼烧状态下,敌方目标每回合开始时受到等同于艾丝妲普攻#3[i]%的火属性持续伤害。", - "params": [ - [ - 0.8, - 3, - 0.5 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1009_skilltree1.png" - }, - "1009102": { - "id": "1009102", - "name": "点燃", - "max_level": 1, - "desc": "艾丝妲在场时,我方全体的火属性伤害提高#1[i]%。", - "params": [ - [ - 0.18 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1009_skilltree2.png" - }, - "1009103": { - "id": "1009103", - "name": "星座", - "max_level": 1, - "desc": "艾丝妲每拥有1层蓄能,自身防御力提高#1[i]%。", - "params": [ - [ - 0.06 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1009_skilltree3.png" - }, - "1009201": { - "id": "1009201", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1009202": { - "id": "1009202", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1009101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "112001", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1009203": { - "id": "1009203", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1009202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "112002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1009204": { - "id": "1009204", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1009201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "112002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1009205": { - "id": "1009205", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1009102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "112002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1009206": { - "id": "1009206", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1009205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "112003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1009207": { - "id": "1009207", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1009201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "112003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1009208": { - "id": "1009208", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1009103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "112003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1009209": { - "id": "1009209", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1009208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.1 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "112003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1009210": { - "id": "1009210", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1009208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "112003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - } - }, - "1013": { - "1013001": { - "id": "1013001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "101301", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1013_basic_atk.png" - }, - "1013002": { - "id": "1013002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "101302", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110132", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110133", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110133", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1013_skill.png" - }, - "1013003": { - "id": "1013003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "101303", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110132", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110133", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110133", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1013_ultimate.png" - }, - "1013004": { - "id": "1013004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "101304", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110132", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110133", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110133", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1013_talent.png" - }, - "1013007": { - "id": "1013007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "101307", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1013_technique.png" - }, - "1013101": { - "id": "1013101", - "name": "效率", - "max_level": 1, - "desc": "施放战技时,对目标造成的伤害提高效果额外再提高#1[i]%。", - "params": [ - [ - 0.25 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1013_skilltree1.png" - }, - "1013102": { - "id": "1013102", - "name": "人偶", - "max_level": 1, - "desc": "抵抗控制类负面状态的概率提高#1[i]%。", - "params": [ - [ - 0.35 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1013_skilltree2.png" - }, - "1013103": { - "id": "1013103", - "name": "冰结", - "max_level": 1, - "desc": "施放终结技时,对冻结状态下的敌人造成的伤害提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1013_skilltree3.png" - }, - "1013201": { - "id": "1013201", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1013202": { - "id": "1013202", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1013101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1013203": { - "id": "1013203", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1013202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1013204": { - "id": "1013204", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1013202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1013205": { - "id": "1013205", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1013102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1013206": { - "id": "1013206", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1013205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1013207": { - "id": "1013207", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1013205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1013208": { - "id": "1013208", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1013103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1013209": { - "id": "1013209", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1013103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.1 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1013210": { - "id": "1013210", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - } - }, - "1101": { - "1101001": { - "id": "1101001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "110101", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110161", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110162", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110162", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110163", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "112003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1101_basic_atk.png" - }, - "1101002": { - "id": "1101002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "110102", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110161", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110162", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110162", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110162", - "num": 7 - }, - { - "id": "112002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110163", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110163", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110163", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1101_skill.png" - }, - "1101003": { - "id": "1101003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "110103", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110161", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110162", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110162", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110162", - "num": 7 - }, - { - "id": "112002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110163", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110163", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110163", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1101_ultimate.png" - }, - "1101004": { - "id": "1101004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "110104", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110161", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110162", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110162", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110162", - "num": 7 - }, - { - "id": "112002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110163", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110163", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110163", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1101_talent.png" - }, - "1101007": { - "id": "1101007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "110107", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1101_technique.png" - }, - "1101101": { - "id": "1101101", - "name": "号令", - "max_level": 1, - "desc": "普攻的暴击率提高至100%。", - "params": [], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110161", - "num": 3 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1101_skilltree1.png" - }, - "1101102": { - "id": "1101102", - "name": "阵地", - "max_level": 1, - "desc": "战斗开始时,我方全体的防御力提高#2[i]%,持续#1[i]回合。", - "params": [ - [ - 2, - 0.2 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110162", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1101_skilltree2.png" - }, - "1101103": { - "id": "1101103", - "name": "军势", - "max_level": 1, - "desc": "布洛妮娅在场时,我方全体造成的伤害提高#1[i]%。", - "params": [ - [ - 0.1 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1101_skilltree3.png" - }, - "1101201": { - "id": "1101201", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - }, - "1101202": { - "id": "1101202", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1101101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110161", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1101203": { - "id": "1101203", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1101202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110162", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - }, - "1101204": { - "id": "1101204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1101201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110162", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1101205": { - "id": "1101205", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1101102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110162", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - }, - "1101206": { - "id": "1101206", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1101205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110163", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1101207": { - "id": "1101207", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1101201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110163", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - }, - "1101208": { - "id": "1101208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1101103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "112003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1101209": { - "id": "1101209", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1101208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "112003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1101210": { - "id": "1101210", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1101208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "112003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - } - }, - "1102": { - "1102001": { - "id": "1102001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "110201", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "111013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1102_basic_atk.png" - }, - "1102002": { - "id": "1102002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "110202", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110122", - "num": 7 - }, - { - "id": "111012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110123", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110123", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1102_skill.png" - }, - "1102003": { - "id": "1102003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "110203", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110122", - "num": 7 - }, - { - "id": "111012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110123", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110123", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1102_ultimate.png" - }, - "1102004": { - "id": "1102004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "110204", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110122", - "num": 7 - }, - { - "id": "111012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110123", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110123", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1102_talent.png" - }, - "1102007": { - "id": "1102007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "110207", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1102_technique.png" - }, - "1102101": { - "id": "1102101", - "name": "夜行", - "max_level": 1, - "desc": "若当前生命值百分比小于等于#1[i]%,则被敌方目标攻击的概率降低。", - "params": [ - [ - 0.5, - 0.5 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1102_skilltree1.png" - }, - "1102102": { - "id": "1102102", - "name": "割裂", - "max_level": 1, - "desc": "增幅状态下希儿的量子属性抗性穿透提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1102_skilltree2.png" - }, - "1102103": { - "id": "1102103", - "name": "涟漪", - "max_level": 1, - "desc": "施放普攻后,希儿的下一次行动提前#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1102_skilltree3.png" - }, - "1102201": { - "id": "1102201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1102202": { - "id": "1102202", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1102101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1102203": { - "id": "1102203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1102202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1102204": { - "id": "1102204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1102205": { - "id": "1102205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1102102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1102206": { - "id": "1102206", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1102205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1102207": { - "id": "1102207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1102208": { - "id": "1102208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1102103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "111013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1102209": { - "id": "1102209", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1102208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "111013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1102210": { - "id": "1102210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1102208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "111013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1103": { - "1103001": { - "id": "1103001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "110301", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "112001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "112002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "112003", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "112003", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1103_basic_atk.png" - }, - "1103002": { - "id": "1103002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "110302", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "112001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "112002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110132", - "num": 6 - }, - { - "id": "112002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "112003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110133", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110133", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1103_skill.png" - }, - "1103003": { - "id": "1103003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "110303", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "112001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "112002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110132", - "num": 6 - }, - { - "id": "112002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "112003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110133", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110133", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1103_ultimate.png" - }, - "1103004": { - "id": "1103004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "110304", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "112001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "112002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110132", - "num": 6 - }, - { - "id": "112002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "112003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110133", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110133", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1103_talent.png" - }, - "1103007": { - "id": "1103007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "110307", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1103_technique.png" - }, - "1103101": { - "id": "1103101", - "name": "摇滚", - "max_level": 1, - "desc": "施放战技时,使受到攻击的敌方目标陷入触电状态的基础概率提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1103_skilltree1.png" - }, - "1103102": { - "id": "1103102", - "name": "电音", - "max_level": 1, - "desc": "战斗开始时,立即恢复#1[i]点能量。", - "params": [ - [ - 15 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1103_skilltree2.png" - }, - "1103103": { - "id": "1103103", - "name": "狂热", - "max_level": 1, - "desc": "消灭敌方目标后,攻击力提高#1[i]%,持续#2[i]回合。", - "params": [ - [ - 0.2, - 2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1103_skilltree3.png" - }, - "1103201": { - "id": "1103201", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1103202": { - "id": "1103202", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1103101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "112001", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1103203": { - "id": "1103203", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1103202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "112002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1103204": { - "id": "1103204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1103202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "112002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1103205": { - "id": "1103205", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1103102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "112002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1103206": { - "id": "1103206", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1103205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "112003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1103207": { - "id": "1103207", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1103205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "112003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1103208": { - "id": "1103208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1103103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "112003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1103209": { - "id": "1103209", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1103103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "112003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1103210": { - "id": "1103210", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "112003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - } - }, - "1104": { - "1104001": { - "id": "1104001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "110401", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110141", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110142", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110142", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110143", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "112003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1104_basic_atk.png" - }, - "1104002": { - "id": "1104002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "110402", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110141", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110142", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110142", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110142", - "num": 7 - }, - { - "id": "112002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110143", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110143", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110143", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1104_skill.png" - }, - "1104003": { - "id": "1104003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "110403", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110141", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110142", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110142", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110142", - "num": 7 - }, - { - "id": "112002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110143", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110143", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110143", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1104_ultimate.png" - }, - "1104004": { - "id": "1104004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "110404", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110141", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110142", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110142", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110142", - "num": 7 - }, - { - "id": "112002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110143", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110143", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110143", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1104_talent.png" - }, - "1104007": { - "id": "1104007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "110407", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1104_technique.png" - }, - "1104101": { - "id": "1104101", - "name": "刚正", - "max_level": 1, - "desc": "杰帕德被敌方攻击的概率提高。", - "params": [ - [ - 3 - ] - ], - "anchor": "Point06", - "pre_points": [ - "1104201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110141", - "num": 3 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1104_skilltree1.png" - }, - "1104102": { - "id": "1104102", - "name": "统领", - "max_level": 1, - "desc": "【不屈之身】触发后,杰帕德的能量立即恢复至100%。", - "params": [], - "anchor": "Point07", - "pre_points": [ - "1104201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110142", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1104_skilltree2.png" - }, - "1104103": { - "id": "1104103", - "name": "战意", - "max_level": 1, - "desc": "杰帕德提高等同于自身当前防御力#1[i]%的攻击力,每回合开始时刷新。", - "params": [ - [ - 0.35 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1104_skilltree3.png" - }, - "1104201": { - "id": "1104201", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1104202": { - "id": "1104202", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1104101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110141", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1104203": { - "id": "1104203", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1104202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110142", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1104204": { - "id": "1104204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110142", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1104205": { - "id": "1104205", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1104102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110142", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1104206": { - "id": "1104206", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1104205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110143", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1104207": { - "id": "1104207", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110143", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1104208": { - "id": "1104208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1104103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "112003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1104209": { - "id": "1104209", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1104208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "112003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1104210": { - "id": "1104210", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1104208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "112003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - } - }, - "1105": { - "1105001": { - "id": "1105001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "110501", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110171", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110172", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110172", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110173", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "112013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1105_basic_atk.png" - }, - "1105002": { - "id": "1105002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "110502", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110171", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110172", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110172", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110172", - "num": 6 - }, - { - "id": "112012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110173", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110173", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110173", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1105_skill.png" - }, - "1105003": { - "id": "1105003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "110503", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110171", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110172", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110172", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110172", - "num": 6 - }, - { - "id": "112012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110173", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110173", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110173", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1105_ultimate.png" - }, - "1105004": { - "id": "1105004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "110504", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110171", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110172", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110172", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110172", - "num": 6 - }, - { - "id": "112012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110173", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110173", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110173", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1105_talent.png" - }, - "1105007": { - "id": "1105007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "110507", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1105_technique.png" - }, - "1105101": { - "id": "1105101", - "name": "舒缓", - "max_level": 1, - "desc": "施放战技时,解除指定我方单体的#1[i]个负面效果。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110171", - "num": 2 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1105_skilltree1.png" - }, - "1105102": { - "id": "1105102", - "name": "医者", - "max_level": 1, - "desc": "娜塔莎提供的治疗量提高#1[i]%。", - "params": [ - [ - 0.1 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110172", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1105_skilltree2.png" - }, - "1105103": { - "id": "1105103", - "name": "调理", - "max_level": 1, - "desc": "施放战技产生的持续回复效果延长#1[i]回合。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1105_skilltree3.png" - }, - "1105201": { - "id": "1105201", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1105202": { - "id": "1105202", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1105101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110171", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1105203": { - "id": "1105203", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1105202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110172", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1105204": { - "id": "1105204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1105203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110172", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1105205": { - "id": "1105205", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1105102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110172", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1105206": { - "id": "1105206", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1105205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110173", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1105207": { - "id": "1105207", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1105206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110173", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1105208": { - "id": "1105208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1105103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "112013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1105209": { - "id": "1105209", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1105103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "112013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1105210": { - "id": "1105210", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "112013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - } - }, - "1106": { - "1106001": { - "id": "1106001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "110601", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1106_basic_atk.png" - }, - "1106002": { - "id": "1106002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "110602", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110152", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110153", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110153", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1106_skill.png" - }, - "1106003": { - "id": "1106003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "110603", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110152", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110153", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110153", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1106_ultimate.png" - }, - "1106004": { - "id": "1106004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "110604", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110152", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110153", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110153", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1106_talent.png" - }, - "1106007": { - "id": "1106007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "110607", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1106_technique.png" - }, - "1106101": { - "id": "1106101", - "name": "痛击", - "max_level": 1, - "desc": "对处于负面效果的敌方目标造成的伤害提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1106_skilltree1.png" - }, - "1106102": { - "id": "1106102", - "name": "秘策", - "max_level": 1, - "desc": "佩拉在场时,我方全体的效果命中提高#1[i]%。", - "params": [ - [ - 0.1 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1106_skilltree2.png" - }, - "1106103": { - "id": "1106103", - "name": "追歼", - "max_level": 1, - "desc": "施放战技解除增益效果时,下一次攻击造成的伤害提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1106_skilltree3.png" - }, - "1106201": { - "id": "1106201", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1106202": { - "id": "1106202", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1106101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1106203": { - "id": "1106203", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1106202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1106204": { - "id": "1106204", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1106203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1106205": { - "id": "1106205", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1106102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1106206": { - "id": "1106206", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1106205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1106207": { - "id": "1106207", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1106206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1106208": { - "id": "1106208", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1106103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1106209": { - "id": "1106209", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1106103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1106210": { - "id": "1106210", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1106201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - } - }, - "1107": { - "1107001": { - "id": "1107001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "110701", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "112011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "112012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "112013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1107_basic_atk.png" - }, - "1107002": { - "id": "1107002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "110702", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "112011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "112012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110112", - "num": 7 - }, - { - "id": "112012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110113", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110113", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1107_skill.png" - }, - "1107003": { - "id": "1107003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "110703", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "112011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "112012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110112", - "num": 7 - }, - { - "id": "112012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110113", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110113", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1107_ultimate.png" - }, - "1107004": { - "id": "1107004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "110704", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "112011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "112012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110112", - "num": 7 - }, - { - "id": "112012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110113", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110113", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1107_talent.png" - }, - "1107007": { - "id": "1107007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "110707", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1107_technique.png" - }, - "1107101": { - "id": "1107101", - "name": "家人", - "max_level": 1, - "desc": "受到攻击时有#1[i]%的固定概率解除自身1个负面效果。", - "params": [ - [ - 0.35 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1107_skilltree1.png" - }, - "1107102": { - "id": "1107102", - "name": "守护", - "max_level": 1, - "desc": "抵抗控制类负面状态的概率提高#1[i]%。", - "params": [ - [ - 0.35 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1107_skilltree2.png" - }, - "1107103": { - "id": "1107103", - "name": "复仇", - "max_level": 1, - "desc": "史瓦罗的反击造成的伤害提高#1[i]%。", - "params": [ - [ - 0.3 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1107_skilltree3.png" - }, - "1107201": { - "id": "1107201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1107202": { - "id": "1107202", - "name": "伤害强化•物理", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1107101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "PhysicalAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "112011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconPhysicalAddedRatio.png" - }, - "1107203": { - "id": "1107203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1107202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "112012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1107204": { - "id": "1107204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1107203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "112012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1107205": { - "id": "1107205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1107102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "112012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1107206": { - "id": "1107206", - "name": "伤害强化•物理", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1107205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "PhysicalAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "112013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconPhysicalAddedRatio.png" - }, - "1107207": { - "id": "1107207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1107206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "112013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1107208": { - "id": "1107208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1107103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "112013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1107209": { - "id": "1107209", - "name": "伤害强化•物理", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1107208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "PhysicalAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "112013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconPhysicalAddedRatio.png" - }, - "1107210": { - "id": "1107210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1107208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "112013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1108": { - "1108001": { - "id": "1108001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "110801", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "112013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1108_basic_atk.png" - }, - "1108002": { - "id": "1108002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "110802", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110152", - "num": 6 - }, - { - "id": "112012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110153", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110153", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1108_skill.png" - }, - "1108003": { - "id": "1108003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "110803", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110152", - "num": 6 - }, - { - "id": "112012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110153", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110153", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1108_ultimate.png" - }, - "1108004": { - "id": "1108004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "110804", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110152", - "num": 6 - }, - { - "id": "112012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110153", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110153", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1108_talent.png" - }, - "1108007": { - "id": "1108007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "110807", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1108_technique.png" - }, - "1108101": { - "id": "1108101", - "name": "圈套", - "max_level": 1, - "desc": "天赋使敌方陷入风化状态的持续时间延长#1[i]回合。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1108_skilltree1.png" - }, - "1108102": { - "id": "1108102", - "name": "后手", - "max_level": 1, - "desc": "施放终结技时,额外恢复#1[i]点能量。", - "params": [ - [ - 10 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1108_skilltree2.png" - }, - "1108103": { - "id": "1108103", - "name": "加料", - "max_level": 1, - "desc": "风化状态下的敌方目标对桑博造成的伤害降低#1[i]%。", - "params": [ - [ - 0.15 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1108_skilltree3.png" - }, - "1108201": { - "id": "1108201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1108202": { - "id": "1108202", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1108101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1108203": { - "id": "1108203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1108202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1108204": { - "id": "1108204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1108203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1108205": { - "id": "1108205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1108102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1108206": { - "id": "1108206", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1108205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1108207": { - "id": "1108207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1108206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1108208": { - "id": "1108208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1108103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "112013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1108209": { - "id": "1108209", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1108103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "112013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1108210": { - "id": "1108210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1108201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "112013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1109": { - "1109001": { - "id": "1109001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "110901", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "112013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1109_basic_atk.png" - }, - "1109002": { - "id": "1109002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "110902", - "num": 1 - }, - { - "id": "110909", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "112012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1109_skill.png" - }, - "1109003": { - "id": "1109003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "110903", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "112012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1109_ultimate.png" - }, - "1109004": { - "id": "1109004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "110904", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "112012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1109_talent.png" - }, - "1109007": { - "id": "1109007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "110907", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1109_technique.png" - }, - "1109101": { - "id": "1109101", - "name": "童真", - "max_level": 1, - "desc": "触发天赋时,回复等同于虎克生命上限#1[i]%的生命值。", - "params": [ - [ - 0.05 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1109_skilltree1.png" - }, - "1109102": { - "id": "1109102", - "name": "无邪", - "max_level": 1, - "desc": "抵抗控制类负面状态的概率提高#1[i]%。", - "params": [ - [ - 0.35 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1109_skilltree2.png" - }, - "1109103": { - "id": "1109103", - "name": "玩火", - "max_level": 1, - "desc": "施放终结技后,虎克的行动提前#2[i]%并额外恢复#1[i]点能量。", - "params": [ - [ - 5, - 0.2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1109_skilltree3.png" - }, - "1109201": { - "id": "1109201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1109202": { - "id": "1109202", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1109101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1109203": { - "id": "1109203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1109202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1109204": { - "id": "1109204", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1109203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1109205": { - "id": "1109205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1109102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1109206": { - "id": "1109206", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1109205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1109207": { - "id": "1109207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1109206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1109208": { - "id": "1109208", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1109103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "112013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1109209": { - "id": "1109209", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1109208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "112013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1109210": { - "id": "1109210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1109208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "112013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1110": { - "1110001": { - "id": "1110001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "111001", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110171", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110172", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110172", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110173", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1110_basic_atk.png" - }, - "1110002": { - "id": "1110002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "111002", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110171", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110172", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110172", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110172", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110173", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110173", - "num": 4 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110173", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1110_skill.png" - }, - "1110003": { - "id": "1110003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "111003", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110171", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110172", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110172", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110172", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110173", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110173", - "num": 4 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110173", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1110_ultimate.png" - }, - "1110004": { - "id": "1110004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "111004", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110171", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110172", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110172", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110172", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110173", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110173", - "num": 4 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110173", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1110_talent.png" - }, - "1110007": { - "id": "1110007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "111007", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1110_technique.png" - }, - "1110101": { - "id": "1110101", - "name": "提前勘测", - "max_level": 1, - "desc": "当持有【求生反应】的目标受到攻击后,玲可立即恢复#1[i]点能量。", - "params": [ - [ - 2 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110171", - "num": 2 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1110_skilltree1.png" - }, - "1110102": { - "id": "1110102", - "name": "探险技术", - "max_level": 1, - "desc": "抵抗控制类负面状态的概率提高#1[i]%。", - "params": [ - [ - 0.35 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110172", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1110_skilltree2.png" - }, - "1110103": { - "id": "1110103", - "name": "极境求生", - "max_level": 1, - "desc": "天赋产生的持续回复效果延长#1[i]回合。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1110_skilltree3.png" - }, - "1110201": { - "id": "1110201", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1110202": { - "id": "1110202", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1110101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110171", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1110203": { - "id": "1110203", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1110202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110172", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1110204": { - "id": "1110204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1110203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110172", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1110205": { - "id": "1110205", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1110102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110172", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1110206": { - "id": "1110206", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1110205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110173", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1110207": { - "id": "1110207", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1110206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110173", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1110208": { - "id": "1110208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1110103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1110209": { - "id": "1110209", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1110103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.1 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1110210": { - "id": "1110210", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110173", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - } - }, - "1111": { - "1111001": { - "id": "1111001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "111101", - "num": 1 - }, - { - "id": "111108", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "112013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1111_basic_atk.png" - }, - "1111002": { - "id": "1111002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "111102", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110152", - "num": 6 - }, - { - "id": "112012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110153", - "num": 4 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110153", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1111_skill.png" - }, - "1111003": { - "id": "1111003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "111103", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110152", - "num": 6 - }, - { - "id": "112012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110153", - "num": 4 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110153", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1111_ultimate.png" - }, - "1111004": { - "id": "1111004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "111104", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110152", - "num": 6 - }, - { - "id": "112012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110153", - "num": 4 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "112013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110153", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1111_talent.png" - }, - "1111007": { - "id": "1111007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "111107", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1111_technique.png" - }, - "1111101": { - "id": "1111101", - "name": "动能过载", - "max_level": 1, - "desc": "施放战技时,立即解除敌方目标#1[i]个增益效果。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1111_skilltree1.png" - }, - "1111102": { - "id": "1111102", - "name": "循环制动", - "max_level": 1, - "desc": "每获得1层【斗志】,额外恢复#1[i]点能量。", - "params": [ - [ - 3 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1111_skilltree2.png" - }, - "1111103": { - "id": "1111103", - "name": "粉碎斗志", - "max_level": 1, - "desc": "施放强化普攻时,【直冲拳】的每1段攻击都有#1[i]%的固定概率使卢卡额外施放1段攻击。此效果对额外施放的攻击不会生效。", - "params": [ - [ - 0.5 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1111_skilltree3.png" - }, - "1111201": { - "id": "1111201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "112011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1111202": { - "id": "1111202", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1111101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "112011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1111203": { - "id": "1111203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1111202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1111204": { - "id": "1111204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1111203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "112012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1111205": { - "id": "1111205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1111102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "112012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1111206": { - "id": "1111206", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1111205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1111207": { - "id": "1111207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1111206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "112013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1111208": { - "id": "1111208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1111103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "112013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1111209": { - "id": "1111209", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1111103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "112013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1111210": { - "id": "1111210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1111201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "112013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1112": { - "1112001": { - "id": "1112001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "111201", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "112003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1112_basic_atk.png" - }, - "1112002": { - "id": "1112002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "111202", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110122", - "num": 7 - }, - { - "id": "112002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110123", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "112003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110123", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1112_skill.png" - }, - "1112003": { - "id": "1112003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "111203", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110122", - "num": 7 - }, - { - "id": "112002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110123", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "112003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110123", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1112_ultimate.png" - }, - "1112004": { - "id": "1112004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "111204", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110122", - "num": 7 - }, - { - "id": "112002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110123", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "112003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110123", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1112_talent.png" - }, - "1112007": { - "id": "1112007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "111207", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1112_technique.png" - }, - "1112101": { - "id": "1112101", - "name": "透支", - "max_level": 1, - "desc": "托帕施放普攻造成伤害时,被视为发动了追加攻击。", - "params": [], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1112_skilltree1.png" - }, - "1112102": { - "id": "1112102", - "name": "金融动荡", - "max_level": 1, - "desc": "托帕和账账对拥有火属性弱点的敌方目标造成的伤害提高#1[i]%。", - "params": [ - [ - 0.15 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1112_skilltree2.png" - }, - "1112103": { - "id": "1112103", - "name": "技术性调整", - "max_level": 1, - "desc": "当账账处于【涨幅惊人!】状态施放攻击后,额外使托帕恢复#1[i]点能量。", - "params": [ - [ - 10 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1112_skilltree3.png" - }, - "1112201": { - "id": "1112201", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "112001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1112202": { - "id": "1112202", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1112101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "112001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1112203": { - "id": "1112203", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1112202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1112204": { - "id": "1112204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "112002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1112205": { - "id": "1112205", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1112102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "112002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1112206": { - "id": "1112206", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1112205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1112207": { - "id": "1112207", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "112003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1112208": { - "id": "1112208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1112103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "112003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1112209": { - "id": "1112209", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1112208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "112003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1112210": { - "id": "1112210", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1112208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "112003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - } - }, - "1201": { - "1201001": { - "id": "1201001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "120101", - "num": 1 - }, - { - "id": "120108", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1201_basic_atk.png" - }, - "1201002": { - "id": "1201002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "120102", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110132", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110133", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110133", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1201_skill.png" - }, - "1201003": { - "id": "1201003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "120103", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110132", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110133", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110133", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1201_ultimate.png" - }, - "1201004": { - "id": "1201004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "120104", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110132", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110133", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110133", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1201_talent.png" - }, - "1201007": { - "id": "1201007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "120107", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1201_technique.png" - }, - "1201101": { - "id": "1201101", - "name": "争番", - "max_level": 1, - "desc": "施放战技时,恢复1个战技点。该效果单场战斗中只能触发1次。", - "params": [], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1201_skilltree1.png" - }, - "1201102": { - "id": "1201102", - "name": "听牌", - "max_level": 1, - "desc": "战技使自身造成的伤害提高效果额外提高#1[i]%。", - "params": [ - [ - 0.1 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1201_skilltree2.png" - }, - "1201103": { - "id": "1201103", - "name": "抢杠", - "max_level": 1, - "desc": "施放强化普攻后,青雀的速度提高#1[i]%,持续1回合。", - "params": [ - [ - 0.1 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1201_skilltree3.png" - }, - "1201201": { - "id": "1201201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1201202": { - "id": "1201202", - "name": "伤害强化•量子", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1201101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "QuantumAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110131", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconQuantumAddedRatio.png" - }, - "1201203": { - "id": "1201203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1201202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1201204": { - "id": "1201204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1201202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110132", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1201205": { - "id": "1201205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1201102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110132", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1201206": { - "id": "1201206", - "name": "伤害强化•量子", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1201205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "QuantumAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconQuantumAddedRatio.png" - }, - "1201207": { - "id": "1201207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1201205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110133", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1201208": { - "id": "1201208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1201103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1201209": { - "id": "1201209", - "name": "伤害强化•量子", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1201103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "QuantumAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconQuantumAddedRatio.png" - }, - "1201210": { - "id": "1201210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110133", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1202": { - "1202001": { - "id": "1202001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "120201", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113003", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1202_basic_atk.png" - }, - "1202002": { - "id": "1202002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "120202", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110162", - "num": 6 - }, - { - "id": "113002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110163", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110163", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1202_skill.png" - }, - "1202003": { - "id": "1202003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "120203", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110162", - "num": 6 - }, - { - "id": "113002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110163", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110163", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1202_ultimate.png" - }, - "1202004": { - "id": "1202004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "120204", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110162", - "num": 6 - }, - { - "id": "113002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110163", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110163", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1202_talent.png" - }, - "1202007": { - "id": "1202007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "120207", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1202_technique.png" - }, - "1202101": { - "id": "1202101", - "name": "驻晴", - "max_level": 1, - "desc": "施放战技时,停云自身速度提高#1[i]%,持续1回合。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1202_skilltree1.png" - }, - "1202102": { - "id": "1202102", - "name": "止厄", - "max_level": 1, - "desc": "普攻造成的伤害提高#1[i]%。", - "params": [ - [ - 0.4 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1202_skilltree2.png" - }, - "1202103": { - "id": "1202103", - "name": "亨通", - "max_level": 1, - "desc": "停云的回合开始时,自身立即恢复#1[i]点能量。", - "params": [ - [ - 5 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1202_skilltree3.png" - }, - "1202201": { - "id": "1202201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1202202": { - "id": "1202202", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1202101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113001", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1202203": { - "id": "1202203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1202202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1202204": { - "id": "1202204", - "name": "伤害强化•雷", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1202201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "ThunderAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconThunderAddedRatio.png" - }, - "1202205": { - "id": "1202205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1202102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1202206": { - "id": "1202206", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1202205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1202207": { - "id": "1202207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1202201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1202208": { - "id": "1202208", - "name": "伤害强化•雷", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1202103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "ThunderAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "113003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconThunderAddedRatio.png" - }, - "1202209": { - "id": "1202209", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1202208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.1 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "113003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1202210": { - "id": "1202210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1202208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "113003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1203": { - "1203001": { - "id": "1203001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "120301", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "113013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1203_basic_atk.png" - }, - "1203002": { - "id": "1203002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "120302", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110172", - "num": 7 - }, - { - "id": "113012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110173", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "113013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110173", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1203_skill.png" - }, - "1203003": { - "id": "1203003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "120303", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110172", - "num": 7 - }, - { - "id": "113012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110173", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "113013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110173", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1203_ultimate.png" - }, - "1203004": { - "id": "1203004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "120304", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110172", - "num": 7 - }, - { - "id": "113012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110173", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "113013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110173", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1203_talent.png" - }, - "1203007": { - "id": "1203007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "120307", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1203_technique.png" - }, - "1203101": { - "id": "1203101", - "name": "浸池苏生", - "max_level": 1, - "desc": "触发战技效果时,解除指定我方单体的#1[i]个负面效果。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1203_skilltree1.png" - }, - "1203102": { - "id": "1203102", - "name": "浇灌尘身", - "max_level": 1, - "desc": "处于结界中的任意敌方目标受到我方攻击后,除攻击者外的我方目标也会回复等同于罗刹#1[f1]%攻击力+#2[i]的生命值。", - "params": [ - [ - 0.07, - 93 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1203_skilltree2.png" - }, - "1203103": { - "id": "1203103", - "name": "行过幽谷", - "max_level": 1, - "desc": "抵抗控制类负面状态的概率提高#1[i]%。", - "params": [ - [ - 0.7 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1203_skilltree3.png" - }, - "1203201": { - "id": "1203201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1203202": { - "id": "1203202", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1203101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1203203": { - "id": "1203203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1203202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1203204": { - "id": "1203204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1203203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1203205": { - "id": "1203205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1203102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1203206": { - "id": "1203206", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1203205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1203207": { - "id": "1203207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1203206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1203208": { - "id": "1203208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1203103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "113013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1203209": { - "id": "1203209", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1203103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "113013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1203210": { - "id": "1203210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "113013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1204": { - "1204001": { - "id": "1204001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "120401", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "113003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1204_basic_atk.png" - }, - "1204002": { - "id": "1204002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "120402", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110132", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110133", - "num": 5 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110133", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1204_skill.png" - }, - "1204003": { - "id": "1204003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "120403", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110132", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110133", - "num": 5 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110133", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1204_ultimate.png" - }, - "1204004": { - "id": "1204004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "120404", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110132", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110133", - "num": 5 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110133", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1204_talent.png" - }, - "1204007": { - "id": "1204007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "120407", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1204_technique.png" - }, - "1204101": { - "id": "1204101", - "name": "破阵", - "max_level": 1, - "desc": "若【神君】下回合的攻击段数大于等于#1[i]段,则其下回合的暴击伤害提高#2[i]%。", - "params": [ - [ - 6, - 0.25 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1204_skilltree1.png" - }, - "1204102": { - "id": "1204102", - "name": "绸缪", - "max_level": 1, - "desc": "战斗开始时,立即恢复#1[i]点能量。", - "params": [ - [ - 15 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1204_skilltree2.png" - }, - "1204103": { - "id": "1204103", - "name": "遣将", - "max_level": 1, - "desc": "施放战技后,暴击率提升#1[i]%,持续#2[i]回合。", - "params": [ - [ - 0.1, - 2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1204_skilltree3.png" - }, - "1204201": { - "id": "1204201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1204202": { - "id": "1204202", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1204101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1204203": { - "id": "1204203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1204202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1204204": { - "id": "1204204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1204202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1204205": { - "id": "1204205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1204102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1204206": { - "id": "1204206", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1204205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1204207": { - "id": "1204207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1204205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1204208": { - "id": "1204208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1204103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1204209": { - "id": "1204209", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1204103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1204210": { - "id": "1204210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1205": { - "1205001": { - "id": "1205001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "120501", - "num": 1 - }, - { - "id": "120508", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "113003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1205_basic_atk.png" - }, - "1205002": { - "id": "1205002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "120502", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110112", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110113", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110113", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1205_skill.png" - }, - "1205003": { - "id": "1205003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "120503", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110112", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110113", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110113", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1205_ultimate.png" - }, - "1205004": { - "id": "1205004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "120504", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110112", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110113", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110113", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1205_talent.png" - }, - "1205007": { - "id": "1205007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "120507", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1205_technique.png" - }, - "1205101": { - "id": "1205101", - "name": "无尽形寿", - "max_level": 1, - "desc": "刃的当前生命值百分比小于等于生命上限的50%时,受到治疗时的回复量提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1205_skilltree1.png" - }, - "1205102": { - "id": "1205102", - "name": "吞忍百死", - "max_level": 1, - "desc": "施放【无间剑树】后,若击中处于弱点击破状态的敌方目标,刃回复等同于自身#1[i]%生命上限+#2[i]的生命值。", - "params": [ - [ - 0.05, - 100 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1205_skilltree2.png" - }, - "1205103": { - "id": "1205103", - "name": "坏劫隳亡", - "max_level": 1, - "desc": "天赋施放的追加攻击伤害提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1205_skilltree3.png" - }, - "1205201": { - "id": "1205201", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1205202": { - "id": "1205202", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1205101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1205203": { - "id": "1205203", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1205202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1205204": { - "id": "1205204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1205203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1205205": { - "id": "1205205", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1205102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1205206": { - "id": "1205206", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1205205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1205207": { - "id": "1205207", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1205206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1205208": { - "id": "1205208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1205103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1205209": { - "id": "1205209", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1205208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1205210": { - "id": "1205210", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1205208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - } - }, - "1206": { - "1206001": { - "id": "1206001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "120601", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110121", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110122", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110122", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110123", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1206_basic_atk.png" - }, - "1206002": { - "id": "1206002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "120602", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110121", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110122", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110122", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110122", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110123", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110123", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110123", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1206_skill.png" - }, - "1206003": { - "id": "1206003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "120603", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110121", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110122", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110122", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110122", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110123", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110123", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110123", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1206_ultimate.png" - }, - "1206004": { - "id": "1206004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "120604", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110121", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110122", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110122", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110122", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110123", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110123", - "num": 4 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110123", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1206_talent.png" - }, - "1206007": { - "id": "1206007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "120607", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1206_technique.png" - }, - "1206101": { - "id": "1206101", - "name": "赤子", - "max_level": 1, - "desc": "若当前生命值百分比小于等于#1[i]%,则被敌方目标攻击的概率降低。", - "params": [ - [ - 0.5, - 0.5 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110121", - "num": 2 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1206_skilltree1.png" - }, - "1206102": { - "id": "1206102", - "name": "逐寇", - "max_level": 1, - "desc": "每发动1次【剑势】,【剑势】造成的伤害提高#1[i]%,该效果最多叠加#2[i]层。", - "params": [ - [ - 0.025, - 10 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110122", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1206_skilltree2.png" - }, - "1206103": { - "id": "1206103", - "name": "破敌", - "max_level": 1, - "desc": "施放普攻或战技后,若场上有敌方目标处于弱点击破状态,则素裳的行动提前#1[i]%。", - "params": [ - [ - 0.15 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1206_skilltree3.png" - }, - "1206201": { - "id": "1206201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1206202": { - "id": "1206202", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1206101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110121", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1206203": { - "id": "1206203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1206202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110122", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1206204": { - "id": "1206204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110122", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1206205": { - "id": "1206205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1206102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110122", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1206206": { - "id": "1206206", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1206205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110123", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1206207": { - "id": "1206207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110123", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1206208": { - "id": "1206208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1206103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1206209": { - "id": "1206209", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1206208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1206210": { - "id": "1206210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1206208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110123", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1207": { - "1207001": { - "id": "1207001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "120701", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1207_basic_atk.png" - }, - "1207002": { - "id": "1207002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "120702", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110162", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110163", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110163", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1207_skill.png" - }, - "1207003": { - "id": "1207003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "120703", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110162", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110163", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110163", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1207_ultimate.png" - }, - "1207004": { - "id": "1207004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "120704", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110162", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110163", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110163", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1207_talent.png" - }, - "1207007": { - "id": "1207007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "120707", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1207_technique.png" - }, - "1207101": { - "id": "1207101", - "name": "襄尺", - "max_level": 1, - "desc": "驭空被施加负面效果时可抵抗1次负面效果,该效果在#1[i]回合后可再次触发。", - "params": [ - [ - 2 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1207_skilltree1.png" - }, - "1207102": { - "id": "1207102", - "name": "迟彝", - "max_level": 1, - "desc": "驭空在场时,我方全体造成的虚数属性伤害提高#1[i]%。", - "params": [ - [ - 0.12 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1207_skilltree2.png" - }, - "1207103": { - "id": "1207103", - "name": "气壮", - "max_level": 1, - "desc": "持有【鸣弦号令】时,每当我方目标行动后,驭空将额外恢复#1[i]点能量。", - "params": [ - [ - 2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1207_skilltree3.png" - }, - "1207201": { - "id": "1207201", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1207202": { - "id": "1207202", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1207101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1207203": { - "id": "1207203", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1207202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1207204": { - "id": "1207204", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1207201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1207205": { - "id": "1207205", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1207102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1207206": { - "id": "1207206", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1207205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1207207": { - "id": "1207207", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1207201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1207208": { - "id": "1207208", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1207103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1207209": { - "id": "1207209", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1207208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1207210": { - "id": "1207210", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1207208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - } - }, - "1208": { - "1208001": { - "id": "1208001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "120801", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110141", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110142", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110142", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110143", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "113013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1208_basic_atk.png" - }, - "1208002": { - "id": "1208002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "120802", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110141", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110142", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110142", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110142", - "num": 7 - }, - { - "id": "113012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110143", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110143", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110143", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1208_skill.png" - }, - "1208003": { - "id": "1208003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "120803", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110141", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110142", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110142", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110142", - "num": 7 - }, - { - "id": "113012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110143", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110143", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110143", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1208_ultimate.png" - }, - "1208004": { - "id": "1208004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "120804", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110141", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110142", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110142", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110142", - "num": 7 - }, - { - "id": "113012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110143", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110143", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110143", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1208_talent.png" - }, - "1208007": { - "id": "1208007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "120807", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1208_technique.png" - }, - "1208101": { - "id": "1208101", - "name": "太乙式盘", - "max_level": 1, - "desc": "【穷观阵】开启时,符玄施放战技将额外恢复#1[i]点能量。", - "params": [ - [ - 20 - ] - ], - "anchor": "Point06", - "pre_points": [ - "1208201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110141", - "num": 3 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1208_skilltree1.png" - }, - "1208102": { - "id": "1208102", - "name": "遁甲星舆", - "max_level": 1, - "desc": "施放终结技时为我方其他目标回复等同于符玄#1[i]%生命上限+#2[i]的生命值。", - "params": [ - [ - 0.05, - 133 - ] - ], - "anchor": "Point07", - "pre_points": [ - "1208201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110142", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1208_skilltree2.png" - }, - "1208103": { - "id": "1208103", - "name": "六壬兆堪", - "max_level": 1, - "desc": "【穷观阵】开启时,若敌方目标对我方施加了控制类负面状态,则我方全体抵抗本次行动中敌方目标施加的所有控制类负面状态。该效果可以触发1次。再次开启【穷观阵】后将刷新效果可触发次数。", - "params": [], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1208_skilltree3.png" - }, - "1208201": { - "id": "1208201", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1208202": { - "id": "1208202", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1208101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110141", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1208203": { - "id": "1208203", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1208202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110142", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1208204": { - "id": "1208204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110142", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1208205": { - "id": "1208205", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1208102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110142", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1208206": { - "id": "1208206", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1208205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110143", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1208207": { - "id": "1208207", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110143", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1208208": { - "id": "1208208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1208103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "113013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1208209": { - "id": "1208209", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1208208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "113013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1208210": { - "id": "1208210", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1208208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110143", - "num": 8 - }, - { - "id": "113013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - } - }, - "1209": { - "1209001": { - "id": "1209001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "120901", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "111013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1209_basic_atk.png" - }, - "1209002": { - "id": "1209002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "120902", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110122", - "num": 7 - }, - { - "id": "111012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110123", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110123", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1209_skill.png" - }, - "1209003": { - "id": "1209003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "120903", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110122", - "num": 7 - }, - { - "id": "111012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110123", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110123", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1209_ultimate.png" - }, - "1209004": { - "id": "1209004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "120904", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110122", - "num": 7 - }, - { - "id": "111012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110123", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110123", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1209_talent.png" - }, - "1209007": { - "id": "1209007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "120907", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1209_technique.png" - }, - "1209101": { - "id": "1209101", - "name": "颁冰", - "max_level": 1, - "desc": "施放攻击后,对携带冰属性弱点的敌方目标造成等同于彦卿#1[i]%攻击力的冰属性附加伤害。", - "params": [ - [ - 0.3 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1209_skilltree1.png" - }, - "1209102": { - "id": "1209102", - "name": "凌霜", - "max_level": 1, - "desc": "处于【智剑连心】效果时,效果抵抗提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1209_skilltree2.png" - }, - "1209103": { - "id": "1209103", - "name": "轻吕", - "max_level": 1, - "desc": "触发暴击时,速度提高#1[i]%,持续#2[i]回合。", - "params": [ - [ - 0.1, - 2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1209_skilltree3.png" - }, - "1209201": { - "id": "1209201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1209202": { - "id": "1209202", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1209101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1209203": { - "id": "1209203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1209202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1209204": { - "id": "1209204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1209205": { - "id": "1209205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1209102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1209206": { - "id": "1209206", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1209205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1209207": { - "id": "1209207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1209208": { - "id": "1209208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1209103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "111013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1209209": { - "id": "1209209", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1209208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "111013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1209210": { - "id": "1209210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1209208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "111013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1210": { - "1210001": { - "id": "1210001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "121001", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1210_basic_atk.png" - }, - "1210002": { - "id": "1210002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "121002", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110152", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110153", - "num": 4 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110153", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1210_skill.png" - }, - "1210003": { - "id": "1210003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "121003", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110152", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110153", - "num": 4 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110153", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1210_ultimate.png" - }, - "1210004": { - "id": "1210004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "121004", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110152", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110153", - "num": 4 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110153", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1210_talent.png" - }, - "1210007": { - "id": "1210007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "121007", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1210_technique.png" - }, - "1210101": { - "id": "1210101", - "name": "缘竿", - "max_level": 1, - "desc": "普攻有#1[i]%的基础概率使敌方目标陷入与战技相同的灼烧状态。", - "params": [ - [ - 0.8 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1210_skilltree1.png" - }, - "1210102": { - "id": "1210102", - "name": "投狭", - "max_level": 1, - "desc": "战斗开始时,桂乃芬的行动提前#1[i]%。", - "params": [ - [ - 0.25 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1210_skilltree2.png" - }, - "1210103": { - "id": "1210103", - "name": "逾锋", - "max_level": 1, - "desc": "对陷入灼烧状态的敌方目标造成的伤害提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1210_skilltree3.png" - }, - "1210201": { - "id": "1210201", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1210202": { - "id": "1210202", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1210101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110151", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1210203": { - "id": "1210203", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1210202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1210204": { - "id": "1210204", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1210203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110152", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1210205": { - "id": "1210205", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1210102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110152", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1210206": { - "id": "1210206", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1210205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1210207": { - "id": "1210207", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1210206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110153", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1210208": { - "id": "1210208", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1210103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1210209": { - "id": "1210209", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1210103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1210210": { - "id": "1210210", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1210201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110153", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - } - }, - "1211": { - "1211001": { - "id": "1211001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "121101", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "111003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1211_basic_atk.png" - }, - "1211002": { - "id": "1211002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "121102", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110172", - "num": 7 - }, - { - "id": "111002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110173", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110173", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1211_skill.png" - }, - "1211003": { - "id": "1211003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "121103", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110172", - "num": 7 - }, - { - "id": "111002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110173", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110173", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1211_ultimate.png" - }, - "1211004": { - "id": "1211004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "121104", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110172", - "num": 7 - }, - { - "id": "111002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110173", - "num": 5 - }, - { - "id": "110502", - "num": 1 - }, - { - "id": "111003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110173", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1211_talent.png" - }, - "1211007": { - "id": "1211007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "121107", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1211_technique.png" - }, - "1211101": { - "id": "1211101", - "name": "岐黄精义", - "max_level": 1, - "desc": "白露对我方目标造成过量治疗时会提高目标#1[i]%的生命上限,持续#2[i]回合。", - "params": [ - [ - 0.1, - 2 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1211_skilltree1.png" - }, - "1211102": { - "id": "1211102", - "name": "持明龙脉", - "max_level": 1, - "desc": "【生息】效果的触发次数增加#1[i]次。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1211_skilltree2.png" - }, - "1211103": { - "id": "1211103", - "name": "鳞渊福泽", - "max_level": 1, - "desc": "拥有【生息】的角色受到的伤害降低#1[i]%。", - "params": [ - [ - 0.1 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110502", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1211_skilltree3.png" - }, - "1211201": { - "id": "1211201", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1211202": { - "id": "1211202", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1211101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1211203": { - "id": "1211203", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1211202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1211204": { - "id": "1211204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1211203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1211205": { - "id": "1211205", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1211102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1211206": { - "id": "1211206", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1211205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1211207": { - "id": "1211207", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1211206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1211208": { - "id": "1211208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1211103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "111003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1211209": { - "id": "1211209", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1211103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.1 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "111003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1211210": { - "id": "1211210", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "111003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - } - }, - "1212": { - "1212001": { - "id": "1212001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "121201", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "113003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1212_basic_atk.png" - }, - "1212002": { - "id": "1212002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "121202", - "num": 1 - }, - { - "id": "121209", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110112", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110113", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110113", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1212_skill.png" - }, - "1212003": { - "id": "1212003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "121203", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110112", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110113", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110113", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1212_ultimate.png" - }, - "1212004": { - "id": "1212004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "121204", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110112", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110113", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110113", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1212_talent.png" - }, - "1212007": { - "id": "1212007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "121207", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1212_technique.png" - }, - "1212101": { - "id": "1212101", - "name": "死境", - "max_level": 1, - "desc": "【转魄】状态下,效果抵抗提高#1[i]%。", - "params": [ - [ - 0.35 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1212_skilltree1.png" - }, - "1212102": { - "id": "1212102", - "name": "剑首", - "max_level": 1, - "desc": "施放【无罅飞光】后,下次行动提前#1[i]%。", - "params": [ - [ - 0.1 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1212_skilltree2.png" - }, - "1212103": { - "id": "1212103", - "name": "霜魄", - "max_level": 1, - "desc": "【转魄】状态下,终结技造成的伤害提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1212_skilltree3.png" - }, - "1212201": { - "id": "1212201", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1212202": { - "id": "1212202", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1212101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 2 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1212203": { - "id": "1212203", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1212202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1212204": { - "id": "1212204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1212203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1212205": { - "id": "1212205", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1212102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1212206": { - "id": "1212206", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1212205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 3 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1212207": { - "id": "1212207", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1212206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1212208": { - "id": "1212208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1212103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1212209": { - "id": "1212209", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1212208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "SpeedDelta", - "value": 4 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1212210": { - "id": "1212210", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1212208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - } - }, - "1213": { - "1213001": { - "id": "1213001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "121301", - "num": 1 - }, - { - "id": "121308", - "num": 1 - }, - { - "id": "121310", - "num": 1 - }, - { - "id": "121312", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "113003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1213_basic_atk.png" - }, - "1213002": { - "id": "1213002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "121302", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110112", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110113", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110113", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1213_skill.png" - }, - "1213003": { - "id": "1213003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "121303", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110112", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110113", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110113", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1213_ultimate.png" - }, - "1213004": { - "id": "1213004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "121304", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110112", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110113", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110113", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1213_talent.png" - }, - "1213007": { - "id": "1213007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "121307", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1213_technique.png" - }, - "1213101": { - "id": "1213101", - "name": "伏辰", - "max_level": 1, - "desc": "战斗开始时,立即恢复#1[i]点能量。", - "params": [ - [ - 15 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1213_skilltree1.png" - }, - "1213102": { - "id": "1213102", - "name": "修禹", - "max_level": 1, - "desc": "抵抗控制类负面状态的概率提高#1[i]%。", - "params": [ - [ - 0.35 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1213_skilltree2.png" - }, - "1213103": { - "id": "1213103", - "name": "起蛰", - "max_level": 1, - "desc": "对拥有虚数属性弱点的敌方目标造成伤害时,暴击伤害提高#1[i]%。", - "params": [ - [ - 0.24 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1213_skilltree3.png" - }, - "1213201": { - "id": "1213201", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1213202": { - "id": "1213202", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1213101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110111", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1213203": { - "id": "1213203", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1213202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1213204": { - "id": "1213204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1213203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110112", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1213205": { - "id": "1213205", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1213102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110112", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1213206": { - "id": "1213206", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1213205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1213207": { - "id": "1213207", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1213206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110113", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1213208": { - "id": "1213208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1213103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1213209": { - "id": "1213209", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1213208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1213210": { - "id": "1213210", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1213208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110113", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - } - }, - "1214": { - "1214001": { - "id": "1214001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "121401", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1214_basic_atk.png" - }, - "1214002": { - "id": "1214002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "121402", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1214_skill.png" - }, - "1214003": { - "id": "1214003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "121403", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1214_ultimate.png" - }, - "1214004": { - "id": "1214004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "121404", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "111002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1214_talent.png" - }, - "1214007": { - "id": "1214007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "121407", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1214_technique.png" - }, - "1214101": { - "id": "1214101", - "name": "预兆机杼", - "max_level": 1, - "desc": "使自身造成的伤害提高,提高数值等同于击破特攻的#1[i]%,最多使造成的伤害提高#2[i]%。", - "params": [ - [ - 1, - 2.4 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1214_skilltree1.png" - }, - "1214102": { - "id": "1214102", - "name": "摧锋轴承", - "max_level": 1, - "desc": "如果敌方目标当前韧性大于等于其自身韧性上限的#1[i]%,施放终结技时造成的伤害提高#2[i]%。", - "params": [ - [ - 0.5, - 0.1 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1214_skilltree2.png" - }, - "1214103": { - "id": "1214103", - "name": "伺观中枢", - "max_level": 1, - "desc": "雪衣会累计溢出的【恶报】层数,最多累计#1[i]层。雪衣触发天赋后,获得相应溢出层数的【恶报】。", - "params": [ - [ - 6 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1214_skilltree3.png" - }, - "1214201": { - "id": "1214201", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1214202": { - "id": "1214202", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1214101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111001", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1214203": { - "id": "1214203", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1214202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1214204": { - "id": "1214204", - "name": "伤害强化•量子", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1214203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "QuantumAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconQuantumAddedRatio.png" - }, - "1214205": { - "id": "1214205", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1214102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1214206": { - "id": "1214206", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1214205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1214207": { - "id": "1214207", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1214206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1214208": { - "id": "1214208", - "name": "伤害强化•量子", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1214103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "QuantumAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconQuantumAddedRatio.png" - }, - "1214209": { - "id": "1214209", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1214208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1214210": { - "id": "1214210", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1214208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - } - }, - "1215": { - "1215001": { - "id": "1215001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "121501", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1215_basic_atk.png" - }, - "1215002": { - "id": "1215002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "121502", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110162", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110163", - "num": 4 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110163", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1215_skill.png" - }, - "1215003": { - "id": "1215003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "121503", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110162", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110163", - "num": 4 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110163", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1215_ultimate.png" - }, - "1215004": { - "id": "1215004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "121504", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110162", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110163", - "num": 4 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110163", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1215_talent.png" - }, - "1215007": { - "id": "1215007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "121507", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1215_technique.png" - }, - "1215101": { - "id": "1215101", - "name": "录事", - "max_level": 1, - "desc": "触发【承负】战技点回复效果的我方单位攻击力提高#1[i]%,持续#2[i]回合。", - "params": [ - [ - 0.1, - 1 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1215_skilltree1.png" - }, - "1215102": { - "id": "1215102", - "name": "幽府", - "max_level": 1, - "desc": "持有【承负】的敌方目标被消灭时,如果【承负】为全队回复战技点的触发次数小于等于#1[i],则额外回复#2[i]点战技点。", - "params": [ - [ - 1, - 1 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1215_skilltree2.png" - }, - "1215103": { - "id": "1215103", - "name": "还阳", - "max_level": 1, - "desc": "当【承负】战技点恢复效果被触发时,自身恢复#1[i]点能量。", - "params": [ - [ - 2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1215_skilltree3.png" - }, - "1215201": { - "id": "1215201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1215202": { - "id": "1215202", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1215101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 2 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110161", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1215203": { - "id": "1215203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1215202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1215204": { - "id": "1215204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1215201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110162", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1215205": { - "id": "1215205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1215102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110162", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1215206": { - "id": "1215206", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1215205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 3 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1215207": { - "id": "1215207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1215201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110163", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1215208": { - "id": "1215208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1215103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1215209": { - "id": "1215209", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1215208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "SpeedDelta", - "value": 4 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1215210": { - "id": "1215210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1215208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110163", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1217": { - "1217001": { - "id": "1217001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "121701", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "113003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1217_basic_atk.png" - }, - "1217002": { - "id": "1217002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "121702", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110172", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110173", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110173", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1217_skill.png" - }, - "1217003": { - "id": "1217003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "121703", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110172", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110173", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110173", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1217_ultimate.png" - }, - "1217004": { - "id": "1217004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "121704", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110172", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110173", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110173", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1217_talent.png" - }, - "1217007": { - "id": "1217007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "121707", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1217_technique.png" - }, - "1217101": { - "id": "1217101", - "name": "不敢自专", - "max_level": 1, - "desc": "战斗开始时,藿藿获得【禳命】,持续#1[i]回合。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1217_skilltree1.png" - }, - "1217102": { - "id": "1217102", - "name": "贞凶之命", - "max_level": 1, - "desc": "抵抗控制类负面状态的概率提高#1[i]%。", - "params": [ - [ - 0.35 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1217_skilltree2.png" - }, - "1217103": { - "id": "1217103", - "name": "怯惧应激", - "max_level": 1, - "desc": "触发天赋为我方目标提供治疗时,藿藿恢复#1[i]点能量。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1217_skilltree3.png" - }, - "1217201": { - "id": "1217201", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1217202": { - "id": "1217202", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1217101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110171", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1217203": { - "id": "1217203", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1217202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1217204": { - "id": "1217204", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1217203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 2 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110172", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1217205": { - "id": "1217205", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1217102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110172", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1217206": { - "id": "1217206", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1217205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1217207": { - "id": "1217207", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1217206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110173", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1217208": { - "id": "1217208", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1217103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 3 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1217209": { - "id": "1217209", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1217103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1217210": { - "id": "1217210", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110173", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - } - }, - "1218": { - "1218001": { - "id": "1218001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "121801", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "113003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1218_basic_atk.png" - }, - "1218002": { - "id": "1218002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "121802", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110222", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110223", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110223", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1218_skill.png" - }, - "1218003": { - "id": "1218003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "121803", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110222", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110223", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110223", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1218_ultimate.png" - }, - "1218004": { - "id": "1218004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "121804", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110222", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110223", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110223", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1218_talent.png" - }, - "1218007": { - "id": "1218007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "121807", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1218_technique.png" - }, - "1218101": { - "id": "1218101", - "name": "爟火", - "max_level": 1, - "desc": "战斗开始时,立即恢复#1[i]点能量。", - "params": [ - [ - 15 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1218_skilltree1.png" - }, - "1218102": { - "id": "1218102", - "name": "举炊", - "max_level": 1, - "desc": "椒丘效果命中大于#1[i]%时,每超过#2[i]%,则额外提高#3[i]%攻击力,最高不超过#4[i]%。", - "params": [ - [ - 0.8, - 0.15, - 0.6, - 2.4 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1218_skilltree2.png" - }, - "1218103": { - "id": "1218103", - "name": "炙香", - "max_level": 1, - "desc": "结界存在时,敌方目标进入战斗时,会被施加【烬煨】,层数与结界展开期间【烬煨】层数最高者相同,最低为#1[i]层。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1218_skilltree3.png" - }, - "1218201": { - "id": "1218201", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1218202": { - "id": "1218202", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1218101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1218203": { - "id": "1218203", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1218202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1218204": { - "id": "1218204", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1218203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 2 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1218205": { - "id": "1218205", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1218102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1218206": { - "id": "1218206", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1218205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1218207": { - "id": "1218207", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1218206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1218208": { - "id": "1218208", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1218103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 3 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1218209": { - "id": "1218209", - "name": "伤害强化•火", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1218103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "FireAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconFireAddedRatio.png" - }, - "1218210": { - "id": "1218210", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1218201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - } - }, - "1220": { - "1220001": { - "id": "1220001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "122001", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110191", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110192", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110192", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110193", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "113013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1220_basic_atk.png" - }, - "1220002": { - "id": "1220002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "122002", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110191", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110192", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110192", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110192", - "num": 7 - }, - { - "id": "113012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110193", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110193", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110193", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1220_skill.png" - }, - "1220003": { - "id": "1220003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "122003", - "num": 1 - }, - { - "id": "122008", - "num": 1 - }, - { - "id": "122009", - "num": 1 - }, - { - "id": "122014", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110191", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110192", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110192", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110192", - "num": 7 - }, - { - "id": "113012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110193", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110193", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110193", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1220_ultimate.png" - }, - "1220004": { - "id": "1220004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "122004", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110191", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110192", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110192", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110192", - "num": 7 - }, - { - "id": "113012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110193", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110193", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110193", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1220_talent.png" - }, - "1220007": { - "id": "1220007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "122007", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1220_technique.png" - }, - "1220101": { - "id": "1220101", - "name": "天通", - "max_level": 1, - "desc": "战斗开始时,获得#1[i]点【飞黄】。\n回合开始时,若上回合未通过天赋发动追加攻击,计入1次获得【飞黄】所需的攻击次数。", - "params": [ - [ - 3 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110191", - "num": 3 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1220_skilltree1.png" - }, - "1220102": { - "id": "1220102", - "name": "解形", - "max_level": 1, - "desc": "施放终结技对敌方目标造成伤害时,被视为发动了追加攻击。追加攻击的暴击伤害提高#1[i]%。", - "params": [ - [ - 0.36 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110192", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1220_skilltree2.png" - }, - "1220103": { - "id": "1220103", - "name": "电举", - "max_level": 1, - "desc": "施放战技时,攻击力提高#1[i]%,持续#2[i]回合。", - "params": [ - [ - 0.48, - 3 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1220_skilltree3.png" - }, - "1220201": { - "id": "1220201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1220202": { - "id": "1220202", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1220101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110191", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1220203": { - "id": "1220203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1220202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110192", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1220204": { - "id": "1220204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110192", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1220205": { - "id": "1220205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1220102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110192", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1220206": { - "id": "1220206", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1220205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110193", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1220207": { - "id": "1220207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110193", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1220208": { - "id": "1220208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1220103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "113013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1220209": { - "id": "1220209", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1220208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "113013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1220210": { - "id": "1220210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1220208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "113013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1221": { - "1221001": { - "id": "1221001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "122101", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110181", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110182", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110182", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110183", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "113013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1221_basic_atk.png" - }, - "1221002": { - "id": "1221002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "122102", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110181", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110182", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110182", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110182", - "num": 7 - }, - { - "id": "113012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110183", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110183", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110183", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1221_skill.png" - }, - "1221003": { - "id": "1221003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "122103", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110181", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110182", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110182", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110182", - "num": 7 - }, - { - "id": "113012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110183", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110183", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110183", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1221_ultimate.png" - }, - "1221004": { - "id": "1221004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "122104", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110181", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110182", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110182", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110182", - "num": 7 - }, - { - "id": "113012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110183", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110183", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "113013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110183", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1221_talent.png" - }, - "1221007": { - "id": "1221007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "122107", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1221_technique.png" - }, - "1221101": { - "id": "1221101", - "name": "灼毂", - "max_level": 1, - "desc": "每发动1次【勘破•斩】后,下一次【勘破•斩】将替换为【勘破•灭】。", - "params": [], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110181", - "num": 3 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1221_skilltree1.png" - }, - "1221102": { - "id": "1221102", - "name": "却邪", - "max_level": 1, - "desc": "【格挡】状态下抵抗受到的控制类负面效果,并使受到的伤害降低#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110182", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1221_skilltree2.png" - }, - "1221103": { - "id": "1221103", - "name": "真刚", - "max_level": 1, - "desc": "施放反击时,云璃的攻击力提高#1[i]%,持续1回合。", - "params": [ - [ - 0.3 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1221_skilltree3.png" - }, - "1221201": { - "id": "1221201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1221202": { - "id": "1221202", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1221101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110181", - "num": 3 - }, - { - "id": "113011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1221203": { - "id": "1221203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1221202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110182", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1221204": { - "id": "1221204", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1221203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110182", - "num": 3 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1221205": { - "id": "1221205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1221102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110182", - "num": 5 - }, - { - "id": "113012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1221206": { - "id": "1221206", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1221205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110183", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1221207": { - "id": "1221207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1221206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110183", - "num": 3 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1221208": { - "id": "1221208", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1221103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "113013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1221209": { - "id": "1221209", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1221208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "113013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1221210": { - "id": "1221210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1221208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "113013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1222": { - "1222001": { - "id": "1222001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "122201", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110241", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110242", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110242", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110243", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110243", - "num": 8 - }, - { - "id": "113003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1222_basic_atk.png" - }, - "1222002": { - "id": "1222002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "122202", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110241", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110242", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110242", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110242", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110243", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110243", - "num": 5 - }, - { - "id": "110506", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110243", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110243", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1222_skill.png" - }, - "1222003": { - "id": "1222003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "122203", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110241", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110242", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110242", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110242", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110243", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110243", - "num": 5 - }, - { - "id": "110506", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110243", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110243", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1222_ultimate.png" - }, - "1222004": { - "id": "1222004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "122204", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110241", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110242", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110242", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110242", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110243", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110243", - "num": 5 - }, - { - "id": "110506", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110243", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110243", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1222_talent.png" - }, - "1222007": { - "id": "1222007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "122207", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1222_technique.png" - }, - "1222101": { - "id": "1222101", - "name": "朱燎", - "max_level": 1, - "desc": "使自身攻击力/治疗量提高,提高数值等同于击破特攻的#1[i]%/#2[i]%,最多使攻击力/治疗量提高#3[i]%/#4[i]%。", - "params": [ - [ - 0.25, - 0.1, - 0.5, - 0.2 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110241", - "num": 3 - }, - { - "id": "110506", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1222_skilltree1.png" - }, - "1222102": { - "id": "1222102", - "name": "兰烟", - "max_level": 1, - "desc": "施放普攻时额外恢复#1[i]点能量。", - "params": [ - [ - 10 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110242", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1222_skilltree2.png" - }, - "1222103": { - "id": "1222103", - "name": "遗爇", - "max_level": 1, - "desc": "【浮元】在场时,我方任意角色受到伤害或消耗生命值时,若队伍中有存在当前生命值百分比小于等于#1[i]%的角色,【浮元】会立即对敌人发动天赋的追加攻击,此次触发不消耗【浮元】行动次数,该效果在#2[i]回合后可再次触发。", - "params": [ - [ - 0.6, - 2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110243", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1222_skilltree3.png" - }, - "1222201": { - "id": "1222201", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1222202": { - "id": "1222202", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1222101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110241", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1222203": { - "id": "1222203", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1222202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110242", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1222204": { - "id": "1222204", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1222203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110242", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1222205": { - "id": "1222205", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1222102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110242", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1222206": { - "id": "1222206", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1222205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110243", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1222207": { - "id": "1222207", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1222206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110243", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1222208": { - "id": "1222208", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1222103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110243", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1222209": { - "id": "1222209", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1222103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110243", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1222210": { - "id": "1222210", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110243", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - } - }, - "1223": { - "1223001": { - "id": "1223001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "122301", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110191", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110192", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110192", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110193", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "113013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1223_basic_atk.png" - }, - "1223002": { - "id": "1223002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "122302", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110191", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110192", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110192", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110192", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110193", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110193", - "num": 4 - }, - { - "id": "110506", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "110506", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110193", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1223_skill.png" - }, - "1223003": { - "id": "1223003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "122303", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110191", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110192", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110192", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110192", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110193", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110193", - "num": 4 - }, - { - "id": "110506", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "110506", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110193", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1223_ultimate.png" - }, - "1223004": { - "id": "1223004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "122304", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110191", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110192", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110192", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110192", - "num": 6 - }, - { - "id": "113012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110193", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110193", - "num": 4 - }, - { - "id": "110506", - "num": 1 - }, - { - "id": "113013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "110506", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110193", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1223_talent.png" - }, - "1223007": { - "id": "1223007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "122307", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1223_technique.png" - }, - "1223101": { - "id": "1223101", - "name": "墨毫绣衣", - "max_level": 1, - "desc": "施放天赋的追加攻击后,恢复#1[i]个战技点,该效果在#2[i]回合后可再次触发。", - "params": [ - [ - 1, - 1 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110191", - "num": 2 - }, - { - "id": "110506", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1223_skilltree1.png" - }, - "1223102": { - "id": "1223102", - "name": "手奋匕尺", - "max_level": 1, - "desc": "貊泽解除离场状态时,行动提前#1[i]%。每个波次开始时,貊泽行动提前#2[i]%。", - "params": [ - [ - 0.2, - 0.3 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110192", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1223_skilltree2.png" - }, - "1223103": { - "id": "1223103", - "name": "不折镆干", - "max_level": 1, - "desc": "施放终结技造成伤害时,被视为发动了追加攻击。【猎物】受到的追加攻击伤害提高#1[i]%。", - "params": [ - [ - 0.25 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110506", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1223_skilltree3.png" - }, - "1223201": { - "id": "1223201", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "113011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1223202": { - "id": "1223202", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1223101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110191", - "num": 2 - }, - { - "id": "113011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1223203": { - "id": "1223203", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1223202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110192", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1223204": { - "id": "1223204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110192", - "num": 2 - }, - { - "id": "113012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1223205": { - "id": "1223205", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1223102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110192", - "num": 4 - }, - { - "id": "113012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1223206": { - "id": "1223206", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1223205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110193", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1223207": { - "id": "1223207", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110193", - "num": 2 - }, - { - "id": "113013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1223208": { - "id": "1223208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1223103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1223209": { - "id": "1223209", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1223208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1223210": { - "id": "1223210", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1223208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "113013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - } - }, - "1224": { - "1224001": { - "id": "1224001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "122401", - "num": 1 - }, - { - "id": "122408", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110191", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110192", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110192", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110193", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1224_basic_atk.png" - }, - "1224002": { - "id": "1224002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "122402", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110191", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110192", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110192", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110192", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110193", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110193", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110193", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1224_skill.png" - }, - "1224003": { - "id": "1224003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "122403", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110191", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110192", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110192", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110192", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110193", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110193", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110193", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1224_ultimate.png" - }, - "1224004": { - "id": "1224004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "122404", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110191", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110192", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110192", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110192", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110193", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110193", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110193", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1224_talent.png" - }, - "1224007": { - "id": "1224007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "122407", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1224_technique.png" - }, - "1224101": { - "id": "1224101", - "name": "惊鸿", - "max_level": 1, - "desc": "战斗开始时,三月七的行动提前#1[i]%。", - "params": [ - [ - 0.25 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110191", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1224_skilltree1.png" - }, - "1224102": { - "id": "1224102", - "name": "玲珑", - "max_level": 1, - "desc": "三月七能够削减具有【师父】属性弱点的敌方目标的韧性。击破弱点时,触发虚数属性的弱点击破效果。", - "params": [], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110192", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1224_skilltree2.png" - }, - "1224103": { - "id": "1224103", - "name": "斡波", - "max_level": 1, - "desc": "施放强化普攻后,使【师父】的暴击伤害提高#1[i]%,击破特攻提高#2[i]%,持续#3[i]回合。", - "params": [ - [ - 0.6, - 0.36, - 2 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1224_skilltree3.png" - }, - "1224201": { - "id": "1224201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1224202": { - "id": "1224202", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1224101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110191", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1224203": { - "id": "1224203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1224202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110192", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1224204": { - "id": "1224204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110192", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1224205": { - "id": "1224205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1224102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110192", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1224206": { - "id": "1224206", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1224205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110193", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1224207": { - "id": "1224207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110193", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1224208": { - "id": "1224208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1224103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1224209": { - "id": "1224209", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1224208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1224210": { - "id": "1224210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1224208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110193", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1301": { - "1301001": { - "id": "1301001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "130101", - "num": 1 - }, - { - "id": "130108", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110241", - "num": 2 - }, - { - "id": "114001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110242", - "num": 2 - }, - { - "id": "114002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110242", - "num": 4 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110243", - "num": 2 - }, - { - "id": "114003", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110243", - "num": 6 - }, - { - "id": "114003", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1301_basic_atk.png" - }, - "1301002": { - "id": "1301002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "130102", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "114001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110241", - "num": 2 - }, - { - "id": "114001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110242", - "num": 2 - }, - { - "id": "114002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110242", - "num": 4 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110242", - "num": 6 - }, - { - "id": "114002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110243", - "num": 2 - }, - { - "id": "114003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110243", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110243", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110243", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1301_skill.png" - }, - "1301003": { - "id": "1301003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "130103", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "114001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110241", - "num": 2 - }, - { - "id": "114001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110242", - "num": 2 - }, - { - "id": "114002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110242", - "num": 4 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110242", - "num": 6 - }, - { - "id": "114002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110243", - "num": 2 - }, - { - "id": "114003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110243", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110243", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110243", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1301_ultimate.png" - }, - "1301004": { - "id": "1301004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "130104", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "114001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110241", - "num": 2 - }, - { - "id": "114001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110242", - "num": 2 - }, - { - "id": "114002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110242", - "num": 4 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110242", - "num": 6 - }, - { - "id": "114002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110243", - "num": 2 - }, - { - "id": "114003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110243", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110243", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110243", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1301_talent.png" - }, - "1301007": { - "id": "1301007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "130107", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1301_technique.png" - }, - "1301101": { - "id": "1301101", - "name": "崭新配方", - "max_level": 1, - "desc": "使自身提供的治疗量提高,提高数值等同于击破特攻的#1[i]%,最多使提供的治疗量提高#2[i]%。", - "params": [ - [ - 0.5, - 0.75 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110241", - "num": 2 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1301_skilltree1.png" - }, - "1301102": { - "id": "1301102", - "name": "天然酵母", - "max_level": 1, - "desc": "施放终结技后,立刻使自己行动提前100%。", - "params": [], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110242", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1301_skilltree2.png" - }, - "1301103": { - "id": "1301103", - "name": "敬请干杯", - "max_level": 1, - "desc": "加拉赫施放【酒花奔涌】攻击陷入【酩酊】状态的目标时,使此次天赋提供的生命回复效果对我方队友也会生效。", - "params": [], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110243", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1301_skilltree3.png" - }, - "1301201": { - "id": "1301201", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "114001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1301202": { - "id": "1301202", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1301101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110241", - "num": 2 - }, - { - "id": "114001", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1301203": { - "id": "1301203", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1301202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110242", - "num": 2 - }, - { - "id": "114002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1301204": { - "id": "1301204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1301203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110242", - "num": 2 - }, - { - "id": "114002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1301205": { - "id": "1301205", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1301102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110242", - "num": 4 - }, - { - "id": "114002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1301206": { - "id": "1301206", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1301205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110243", - "num": 2 - }, - { - "id": "114003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1301207": { - "id": "1301207", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1301206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110243", - "num": 2 - }, - { - "id": "114003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1301208": { - "id": "1301208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1301103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110243", - "num": 6 - }, - { - "id": "114003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1301209": { - "id": "1301209", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1301103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110243", - "num": 6 - }, - { - "id": "114003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1301210": { - "id": "1301210", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110243", - "num": 6 - }, - { - "id": "114003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - } - }, - "1302": { - "1302001": { - "id": "1302001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "130201", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "111003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1302_basic_atk.png" - }, - "1302002": { - "id": "1302002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "130202", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110132", - "num": 7 - }, - { - "id": "111002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110133", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "111003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110133", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1302_skill.png" - }, - "1302003": { - "id": "1302003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "130203", - "num": 1 - }, - { - "id": "130214", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110132", - "num": 7 - }, - { - "id": "111002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110133", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "111003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110133", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1302_ultimate.png" - }, - "1302004": { - "id": "1302004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "130204", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110132", - "num": 7 - }, - { - "id": "111002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110133", - "num": 5 - }, - { - "id": "110503", - "num": 1 - }, - { - "id": "111003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110133", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1302_talent.png" - }, - "1302007": { - "id": "1302007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "130207", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1302_technique.png" - }, - "1302101": { - "id": "1302101", - "name": "虔诚", - "max_level": 1, - "desc": "回合开始时,立即获得#1[i]层【升格】。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1302_skilltree1.png" - }, - "1302102": { - "id": "1302102", - "name": "慷慨", - "max_level": 1, - "desc": "在敌方目标进入战斗时,自身立即恢复#1[i]点能量。", - "params": [ - [ - 2 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1302_skilltree2.png" - }, - "1302103": { - "id": "1302103", - "name": "勇气", - "max_level": 1, - "desc": "对当前生命值百分比小于等于#1[i]%的敌方目标造成的伤害提高#2[i]%。", - "params": [ - [ - 0.5, - 0.15 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110503", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1302_skilltree3.png" - }, - "1302201": { - "id": "1302201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1302202": { - "id": "1302202", - "name": "伤害强化•物理", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1302101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "PhysicalAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110131", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconPhysicalAddedRatio.png" - }, - "1302203": { - "id": "1302203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1302202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1302204": { - "id": "1302204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1302202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110132", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1302205": { - "id": "1302205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1302102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110132", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1302206": { - "id": "1302206", - "name": "伤害强化•物理", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1302205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "PhysicalAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconPhysicalAddedRatio.png" - }, - "1302207": { - "id": "1302207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1302205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110133", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1302208": { - "id": "1302208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1302103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "111003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1302209": { - "id": "1302209", - "name": "伤害强化•物理", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1302103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "PhysicalAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "111003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconPhysicalAddedRatio.png" - }, - "1302210": { - "id": "1302210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110133", - "num": 8 - }, - { - "id": "111003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1303": { - "1303001": { - "id": "1303001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "130301", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110161", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110162", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110162", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110163", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "113003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1303_basic_atk.png" - }, - "1303002": { - "id": "1303002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "130302", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110161", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110162", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110162", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110162", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110163", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110163", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110163", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1303_skill.png" - }, - "1303003": { - "id": "1303003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "130303", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110161", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110162", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110162", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110162", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110163", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110163", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110163", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1303_ultimate.png" - }, - "1303004": { - "id": "1303004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "130304", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110161", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110162", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110162", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110162", - "num": 7 - }, - { - "id": "113002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110163", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110163", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "113003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110163", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1303_talent.png" - }, - "1303007": { - "id": "1303007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "130307", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1303_technique.png" - }, - "1303101": { - "id": "1303101", - "name": "物体呼吸中", - "max_level": 1, - "desc": "我方全体击破特攻提高#1[i]%。", - "params": [ - [ - 0.2 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110161", - "num": 3 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1303_skilltree1.png" - }, - "1303102": { - "id": "1303102", - "name": "日消遐思长", - "max_level": 1, - "desc": "阮•梅的回合开始时,自身恢复#1[i]点能量。", - "params": [ - [ - 5 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110162", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1303_skilltree2.png" - }, - "1303103": { - "id": "1303103", - "name": "落烛照水燃", - "max_level": 1, - "desc": "战斗中阮•梅的击破特攻大于#1[i]%时,每超过#2[i]%,则战技使我方全体伤害提高的效果额外提高#3[i]%,最高不超过#4[i]%。", - "params": [ - [ - 1.2, - 0.1, - 0.06, - 0.36 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1303_skilltree3.png" - }, - "1303201": { - "id": "1303201", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "113001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1303202": { - "id": "1303202", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1303101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110161", - "num": 3 - }, - { - "id": "113001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1303203": { - "id": "1303203", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1303202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110162", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1303204": { - "id": "1303204", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1303201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 2 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110162", - "num": 3 - }, - { - "id": "113002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1303205": { - "id": "1303205", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1303102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110162", - "num": 5 - }, - { - "id": "113002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1303206": { - "id": "1303206", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1303205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110163", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1303207": { - "id": "1303207", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1303201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110163", - "num": 3 - }, - { - "id": "113003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1303208": { - "id": "1303208", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1303103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 3 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1303209": { - "id": "1303209", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1303208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.1 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1303210": { - "id": "1303210", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1303208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110163", - "num": 8 - }, - { - "id": "113003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - } - }, - "1304": { - "1304001": { - "id": "1304001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "130401", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110211", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110212", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110212", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110213", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110213", - "num": 8 - }, - { - "id": "114013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1304_basic_atk.png" - }, - "1304002": { - "id": "1304002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "130402", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110211", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110212", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110212", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110212", - "num": 7 - }, - { - "id": "114012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110213", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110213", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110213", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110213", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1304_skill.png" - }, - "1304003": { - "id": "1304003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "130403", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110211", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110212", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110212", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110212", - "num": 7 - }, - { - "id": "114012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110213", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110213", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110213", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110213", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1304_ultimate.png" - }, - "1304004": { - "id": "1304004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "130404", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110211", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110212", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110212", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110212", - "num": 7 - }, - { - "id": "114012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110213", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110213", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110213", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110213", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1304_talent.png" - }, - "1304007": { - "id": "1304007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "130407", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1304_technique.png" - }, - "1304101": { - "id": "1304101", - "name": "杠杆", - "max_level": 1, - "desc": "若砂金的防御力高于#3[i]点,每超过100点防御力可使自身暴击率提高#1[i]%,最多提高#2[i]%。", - "params": [ - [ - 0.02, - 0.48, - 1600 - ] - ], - "anchor": "Point06", - "pre_points": [ - "1304201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110211", - "num": 3 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1304_skilltree1.png" - }, - "1304102": { - "id": "1304102", - "name": "热手", - "max_level": 1, - "desc": "战斗开始时,为我方全体提供护盾【坚垣筹码】,护盾量等同于战技提供的护盾量的#2[i]%,持续#1[i]回合。", - "params": [ - [ - 3, - 1 - ] - ], - "anchor": "Point07", - "pre_points": [ - "1304201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110212", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1304_skilltree2.png" - }, - "1304103": { - "id": "1304103", - "name": "宾果!", - "max_level": 1, - "desc": "持有【坚垣筹码】的队友发动追加攻击后,为砂金积攒1点【盲注】,该效果最多触发#3[i]次,当砂金回合开始时,重置该效果触发次数。砂金在发动天赋的追加攻击后,为我方全体提供能够抵消等同于砂金#1[i]%防御力+#2[i]伤害的【坚垣筹码】,并为护盾值最低的我方目标额外提供能够抵消等同于砂金#4[i]%防御力+#5[i]伤害的【坚垣筹码】,持续3回合。", - "params": [ - [ - 0.072, - 96, - 3, - 0.072, - 96 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110213", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1304_skilltree3.png" - }, - "1304201": { - "id": "1304201", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1304202": { - "id": "1304202", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1304101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110211", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1304203": { - "id": "1304203", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1304202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110212", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1304204": { - "id": "1304204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110212", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1304205": { - "id": "1304205", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1304102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110212", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1304206": { - "id": "1304206", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1304205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110213", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1304207": { - "id": "1304207", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110213", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1304208": { - "id": "1304208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1304103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110213", - "num": 8 - }, - { - "id": "114013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1304209": { - "id": "1304209", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1304208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110213", - "num": 8 - }, - { - "id": "114013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "1304210": { - "id": "1304210", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1304208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.1 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110213", - "num": 8 - }, - { - "id": "114013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - } - }, - "1305": { - "1305001": { - "id": "1305001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "130501", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "111013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1305_basic_atk.png" - }, - "1305002": { - "id": "1305002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "130502", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110122", - "num": 7 - }, - { - "id": "111012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110123", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110123", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1305_skill.png" - }, - "1305003": { - "id": "1305003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "130503", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110122", - "num": 7 - }, - { - "id": "111012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110123", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110123", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1305_ultimate.png" - }, - "1305004": { - "id": "1305004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "130504", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110122", - "num": 7 - }, - { - "id": "111012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110123", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110123", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1305_talent.png" - }, - "1305007": { - "id": "1305007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "130507", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1305_technique.png" - }, - "1305101": { - "id": "1305101", - "name": "归纳", - "max_level": 1, - "desc": "施放战技时,目标每有1个负面效果,真理医生暴击率提高#1[f1]%、暴击伤害提高#2[i]%,该效果最多叠加#3[i]层。", - "params": [ - [ - 0.025, - 0.05, - 6 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1305_skilltree1.png" - }, - "1305102": { - "id": "1305102", - "name": "演绎", - "max_level": 1, - "desc": "施放战技攻击敌方目标后,有#1[i]%的基础概率使受到攻击的敌方目标效果抵抗降低#2[i]%,持续#3[i]回合。", - "params": [ - [ - 1, - 0.1, - 2 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1305_skilltree2.png" - }, - "1305103": { - "id": "1305103", - "name": "推理", - "max_level": 1, - "desc": "造成伤害时,若目标负面状态大于等于#1[i]个,目标每有1个负面效果,真理医生对其造成的伤害提高#2[i]%,最多提高#3[i]%。", - "params": [ - [ - 3, - 0.1, - 0.5 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1305_skilltree3.png" - }, - "1305201": { - "id": "1305201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1305202": { - "id": "1305202", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1305101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110121", - "num": 3 - }, - { - "id": "111011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1305203": { - "id": "1305203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1305202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1305204": { - "id": "1305204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110122", - "num": 3 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1305205": { - "id": "1305205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1305102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110122", - "num": 5 - }, - { - "id": "111012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1305206": { - "id": "1305206", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1305205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1305207": { - "id": "1305207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110123", - "num": 3 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1305208": { - "id": "1305208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1305103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "111013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1305209": { - "id": "1305209", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1305208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "111013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1305210": { - "id": "1305210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1305208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110123", - "num": 8 - }, - { - "id": "111013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1306": { - "1306001": { - "id": "1306001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "130601", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110231", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110232", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110232", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110233", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "114013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1306_basic_atk.png" - }, - "1306002": { - "id": "1306002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "130602", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110231", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110232", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110232", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110232", - "num": 7 - }, - { - "id": "114012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110233", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110233", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110233", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1306_skill.png" - }, - "1306003": { - "id": "1306003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "130603", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110231", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110232", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110232", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110232", - "num": 7 - }, - { - "id": "114012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110233", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110233", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110233", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1306_ultimate.png" - }, - "1306004": { - "id": "1306004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "130604", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110231", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110232", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110232", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110232", - "num": 7 - }, - { - "id": "114012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110233", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110233", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110233", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1306_talent.png" - }, - "1306007": { - "id": "1306007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "130607", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1306_technique.png" - }, - "1306101": { - "id": "1306101", - "name": "岁时记", - "max_level": 1, - "desc": "施放普攻时额外恢复#1[i]点能量。", - "params": [ - [ - 10 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110231", - "num": 3 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1306_skilltree1.png" - }, - "1306102": { - "id": "1306102", - "name": "人造花", - "max_level": 1, - "desc": "战技提供的暴击伤害提高效果会延长到目标下一个回合开始。", - "params": [], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110232", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1306_skilltree2.png" - }, - "1306103": { - "id": "1306103", - "name": "夜想曲", - "max_level": 1, - "desc": "我方全体的攻击力提高#4[i]%。当我方队伍中存在1名/2名/3名量子属性的角色时,我方量子属性的角色的攻击力额外提高#1[i]%/#2[i]%/#3[i]%。", - "params": [ - [ - 0.05, - 0.15, - 0.3, - 0.15 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1306_skilltree3.png" - }, - "1306201": { - "id": "1306201", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1306202": { - "id": "1306202", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1306101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110231", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1306203": { - "id": "1306203", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1306202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110232", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1306204": { - "id": "1306204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1306201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110232", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1306205": { - "id": "1306205", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1306102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110232", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1306206": { - "id": "1306206", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1306205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110233", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1306207": { - "id": "1306207", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1306201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110233", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1306208": { - "id": "1306208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1306103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "114013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1306209": { - "id": "1306209", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1306208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "114013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1306210": { - "id": "1306210", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1306208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "114013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - } - }, - "1307": { - "1307001": { - "id": "1307001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "130701", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "111003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1307_basic_atk.png" - }, - "1307002": { - "id": "1307002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "130702", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110222", - "num": 7 - }, - { - "id": "111002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110223", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110223", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1307_skill.png" - }, - "1307003": { - "id": "1307003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "130703", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110222", - "num": 7 - }, - { - "id": "111002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110223", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110223", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1307_ultimate.png" - }, - "1307004": { - "id": "1307004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "130704", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110222", - "num": 7 - }, - { - "id": "111002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110223", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110223", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1307_talent.png" - }, - "1307007": { - "id": "1307007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "130707", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1307_technique.png" - }, - "1307101": { - "id": "1307101", - "name": "脏中躁动", - "max_level": 1, - "desc": "施放战技攻击陷入风化、裂伤、灼烧、触电状态的指定敌方单体后,分别各有#1[i]%的基础概率额外使目标陷入1层【奥迹】。", - "params": [ - [ - 0.65 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1307_skilltree1.png" - }, - "1307102": { - "id": "1307102", - "name": "杯底端倪", - "max_level": 1, - "desc": "在敌方目标进入战斗时,有#1[i]%的基础概率陷入1层【奥迹】。\n敌方目标在我方单次攻击内每受到1次持续伤害,有#1[i]%的基础概率陷入1层【奥迹】,单次攻击内最多陷入#2[i]层。", - "params": [ - [ - 0.65, - 3 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1307_skilltree2.png" - }, - "1307103": { - "id": "1307103", - "name": "烛影朕兆", - "max_level": 1, - "desc": "使自身造成的伤害提高,提高数值等同于效果命中的#1[i]%,最多使造成的伤害提高#2[i]%。", - "params": [ - [ - 0.6, - 0.72 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1307_skilltree3.png" - }, - "1307201": { - "id": "1307201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "111001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1307202": { - "id": "1307202", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1307101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "111001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - }, - "1307203": { - "id": "1307203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1307202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1307204": { - "id": "1307204", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1307203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "111002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1307205": { - "id": "1307205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1307102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "111002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1307206": { - "id": "1307206", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1307205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - }, - "1307207": { - "id": "1307207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1307206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "111003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1307208": { - "id": "1307208", - "name": "效果命中强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1307103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusProbabilityBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "111003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusProbability.png" - }, - "1307209": { - "id": "1307209", - "name": "伤害强化•风", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1307103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "WindAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "111003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconWindAddedRatio.png" - }, - "1307210": { - "id": "1307210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1307201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "111003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1308": { - "1308001": { - "id": "1308001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "130801", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "114003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1308_basic_atk.png" - }, - "1308002": { - "id": "1308002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "130802", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110222", - "num": 7 - }, - { - "id": "114002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110223", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110223", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1308_skill.png" - }, - "1308003": { - "id": "1308003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "130803", - "num": 1 - }, - { - "id": "130814", - "num": 1 - }, - { - "id": "130815", - "num": 1 - }, - { - "id": "130816", - "num": 1 - }, - { - "id": "130817", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110222", - "num": 7 - }, - { - "id": "114002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110223", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110223", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1308_ultimate.png" - }, - "1308004": { - "id": "1308004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "130804", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110222", - "num": 7 - }, - { - "id": "114002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110223", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110223", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1308_talent.png" - }, - "1308007": { - "id": "1308007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "130807", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1308_technique.png" - }, - "1308101": { - "id": "1308101", - "name": "赤鬼", - "max_level": 1, - "desc": "战斗开始时,立即获得#1[i]点【残梦】,并为随机1名敌方附上#1[i]层【集真赤】。当【残梦】达到上限时,每溢出1点【残梦】获得1层【四相断我】,使【四相断我】最多可以叠加至#2[i]层。", - "params": [ - [ - 5, - 3 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1308_skilltree1.png" - }, - "1308102": { - "id": "1308102", - "name": "奈落", - "max_level": 1, - "desc": "我方队伍中存在1名/2名除黄泉之外的「虚无」命途角色时,使黄泉普攻、战技、终结技造成的伤害为原伤害的#1[i]%/#2[i]%。", - "params": [ - [ - 1.15, - 1.6 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1308_skilltree2.png" - }, - "1308103": { - "id": "1308103", - "name": "雷心", - "max_level": 1, - "desc": "终结技的【啼泽雨斩】击中持有【集真赤】的敌方目标时,使黄泉造成的伤害提高#1[i]%,该效果最多叠加#2[i]层,持续#3[i]回合,并在发动【黄泉返渡】时额外造成#4[i]次伤害,每次伤害对敌方随机单体造成等同于黄泉#5[i]%攻击力的雷属性伤害,该伤害视为终结技伤害。", - "params": [ - [ - 0.3, - 3, - 3, - 6, - 0.25 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1308_skilltree3.png" - }, - "1308201": { - "id": "1308201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1308202": { - "id": "1308202", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1308101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110221", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1308203": { - "id": "1308203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1308202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1308204": { - "id": "1308204", - "name": "伤害强化•雷", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1308203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "ThunderAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110222", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconThunderAddedRatio.png" - }, - "1308205": { - "id": "1308205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1308102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110222", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1308206": { - "id": "1308206", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1308205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1308207": { - "id": "1308207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1308206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110223", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1308208": { - "id": "1308208", - "name": "伤害强化•雷", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1308103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "ThunderAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "114003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconThunderAddedRatio.png" - }, - "1308209": { - "id": "1308209", - "name": "暴击伤害强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1308103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "CriticalDamageBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "114003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconCriticalDamage.png" - }, - "1308210": { - "id": "1308210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1308201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110223", - "num": 8 - }, - { - "id": "114003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1309": { - "1309001": { - "id": "1309001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "130901", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110231", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110232", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110232", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110233", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "114003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1309_basic_atk.png" - }, - "1309002": { - "id": "1309002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "130902", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110231", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110232", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110232", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110232", - "num": 7 - }, - { - "id": "114002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110233", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110233", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110233", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1309_skill.png" - }, - "1309003": { - "id": "1309003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "130903", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110231", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110232", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110232", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110232", - "num": 7 - }, - { - "id": "114002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110233", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110233", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110233", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1309_ultimate.png" - }, - "1309004": { - "id": "1309004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "130904", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110231", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110232", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110232", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110232", - "num": 7 - }, - { - "id": "114002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110233", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110233", - "num": 5 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110233", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1309_talent.png" - }, - "1309007": { - "id": "1309007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "130907", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1309_technique.png" - }, - "1309101": { - "id": "1309101", - "name": "华彩花腔", - "max_level": 1, - "desc": "战斗开始时,自身行动提前#1[i]%。", - "params": [ - [ - 0.25 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110231", - "num": 3 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1309_skilltree1.png" - }, - "1309102": { - "id": "1309102", - "name": "即兴装饰", - "max_level": 1, - "desc": "处于【协奏】状态时,我方全体发动追加攻击造成的暴击伤害提高#1[i]%。", - "params": [ - [ - 0.25 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110232", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1309_skilltree2.png" - }, - "1309103": { - "id": "1309103", - "name": "模进乐段", - "max_level": 1, - "desc": "施放战技时额外恢复#1[i]点能量。", - "params": [ - [ - 5 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1309_skilltree3.png" - }, - "1309201": { - "id": "1309201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1309202": { - "id": "1309202", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1309101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110231", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1309203": { - "id": "1309203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1309202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110232", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1309204": { - "id": "1309204", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1309201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 2 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110232", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1309205": { - "id": "1309205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1309102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110232", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1309206": { - "id": "1309206", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1309205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110233", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1309207": { - "id": "1309207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1309201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110233", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1309208": { - "id": "1309208", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1309103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 3 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "114003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1309209": { - "id": "1309209", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1309208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "114003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1309210": { - "id": "1309210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1309208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110233", - "num": 8 - }, - { - "id": "114003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "1310": { - "1310001": { - "id": "1310001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "131001", - "num": 1 - }, - { - "id": "131008", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110181", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110182", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110182", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110183", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "114013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1310_basic_atk.png" - }, - "1310002": { - "id": "1310002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "131002", - "num": 1 - }, - { - "id": "131009", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110181", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110182", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110182", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110182", - "num": 7 - }, - { - "id": "114012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110183", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110183", - "num": 5 - }, - { - "id": "110505", - "num": 1 - }, - { - "id": "114013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110183", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1310_skill.png" - }, - "1310003": { - "id": "1310003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "131003", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110181", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110182", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110182", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110182", - "num": 7 - }, - { - "id": "114012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110183", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110183", - "num": 5 - }, - { - "id": "110505", - "num": 1 - }, - { - "id": "114013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110183", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1310_ultimate.png" - }, - "1310004": { - "id": "1310004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "131004", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110181", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110182", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110182", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110182", - "num": 7 - }, - { - "id": "114012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110183", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110183", - "num": 5 - }, - { - "id": "110505", - "num": 1 - }, - { - "id": "114013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110183", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1310_talent.png" - }, - "1310007": { - "id": "1310007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "131007", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1310_technique.png" - }, - "1310101": { - "id": "1310101", - "name": "α模组-偏时迸发", - "max_level": 1, - "desc": "「完全燃烧」状态下,攻击没有火属性弱点的敌人也能削减韧性,效果等同于原技能削韧值的#1[i]%。", - "params": [ - [ - 0.55 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110181", - "num": 3 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1310_skilltree1.png" - }, - "1310102": { - "id": "1310102", - "name": "β模组-自限装甲", - "max_level": 1, - "desc": "「完全燃烧」状态下,当装甲「萨姆」的击破特攻大于等于#1[i]%/#2[i]%时,攻击处于弱点击破状态下的敌方目标后,会将本次攻击的削韧值转化为1次#3[i]%/#4[i]%的超击破伤害。", - "params": [ - [ - 2, - 3.6, - 0.35, - 0.5 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110182", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1310_skilltree2.png" - }, - "1310103": { - "id": "1310103", - "name": "γ模组-过载核心", - "max_level": 1, - "desc": "若装甲「萨姆」的攻击力高于#1[i]点,每超过#2[i]点攻击力可使自身击破特攻提高#3[f1]%。", - "params": [ - [ - 1800, - 10, - 0.008 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1310_skilltree3.png" - }, - "1310201": { - "id": "1310201", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1310202": { - "id": "1310202", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1310101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110181", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1310203": { - "id": "1310203", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1310202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110182", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1310204": { - "id": "1310204", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1310203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 2 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110182", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1310205": { - "id": "1310205", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1310102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110182", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1310206": { - "id": "1310206", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1310205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110183", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1310207": { - "id": "1310207", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1310206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110183", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1310208": { - "id": "1310208", - "name": "速度强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1310103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "SpeedDelta", - "value": 3 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "114013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconSpeed.png" - }, - "1310209": { - "id": "1310209", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1310208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "114013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1310210": { - "id": "1310210", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1310208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110183", - "num": 8 - }, - { - "id": "114013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - } - }, - "1312": { - "1312001": { - "id": "1312001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "131201", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110181", - "num": 2 - }, - { - "id": "114001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110182", - "num": 2 - }, - { - "id": "114002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110182", - "num": 4 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110183", - "num": 2 - }, - { - "id": "114003", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110183", - "num": 6 - }, - { - "id": "114003", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/1312_basic_atk.png" - }, - "1312002": { - "id": "1312002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "131202", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "114001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110181", - "num": 2 - }, - { - "id": "114001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110182", - "num": 2 - }, - { - "id": "114002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110182", - "num": 4 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110182", - "num": 6 - }, - { - "id": "114002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110183", - "num": 2 - }, - { - "id": "114003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110183", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110183", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110183", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1312_skill.png" - }, - "1312003": { - "id": "1312003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "131203", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "114001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110181", - "num": 2 - }, - { - "id": "114001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110182", - "num": 2 - }, - { - "id": "114002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110182", - "num": 4 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110182", - "num": 6 - }, - { - "id": "114002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110183", - "num": 2 - }, - { - "id": "114003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110183", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110183", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110183", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1312_ultimate.png" - }, - "1312004": { - "id": "1312004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "131204", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "114001", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110181", - "num": 2 - }, - { - "id": "114001", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110182", - "num": 2 - }, - { - "id": "114002", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110182", - "num": 4 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110182", - "num": 6 - }, - { - "id": "114002", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110183", - "num": 2 - }, - { - "id": "114003", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110183", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110183", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110183", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1312_talent.png" - }, - "1312007": { - "id": "1312007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "131207", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1312_technique.png" - }, - "1312101": { - "id": "1312101", - "name": "释放", - "max_level": 1, - "desc": "终结技首段攻击前,使目标陷入冻结状态的基础概率提高#1[i]%。", - "params": [ - [ - 0.8 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110181", - "num": 2 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1312_skilltree1.png" - }, - "1312102": { - "id": "1312102", - "name": "锁接", - "max_level": 1, - "desc": "施放终结技时,效果命中提高#1[i]%,持续至本次终结技行动结束。", - "params": [ - [ - 0.6 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110182", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1312_skilltree2.png" - }, - "1312103": { - "id": "1312103", - "name": "传冲", - "max_level": 1, - "desc": "对陷入冻结状态的敌方目标造成伤害时,暴击伤害提升#1[i]%。", - "params": [ - [ - 0.3 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110183", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1312_skilltree3.png" - }, - "1312201": { - "id": "1312201", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "114001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1312202": { - "id": "1312202", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1312101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110181", - "num": 2 - }, - { - "id": "114001", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1312203": { - "id": "1312203", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1312202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110182", - "num": 2 - }, - { - "id": "114002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1312204": { - "id": "1312204", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1312203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.027 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110182", - "num": 2 - }, - { - "id": "114002", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1312205": { - "id": "1312205", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1312102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110182", - "num": 4 - }, - { - "id": "114002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1312206": { - "id": "1312206", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1312205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110183", - "num": 2 - }, - { - "id": "114003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1312207": { - "id": "1312207", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1312206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110183", - "num": 2 - }, - { - "id": "114003", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - }, - "1312208": { - "id": "1312208", - "name": "暴击率强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1312103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "CriticalChanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110183", - "num": 6 - }, - { - "id": "114003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconCriticalChance.png" - }, - "1312209": { - "id": "1312209", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1312208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.1 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110183", - "num": 6 - }, - { - "id": "114003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "1312210": { - "id": "1312210", - "name": "伤害强化•冰", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1312208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "IceAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110183", - "num": 6 - }, - { - "id": "114003", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconIceAddedRatio.png" - } - }, - "1314": { - "1314001": { - "id": "1314001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "131401", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110201", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110202", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110202", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110203", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110203", - "num": 8 - }, - { - "id": "114003", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1314_basic_atk.png" - }, - "1314002": { - "id": "1314002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "131402", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110201", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110202", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110202", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110202", - "num": 7 - }, - { - "id": "114002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110203", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110203", - "num": 5 - }, - { - "id": "110505", - "num": 1 - }, - { - "id": "114003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110203", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110203", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1314_skill.png" - }, - "1314003": { - "id": "1314003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "131403", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110201", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110202", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110202", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110202", - "num": 7 - }, - { - "id": "114002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110203", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110203", - "num": 5 - }, - { - "id": "110505", - "num": 1 - }, - { - "id": "114003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110203", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110203", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1314_ultimate.png" - }, - "1314004": { - "id": "1314004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "131404", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114001", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110201", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110202", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110202", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110202", - "num": 7 - }, - { - "id": "114002", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110203", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110203", - "num": 5 - }, - { - "id": "110505", - "num": 1 - }, - { - "id": "114003", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110203", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110203", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1314_talent.png" - }, - "1314007": { - "id": "1314007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "131407", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1314_technique.png" - }, - "1314101": { - "id": "1314101", - "name": "逆回购", - "max_level": 1, - "desc": "在敌方目标进入战斗时,翡翠获得#2[i]层【当品】。处于【收债人】状态的角色回合开始时,额外获得#1[i]层【当品】。", - "params": [ - [ - 3, - 1 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110201", - "num": 3 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1314_skilltree1.png" - }, - "1314102": { - "id": "1314102", - "name": "折牙票", - "max_level": 1, - "desc": "战斗开始时,翡翠的行动提前#1[i]%。", - "params": [ - [ - 0.5 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110202", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1314_skilltree2.png" - }, - "1314103": { - "id": "1314103", - "name": "绝当品", - "max_level": 1, - "desc": "天赋中每层【当品】额外使翡翠的攻击力提高#1[f1]%。", - "params": [ - [ - 0.005 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110203", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1314_skilltree3.png" - }, - "1314201": { - "id": "1314201", - "name": "伤害强化•量子", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "QuantumAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114001", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconQuantumAddedRatio.png" - }, - "1314202": { - "id": "1314202", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1314101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110201", - "num": 3 - }, - { - "id": "114001", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1314203": { - "id": "1314203", - "name": "伤害强化•量子", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1314202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "QuantumAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110202", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconQuantumAddedRatio.png" - }, - "1314204": { - "id": "1314204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "1314202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110202", - "num": 3 - }, - { - "id": "114002", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1314205": { - "id": "1314205", - "name": "伤害强化•量子", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1314102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "QuantumAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110202", - "num": 5 - }, - { - "id": "114002", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconQuantumAddedRatio.png" - }, - "1314206": { - "id": "1314206", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1314205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110203", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1314207": { - "id": "1314207", - "name": "伤害强化•量子", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "1314205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "QuantumAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110203", - "num": 3 - }, - { - "id": "114003", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconQuantumAddedRatio.png" - }, - "1314208": { - "id": "1314208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1314103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110203", - "num": 8 - }, - { - "id": "114003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "1314209": { - "id": "1314209", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1314103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110203", - "num": 8 - }, - { - "id": "114003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1314210": { - "id": "1314210", - "name": "伤害强化•量子", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "QuantumAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110203", - "num": 8 - }, - { - "id": "114003", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconQuantumAddedRatio.png" - } - }, - "1315": { - "1315001": { - "id": "1315001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "131501", - "num": 1 - }, - { - "id": "131508", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110191", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110192", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110192", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110193", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "114013", - "num": 4 - } - ] - } - ], - "icon": "icon/skill/1315_basic_atk.png" - }, - "1315002": { - "id": "1315002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "131502", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110191", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110192", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110192", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110192", - "num": 7 - }, - { - "id": "114012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110193", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110193", - "num": 5 - }, - { - "id": "110505", - "num": 1 - }, - { - "id": "114013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110193", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1315_skill.png" - }, - "1315003": { - "id": "1315003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "131503", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110191", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110192", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110192", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110192", - "num": 7 - }, - { - "id": "114012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110193", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110193", - "num": 5 - }, - { - "id": "110505", - "num": 1 - }, - { - "id": "114013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110193", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1315_ultimate.png" - }, - "1315004": { - "id": "1315004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "131504", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 3 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110191", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110192", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110192", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 30000 - }, - { - "id": "110192", - "num": 7 - }, - { - "id": "114012", - "num": 6 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110193", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 80000 - }, - { - "id": "110193", - "num": 5 - }, - { - "id": "110505", - "num": 1 - }, - { - "id": "114013", - "num": 4 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 300000 - }, - { - "id": "110193", - "num": 14 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1315_talent.png" - }, - "1315007": { - "id": "1315007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "131507", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/1315_technique.png" - }, - "1315101": { - "id": "1315101", - "name": "幽灵装填", - "max_level": 1, - "desc": "使自身暴击率/暴击伤害提高,提高数值等同于击破特攻的#1[i]%/#3[i]%,最多使暴击率/暴击伤害提高#2[i]%/#4[i]%。", - "params": [ - [ - 0.1, - 0.3, - 0.5, - 1.5 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110191", - "num": 3 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1315_skilltree1.png" - }, - "1315102": { - "id": "1315102", - "name": "蛇之上行", - "max_level": 1, - "desc": "波提欧处于【绝命对峙】时,受到未处于【绝命对峙】目标的伤害降低#1[i]%。", - "params": [ - [ - 0.3 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110192", - "num": 5 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1315_skilltree2.png" - }, - "1315103": { - "id": "1315103", - "name": "抵近射击", - "max_level": 1, - "desc": "处于【绝命对峙】并获得【优势口袋】时,恢复#1[i]点能量。该效果在获得溢出的【优势口袋】时也会触发。", - "params": [ - [ - 10 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110505", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/1315_skilltree3.png" - }, - "1315201": { - "id": "1315201", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 2500 - }, - { - "id": "114011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1315202": { - "id": "1315202", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "1315101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 5000 - }, - { - "id": "110191", - "num": 3 - }, - { - "id": "114011", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1315203": { - "id": "1315203", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "1315202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110192", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1315204": { - "id": "1315204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 10000 - }, - { - "id": "110192", - "num": 3 - }, - { - "id": "114012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1315205": { - "id": "1315205", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "1315102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 20000 - }, - { - "id": "110192", - "num": 5 - }, - { - "id": "114012", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1315206": { - "id": "1315206", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "1315205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110193", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1315207": { - "id": "1315207", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 45000 - }, - { - "id": "110193", - "num": 3 - }, - { - "id": "114013", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "1315208": { - "id": "1315208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "1315103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "114013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "1315209": { - "id": "1315209", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "1315208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "114013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "1315210": { - "id": "1315210", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "1315208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 160000 - }, - { - "id": "110193", - "num": 8 - }, - { - "id": "114013", - "num": 8 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - } - }, - "8001": { - "8001001": { - "id": "8001001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "800101", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/8001_basic_atk.png" - }, - "8001002": { - "id": "8001002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "800102", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8001_skill.png" - }, - "8001003": { - "id": "8001003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "800103", - "num": 1 - }, - { - "id": "800108", - "num": 1 - }, - { - "id": "800109", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8001_ultimate.png" - }, - "8001004": { - "id": "8001004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "800104", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8001_talent.png" - }, - "8001007": { - "id": "8001007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "800107", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/8001_technique.png" - }, - "8001101": { - "id": "8001101", - "name": "蓄势", - "max_level": 1, - "desc": "战斗开始时,立即恢复#1[i]点能量。", - "params": [ - [ - 15 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8001_skilltree1.png" - }, - "8001102": { - "id": "8001102", - "name": "坚韧", - "max_level": 1, - "desc": "天赋的效果每层同时使开拓者的防御力提高#1[i]%。", - "params": [ - [ - 0.1 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8001_skilltree2.png" - }, - "8001103": { - "id": "8001103", - "name": "斗志", - "max_level": 1, - "desc": "施放战技或终结技【全胜•安息全垒打】时,对指定敌方目标造成的伤害提高#1[i]%。", - "params": [ - [ - 0.25 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8001_skilltree3.png" - }, - "8001201": { - "id": "8001201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8001202": { - "id": "8001202", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "8001101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "8001203": { - "id": "8001203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "8001202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8001204": { - "id": "8001204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "8001203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "8001205": { - "id": "8001205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "8001102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8001206": { - "id": "8001206", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "8001205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "8001207": { - "id": "8001207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "8001206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8001208": { - "id": "8001208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "8001103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "8001209": { - "id": "8001209", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "8001208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "8001210": { - "id": "8001210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "8001208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "8002": { - "8002001": { - "id": "8002001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "800201", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/8002_basic_atk.png" - }, - "8002002": { - "id": "8002002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "800202", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8002_skill.png" - }, - "8002003": { - "id": "8002003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "800203", - "num": 1 - }, - { - "id": "800208", - "num": 1 - }, - { - "id": "800209", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8002_ultimate.png" - }, - "8002004": { - "id": "8002004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "800204", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110112", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110113", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110113", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8002_talent.png" - }, - "8002007": { - "id": "8002007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "800207", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/8002_technique.png" - }, - "8002101": { - "id": "8002101", - "name": "蓄势", - "max_level": 1, - "desc": "战斗开始时,立刻恢复#1[i]点能量。", - "params": [ - [ - 15 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8002_skilltree1.png" - }, - "8002102": { - "id": "8002102", - "name": "坚韧", - "max_level": 1, - "desc": "天赋的效果每层同时使开拓者的防御力提高#1[i]%。", - "params": [ - [ - 0.1 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8002_skilltree2.png" - }, - "8002103": { - "id": "8002103", - "name": "斗志", - "max_level": 1, - "desc": "施放战技或终结技【全胜•安息全垒打】时,对指定敌方目标造成的伤害提高#1[i]%。", - "params": [ - [ - 0.25 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8002_skilltree3.png" - }, - "8002201": { - "id": "8002201", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8002202": { - "id": "8002202", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "8002101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110111", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "8002203": { - "id": "8002203", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "8002202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8002204": { - "id": "8002204", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "8002203" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110112", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "8002205": { - "id": "8002205", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "8002102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110112", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8002206": { - "id": "8002206", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "8002205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "8002207": { - "id": "8002207", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "8002206" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110113", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8002208": { - "id": "8002208", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "8002103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "8002209": { - "id": "8002209", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "8002208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "8002210": { - "id": "8002210", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "8002208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110113", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - } - }, - "8003": { - "8003001": { - "id": "8003001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "800301", - "num": 1 - }, - { - "id": "800308", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/8003_basic_atk.png" - }, - "8003002": { - "id": "8003002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "800302", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110142", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110143", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110143", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8003_skill.png" - }, - "8003003": { - "id": "8003003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "800303", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110142", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110143", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110143", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8003_ultimate.png" - }, - "8003004": { - "id": "8003004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "800304", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110142", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110143", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110143", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8003_talent.png" - }, - "8003007": { - "id": "8003007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "800307", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/8003_technique.png" - }, - "8003101": { - "id": "8003101", - "name": "强援弱", - "max_level": 1, - "desc": "施放战技后,我方全体受到的伤害降低#2[i]%,持续#3[i]回合。", - "params": [ - [ - 10, - 0.15, - 1 - ] - ], - "anchor": "Point06", - "pre_points": [ - "8003201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8003_skilltree1.png" - }, - "8003102": { - "id": "8003102", - "name": "生先死", - "max_level": 1, - "desc": "开拓者施放强化普攻后,回复等同于自身生命上限#1[i]%的生命值。", - "params": [ - [ - 0.05 - ] - ], - "anchor": "Point07", - "pre_points": [ - "8003201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8003_skilltree2.png" - }, - "8003103": { - "id": "8003103", - "name": "行胜思", - "max_level": 1, - "desc": "回合开始时,若开拓者持有护盾保护,则攻击力提高#2[i]%并恢复#1[i]点能量,持续到行动结束。", - "params": [ - [ - 5, - 0.15 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8003_skilltree3.png" - }, - "8003201": { - "id": "8003201", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "8003202": { - "id": "8003202", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "8003101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8003203": { - "id": "8003203", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "8003202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "8003204": { - "id": "8003204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "8003205": { - "id": "8003205", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "8003102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "8003206": { - "id": "8003206", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "8003205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8003207": { - "id": "8003207", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "8003208": { - "id": "8003208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "8003103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "8003209": { - "id": "8003209", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "8003208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8003210": { - "id": "8003210", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "8003208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.1 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - } - }, - "8004": { - "8004001": { - "id": "8004001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "800401", - "num": 1 - }, - { - "id": "800408", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/8004_basic_atk.png" - }, - "8004002": { - "id": "8004002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "800402", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110142", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110143", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110143", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8004_skill.png" - }, - "8004003": { - "id": "8004003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "800403", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110142", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110143", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110143", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8004_ultimate.png" - }, - "8004004": { - "id": "8004004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "800404", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110142", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110143", - "num": 4 - }, - { - "id": "110501", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "110501", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110143", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8004_talent.png" - }, - "8004007": { - "id": "8004007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "800407", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/8004_technique.png" - }, - "8004101": { - "id": "8004101", - "name": "强援弱", - "max_level": 1, - "desc": "施放战技后,我方全体受到的伤害降低#2[i]%,持续#3[i]回合。", - "params": [ - [ - 10, - 0.15, - 1 - ] - ], - "anchor": "Point06", - "pre_points": [ - "8004201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8004_skilltree1.png" - }, - "8004102": { - "id": "8004102", - "name": "生先死", - "max_level": 1, - "desc": "开拓者施放强化普攻后,回复等同于自身生命上限#1[i]%的生命值。", - "params": [ - [ - 0.05 - ] - ], - "anchor": "Point07", - "pre_points": [ - "8004201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8004_skilltree2.png" - }, - "8004103": { - "id": "8004103", - "name": "行胜思", - "max_level": 1, - "desc": "回合开始时,若开拓者持有护盾保护,则攻击力提高#2[i]%并恢复#1[i]点能量,持续到行动结束。", - "params": [ - [ - 5, - 0.15 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110501", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8004_skilltree3.png" - }, - "8004201": { - "id": "8004201", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "8004202": { - "id": "8004202", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "8004101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110141", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8004203": { - "id": "8004203", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "8004202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.05 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "8004204": { - "id": "8004204", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110142", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "8004205": { - "id": "8004205", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "8004102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110142", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "8004206": { - "id": "8004206", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "8004205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8004207": { - "id": "8004207", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.075 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110143", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - }, - "8004208": { - "id": "8004208", - "name": "生命强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "8004103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "HPAddedRatio", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconMaxHP.png" - }, - "8004209": { - "id": "8004209", - "name": "攻击强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "8004208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "AttackAddedRatio", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconAttack.png" - }, - "8004210": { - "id": "8004210", - "name": "防御强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "8004208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "DefenceAddedRatio", - "value": 0.1 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110143", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconDefence.png" - } - }, - "8005": { - "8005001": { - "id": "8005001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "800501", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110231", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110232", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110232", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110233", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/8005_basic_atk.png" - }, - "8005002": { - "id": "8005002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "800502", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110231", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110232", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110232", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110232", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110233", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110233", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110233", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8005_skill.png" - }, - "8005003": { - "id": "8005003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "800503", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110231", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110232", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110232", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110232", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110233", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110233", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110233", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8005_ultimate.png" - }, - "8005004": { - "id": "8005004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "800504", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110231", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110232", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110232", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110232", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110233", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110233", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110233", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8005_talent.png" - }, - "8005007": { - "id": "8005007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "800507", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/8005_technique.png" - }, - "8005101": { - "id": "8005101", - "name": "卫我起舞", - "max_level": 1, - "desc": "当场上敌方目标数量等于5或以上/4/3/2/1名时,【伴舞】效果触发的超击破伤害提高#1[i]%/#2[i]%/#3[i]%/#4[i]%/#5[i]%。", - "params": [ - [ - 0.2, - 0.3, - 0.4, - 0.5, - 0.6 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110231", - "num": 2 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8005_skilltree1.png" - }, - "8005102": { - "id": "8005102", - "name": "随波逐流", - "max_level": 1, - "desc": "施放战技时,第一次伤害的削韧值额外提高#1[i]%。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110232", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8005_skilltree2.png" - }, - "8005103": { - "id": "8005103", - "name": "剧院之帽", - "max_level": 1, - "desc": "我方目标造成弱点击破后额外使敌方目标行动延后#1[i]%。", - "params": [ - [ - 0.3 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8005_skilltree3.png" - }, - "8005201": { - "id": "8005201", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "8005202": { - "id": "8005202", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "8005101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110231", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "8005203": { - "id": "8005203", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "8005202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110232", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "8005204": { - "id": "8005204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "8005201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110232", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "8005205": { - "id": "8005205", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "8005102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110232", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "8005206": { - "id": "8005206", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "8005205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110233", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "8005207": { - "id": "8005207", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "8005201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110233", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "8005208": { - "id": "8005208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "8005103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "8005209": { - "id": "8005209", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "8005208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "8005210": { - "id": "8005210", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "8005208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - } - }, - "8006": { - "8006001": { - "id": "8006001", - "name": "", - "max_level": 6, - "desc": "", - "params": [], - "anchor": "Point01", - "pre_points": [], - "level_up_skills": [ - { - "id": "800601", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110231", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110232", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110232", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110233", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "111013", - "num": 3 - } - ] - } - ], - "icon": "icon/skill/8006_basic_atk.png" - }, - "8006002": { - "id": "8006002", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point02", - "pre_points": [], - "level_up_skills": [ - { - "id": "800602", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110231", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110232", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110232", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110232", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110233", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110233", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110233", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8006_skill.png" - }, - "8006003": { - "id": "8006003", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point03", - "pre_points": [], - "level_up_skills": [ - { - "id": "800603", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110231", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110232", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110232", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110232", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110233", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110233", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110233", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8006_ultimate.png" - }, - "8006004": { - "id": "8006004", - "name": "", - "max_level": 10, - "desc": "", - "params": [], - "anchor": "Point04", - "pre_points": [], - "level_up_skills": [ - { - "id": "800604", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - }, - { - "promotion": 1, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - }, - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110231", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - }, - { - "promotion": 3, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110232", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110232", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - }, - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 24000 - }, - { - "id": "110232", - "num": 6 - }, - { - "id": "111012", - "num": 5 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110233", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - }, - { - "promotion": 5, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 64000 - }, - { - "id": "110233", - "num": 4 - }, - { - "id": "110504", - "num": 1 - }, - { - "id": "111013", - "num": 3 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "110504", - "num": 1 - } - ] - }, - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 240000 - }, - { - "id": "110233", - "num": 11 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8006_talent.png" - }, - "8006007": { - "id": "8006007", - "name": "", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point05", - "pre_points": [], - "level_up_skills": [ - { - "id": "800607", - "num": 1 - } - ], - "levels": [ - { - "promotion": 0, - "level": 0, - "properties": [], - "materials": [] - } - ], - "icon": "icon/skill/8006_technique.png" - }, - "8006101": { - "id": "8006101", - "name": "卫我起舞", - "max_level": 1, - "desc": "当场上敌方目标数量等于5或以上/4/3/2/1名时,【伴舞】效果触发的超击破伤害提高#1[i]%/#2[i]%/#3[i]%/#4[i]%/#5[i]%。", - "params": [ - [ - 0.2, - 0.3, - 0.4, - 0.5, - 0.6 - ] - ], - "anchor": "Point06", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110231", - "num": 2 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8006_skilltree1.png" - }, - "8006102": { - "id": "8006102", - "name": "随波逐流", - "max_level": 1, - "desc": "施放战技时,第一次伤害的削韧值额外提高#1[i]%。", - "params": [ - [ - 1 - ] - ], - "anchor": "Point07", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110232", - "num": 4 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8006_skilltree2.png" - }, - "8006103": { - "id": "8006103", - "name": "剧院之帽", - "max_level": 1, - "desc": "我方目标造成弱点击破后额外使敌方目标行动延后#1[i]%。", - "params": [ - [ - 0.3 - ] - ], - "anchor": "Point08", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "241", - "num": 1 - }, - { - "id": "110504", - "num": 1 - } - ] - } - ], - "icon": "icon/skill/8006_skilltree3.png" - }, - "8006201": { - "id": "8006201", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point09", - "pre_points": [], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 1, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 2000 - }, - { - "id": "111011", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "8006202": { - "id": "8006202", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point10", - "pre_points": [ - "8006101" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 2, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.032 - } - ], - "materials": [ - { - "id": "2", - "num": 4000 - }, - { - "id": "110231", - "num": 2 - }, - { - "id": "111011", - "num": 4 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "8006203": { - "id": "8006203", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point11", - "pre_points": [ - "8006202" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.053 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110232", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "8006204": { - "id": "8006204", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point12", - "pre_points": [ - "8006201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 3, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.04 - } - ], - "materials": [ - { - "id": "2", - "num": 8000 - }, - { - "id": "110232", - "num": 2 - }, - { - "id": "111012", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "8006205": { - "id": "8006205", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point13", - "pre_points": [ - "8006102" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 4, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 16000 - }, - { - "id": "110232", - "num": 4 - }, - { - "id": "111012", - "num": 3 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "8006206": { - "id": "8006206", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point14", - "pre_points": [ - "8006205" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.048 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110233", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "8006207": { - "id": "8006207", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point15", - "pre_points": [ - "8006201" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 5, - "level": 0, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.08 - } - ], - "materials": [ - { - "id": "2", - "num": 36000 - }, - { - "id": "110233", - "num": 2 - }, - { - "id": "111013", - "num": 2 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - }, - "8006208": { - "id": "8006208", - "name": "效果抵抗强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point16", - "pre_points": [ - "8006103" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 6, - "level": 0, - "properties": [ - { - "type": "StatusResistanceBase", - "value": 0.06 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconStatusResistance.png" - }, - "8006209": { - "id": "8006209", - "name": "伤害强化•虚数", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point17", - "pre_points": [ - "8006208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 75, - "properties": [ - { - "type": "ImaginaryAddedRatio", - "value": 0.064 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconImaginaryAddedRatio.png" - }, - "8006210": { - "id": "8006210", - "name": "击破强化", - "max_level": 1, - "desc": "", - "params": [], - "anchor": "Point18", - "pre_points": [ - "8006208" - ], - "level_up_skills": [], - "levels": [ - { - "promotion": 0, - "level": 80, - "properties": [ - { - "type": "BreakDamageAddedRatioBase", - "value": 0.107 - } - ], - "materials": [ - { - "id": "2", - "num": 128000 - }, - { - "id": "110233", - "num": 6 - }, - { - "id": "111013", - "num": 6 - } - ] - } - ], - "icon": "icon/property/IconBreakUp.png" - } - } -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/rankId2Name_mapping_2.5.0.json b/StarRailUID/utils/map/data/rankId2Name_mapping_2.5.0.json deleted file mode 100644 index 1b7b0ac..0000000 --- a/StarRailUID/utils/map/data/rankId2Name_mapping_2.5.0.json +++ /dev/null @@ -1,374 +0,0 @@ -{ - "100101": "记忆中的你", - "100102": "记忆中的它", - "100103": "记忆中的一切", - "100104": "不愿再失去", - "100105": "不想再忘却", - "100106": "就这样,一直…", - "100201": "穷高极天,亢盈难久", - "100202": "威制八毒,灭却炎烟", - "100203": "幽明变化,自在蟠跃", - "100204": "奋迅三昧,如日空居", - "100205": "一渧天水,六虚洪流", - "100206": "须绳缚身,沉潜勿用", - "100301": "童年", - "100302": "邂逅", - "100303": "自我", - "100304": "投入", - "100305": "梦想", - "100306": "开拓!", - "100401": "名的传承", - "100402": "星的凝聚", - "100403": "和平的祈愿", - "100404": "义的名号", - "100405": "善的力量", - "100406": "光明的未来", - "100501": "无穷动!无穷", - "100502": "狂想者,呜咽", - "100503": "我赞美,即兴", - "100504": "把宣叙呈献给", - "100505": "只有今晚奏鸣", - "100506": "回旋,悄悄地", - "100601": "社会工程", - "100602": "僵尸网络", - "100603": "攻击载荷", - "100604": "反弹端口", - "100605": "暴力破解", - "100606": "重叠网络", - "100801": "万死不辞", - "100802": "除制去缚", - "100803": "重剑强攻", - "100804": "绝处反击", - "100805": "全力倾注", - "100806": "以身作引", - "100901": "星有无言之歌", - "100902": "月见圆缺之意", - "100903": "黄道陨石之变", - "100904": "极光显现之时", - "100905": "深空天体之谜", - "100906": "眠于银河之下", - "101301": "落井当下石", - "101302": "得胜必追击", - "101303": "我就是这样女子", - "101304": "打人要打脸", - "101305": "骂人不留口", - "101306": "世上没人能负我", - "110101": "养精蓄锐", - "110102": "快速行军", - "110103": "鼓炮齐鸣", - "110104": "攻其不备", - "110105": "所向克捷", - "110106": "气贯长虹", - "110201": "斩尽", - "110202": "蝶舞", - "110203": "缭乱", - "110204": "掠影", - "110205": "锋锐", - "110206": "离析", - "110301": "余音绕梁", - "110302": "安可!", - "110303": "听,齿轮的心跳", - "110304": "制造噪音吧!", - "110305": "贝洛伯格最强音!", - "110306": "这一曲,贯穿天穹!", - "110401": "恪尽职守", - "110402": "余寒", - "110403": "永不陷落", - "110404": "精诚所至", - "110405": "拳似寒铁", - "110406": "不屈的决意", - "110501": "遍识药理", - "110502": "临床研学", - "110503": "对症下药", - "110504": "妙手回春", - "110505": "医治未病", - "110506": "医者仁心", - "110601": "胜利反馈", - "110602": "疾进不止", - "110603": "压制升级", - "110604": "完全剖析", - "110605": "零度妨害", - "110606": "疲弱追击", - "110701": "高大的背影", - "110702": "紧紧的拥抱", - "110703": "冰冷的钢甲", - "110704": "家人的温暖", - "110705": "小小的承诺", - "110706": "长久的陪伴", - "110801": "加码的爱", - "110802": "热情会传染", - "110803": "大数字!", - "110804": "爱之深,恨之切", - "110805": "超大数字!", - "110806": "消费升级", - "110901": "早睡早起很健康", - "110902": "吃好喝好长身体", - "110903": "不挑不选全都要", - "110904": "稀里糊涂没关系", - "110905": "好事留名鼹鼠党", - "110906": "随时准备打坏人", - "111001": "远行雪杖的清晨", - "111002": "便携炉具的正午", - "111003": "雪崩信标的午后", - "111004": "露营篝火的薄暮", - "111005": "极光红茶的新夜", - "111006": "测绘图纸的黎明", - "111101": "争斗不休", - "111102": "敌弱,我强", - "111103": "为擂台而生", - "111104": "百折不回", - "111105": "地火之魂", - "111106": "冠军应得的喝彩", - "111201": "未来市场", - "111202": "善意收购", - "111203": "抓大放小", - "111204": "敏捷处理", - "111205": "需求膨胀", - "111206": "激励机制", - "120101": "散勇化骁摸幺鱼", - "120102": "棋枰作枕好入眠", - "120103": "观琼视茕门前清", - "120104": "帝垣翔鳞和绝张", - "120105": "七星流离全不靠", - "120106": "虚心平意候枭卢", - "120201": "春风得意,时运驰骋", - "120202": "君子惠渥,晏笑承之", - "120203": "青丘遗泽", - "120204": "鸣火机变,度时察势", - "120205": "绥绥狐魅", - "120206": "和气生财,泽盈四方", - "120301": "濯洗生者", - "120302": "净庭赐礼", - "120303": "愚人试探", - "120304": "荆冠审判", - "120305": "受难之痕", - "120306": "皆归尘土", - "120401": "星流霆击碎昆冈", - "120402": "戎戈动地开天阵", - "120403": "移锋惊电冲霄汉", - "120404": "刃卷横云落玉沙", - "120405": "百战弃躯轻死生", - "120406": "威灵有应破敌雠", - "120501": "剑录大限,地狱变相", - "120502": "支离旧梦,万端遗恨", - "120503": "冶炼玄钢,铣淬寒芒", - "120504": "泉台歧路,百骸回春", - "120505": "十王判死,业镜悬照", - "120506": "命留魂销,复返此身", - "120601": "游刃有余", - "120602": "其身百炼", - "120603": "传古剑流", - "120604": "其心百辟", - "120605": "太虚神意", - "120606": "上善若水", - "120701": "天舶飞将,枕弧待战", - "120702": "青霄驰骋,驱驭苍穹", - "120703": "危弓未辍,执射不宁", - "120704": "百里闻风,九曲响镝", - "120705": "井仪贯侯,疾羽参连", - "120706": "弦栝如雷,铣珧激荡", - "120801": "司危", - "120802": "柔兆", - "120803": "直符", - "120804": "格泽", - "120805": "计神", - "120806": "种陵", - "120901": "素刃", - "120902": "空明", - "120903": "剑胎", - "120904": "霜厉", - "120905": "武骨", - "120906": "自在", - "121001": "倒立吃面条", - "121002": "刷牙吹口哨", - "121003": "胸口碎大石", - "121004": "金枪锁咽喉", - "121005": "吞剑通脊背", - "121006": "徒手接子弹", - "121101": "百脉甘津宁神久", - "121102": "壶中洞天云螭眠", - "121103": "掌间乾坤便通玄", - "121104": "肘后备急除外障", - "121105": "方定一倾浣俗尘", - "121106": "龙漦吐哺胜金丹", - "121201": "月犯天关", - "121202": "朔晕七星", - "121203": "半璧迫望", - "121204": "持秉玄烛", - "121205": "晦入三台", - "121206": "蚀变于娄", - "121301": "萦天", - "121302": "九斿", - "121303": "云旂", - "121304": "嘲风", - "121305": "偃蹇", - "121306": "见谯", - "121401": "缚心魔", - "121402": "破五尘", - "121403": "止苦谛", - "121404": "断业根", - "121405": "勾灵神", - "121406": "司死生", - "121501": "一心", - "121502": "二观", - "121503": "三尘", - "121504": "四谛", - "121505": "五阴", - "121506": "六正", - "121701": "岁阳寄体,妖邪依凭", - "121702": "判官书符,镇尾锁灵", - "121703": "贞凶体质,烛火招萤", - "121704": "坐卧不离,争拗难宁", - "121705": "降妖捉鬼,十王敕令", - "121706": "同休共戚,相须而行", - "121801": "五味五走,生熟有定", - "121802": "爽口作疾,厚味措毒", - "121803": "和合之妙,敌不及拒", - "121804": "藏腑和平,血气资荣", - "121805": "明争天地,暗斗变击", - "121806": "九沸九变,火为之纪", - "122001": "镇绥天钧", - "122002": "礼辰祷月", - "122003": "景星出宿", - "122004": "驱飓听冰", - "122005": "擢登霄汉", - "122006": "惟首正丘", - "122101": "沉锋离垢", - "122102": "初芒破生", - "122103": "九尺运斤", - "122104": "大匠击橐", - "122105": "恒兵匪石", - "122106": "剑胆琴心", - "122201": "馨气当盛,除邪避讳", - "122202": "欹枕垂云,烟奁红雪", - "122203": "含芽细炷,浪蕊浓焚", - "122204": "横垂宝幄,半拂琼筵", - "122205": "纵横圆转,内常不倾", - "122206": "晓兰深藏,宿香暗贮", - "122301": "矢志", - "122302": "惩膺", - "122303": "追奔", - "122304": "逐薮", - "122305": "闪诳", - "122306": "丹心", - "122401": "初花学剑动星芒", - "122402": "白刃耀雪舞骇浪", - "122403": "头脑机灵本领强", - "122404": "龙飞凤舞不窝囊", - "122405": "多练武术少吃糖", - "122406": "天下第一本姑娘", - "130101": "盐与犬", - "130102": "狮子之尾", - "130103": "逝者的新生", - "130104": "临终的轻语", - "130105": "午后之死", - "130106": "血与沙", - "130201": "审美王国的缺口", - "130202": "玛瑙石的谦卑", - "130203": "荆棘路的荣光", - "130204": "号角的奉献", - "130205": "宇宙某处的雪", - "130206": "「你」的光芒", - "130301": "神经仿绣图", - "130302": "芦前漫步", - "130303": "彩缎烟衫绿婆娑", - "130304": "寻神铜镜前", - "130305": "手弄慵鬟玲珑钗", - "130306": "半脱纱巾落团扇", - "130401": "囚徒博弈", - "130402": "有限理性", - "130403": "最高倍率", - "130404": "意外绞刑", - "130405": "模糊厌恶", - "130406": "猎鹿游戏", - "130501": "倨傲生祸患", - "130502": "显微而阐幽", - "130503": "认识你自己", - "130504": "盲目造痴愚", - "130505": "海阔舟无楫", - "130506": "永恒唯真理", - "130601": "悬置怀疑", - "130602": "虚构无端", - "130603": "梦幻泡影", - "130604": "游戏人间", - "130605": "双面真相", - "130606": "多重解答", - "130701": "三磅石,七阶柱", - "130702": "羔羊,请勿为我恸哭", - "130703": "上界如此,下界亦然", - "130704": "泪水,亦是礼物", - "130705": "候鸟之路", - "130706": "万神皆善,苦役者未知", - "130801": "高天寥落真言始", - "130802": "霆鼓俱寂,瑟风亦止", - "130803": "寒肃惊永蛰", - "130804": "亘焰燎照镜中人", - "130805": "崇岩支离,千身飘零", - "130806": "灾咎解桎梏", - "130901": "微笑的国度", - "130902": "两者的午茶", - "130903": "倒悬的弦宫", - "130904": "雨滴的钥匙", - "130905": "孤星的眼泪", - "130906": "月隐的午夜", - "131001": "我曾安眠,赤染之茧", - "131002": "自破碎的天空坠落", - "131003": "沉睡在静默的星河", - "131004": "我会看见,飞萤之火", - "131005": "自无梦的长夜亮起", - "131006": "绽放在终竟的明天", - "131201": "飘忽的幻影", - "131202": "青春的怅望", - "131203": "欢乐年光的影子", - "131204": "亲挚的音容", - "131205": "最初的爱与友谊", - "131206": "久已生疏的憧憬", - "131401": "无私?亦可交割", - "131402": "道德?谨此核押", - "131403": "坦率?只待典当", - "131404": "真诚?唯凭认沽", - "131405": "希冀?已然绝卖", - "131406": "公平?仍须保荐", - "131501": "扬尘孤星", - "131502": "里程碑贩子", - "131503": "大理石果园守卫", - "131504": "冷肉名厨", - "131505": "树桩演说家", - "131506": "撬棍旅馆的浣熊", - "800101": "坠临万界的星芒", - "800102": "因缘假合的人身", - "800103": "揭示前路的言灵", - "800104": "凝眸毁灭的瞬间", - "800105": "劫余重生的希望", - "800106": "拓宇行天的意志", - "800201": "坠临万界的星芒", - "800202": "因缘假合的人身", - "800203": "揭示前路的言灵", - "800204": "凝眸毁灭的瞬间", - "800205": "劫余重生的希望", - "800206": "拓宇行天的意志", - "800301": "大地芯髓的鸣动", - "800302": "古老寒铁的坚守", - "800303": "砌造未来的蓝图", - "800304": "驻留文明的誓言", - "800305": "点燃光焰的勇气", - "800306": "永屹城垣的壁垒", - "800401": "大地芯髓的鸣动", - "800402": "古老寒铁的坚守", - "800403": "砌造未来的蓝图", - "800404": "驻留文明的誓言", - "800405": "点燃光焰的勇气", - "800406": "永屹城垣的壁垒", - "800501": "您的最佳观众席", - "800502": "越狱的跨洋彩虹", - "800503": "休止符的疗养院", - "800504": "袒护白鸽的冠冕", - "800505": "包庇旧节拍的诗", - "800506": "明天,栖息聚光之下", - "800601": "您的最佳观众席", - "800602": "越狱的跨洋彩虹", - "800603": "休止符的疗养院", - "800604": "袒护白鸽的冠冕", - "800605": "包庇旧节拍的诗", - "800606": "明天,栖息聚光之下" -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/skillId2AttackType_mapping_2.5.0.json b/StarRailUID/utils/map/data/skillId2AttackType_mapping_2.5.0.json deleted file mode 100644 index ff5598f..0000000 --- a/StarRailUID/utils/map/data/skillId2AttackType_mapping_2.5.0.json +++ /dev/null @@ -1,402 +0,0 @@ -{ - "100106": "MazeNormal", - "100107": "Maze", - "100201": "Normal", - "100202": "BPSkill", - "100203": "Ultra", - "100206": "MazeNormal", - "100207": "Maze", - "100301": "Normal", - "100302": "BPSkill", - "100303": "Ultra", - "100304": "", - "100306": "MazeNormal", - "100307": "Maze", - "100401": "Normal", - "100402": "BPSkill", - "100404": "", - "100406": "MazeNormal", - "100407": "Maze", - "100501": "Normal", - "100506": "MazeNormal", - "100801": "Normal", - "100802": "BPSkill", - "100803": "Ultra", - "100806": "MazeNormal", - "100807": "Maze", - "100901": "Normal", - "100902": "BPSkill", - "100903": "Ultra", - "100904": "", - "100906": "MazeNormal", - "100907": "Maze", - "101301": "Normal", - "101302": "BPSkill", - "101303": "Ultra", - "101304": "", - "101306": "MazeNormal", - "101307": "Maze", - "110101": "Normal", - "110102": "BPSkill", - "110103": "Ultra", - "110104": "", - "110106": "MazeNormal", - "110107": "Maze", - "110201": "Normal", - "110202": "BPSkill", - "110203": "Ultra", - "110204": "", - "110206": "MazeNormal", - "110207": "Maze", - "110301": "Normal", - "110303": "Ultra", - "110306": "MazeNormal", - "110401": "Normal", - "110402": "BPSkill", - "110403": "Ultra", - "110404": "", - "110406": "MazeNormal", - "110407": "Maze", - "110501": "Normal", - "110504": "", - "110506": "MazeNormal", - "110601": "Normal", - "110602": "BPSkill", - "110604": "", - "110606": "MazeNormal", - "110607": "Maze", - "110701": "Normal", - "110702": "BPSkill", - "110703": "Ultra", - "110704": "", - "110706": "MazeNormal", - "110707": "Maze", - "110801": "Normal", - "110802": "BPSkill", - "110803": "Ultra", - "110804": "", - "110806": "MazeNormal", - "110807": "Maze", - "110901": "Normal", - "110902": "BPSkill", - "110903": "Ultra", - "110904": "", - "110906": "MazeNormal", - "110907": "Maze", - "110909": "BPSkill", - "111001": "Normal", - "111002": "BPSkill", - "111003": "Ultra", - "111004": "", - "111006": "MazeNormal", - "111007": "Maze", - "111101": "Normal", - "111108": "Normal", - "111102": "BPSkill", - "111103": "Ultra", - "111104": "", - "111106": "MazeNormal", - "111107": "Maze", - "120101": "Normal", - "120108": "Normal", - "120102": "BPSkill", - "120103": "Ultra", - "120104": "", - "120106": "MazeNormal", - "120107": "Maze", - "120201": "Normal", - "120203": "Ultra", - "120204": "", - "120206": "MazeNormal", - "120207": "Maze", - "120301": "Normal", - "120306": "MazeNormal", - "120307": "Maze", - "120501": "Normal", - "120508": "Normal", - "120503": "Ultra", - "120506": "MazeNormal", - "120507": "Maze", - "120601": "Normal", - "120602": "BPSkill", - "120603": "Ultra", - "120604": "", - "120606": "MazeNormal", - "120607": "Maze", - "120701": "Normal", - "120702": "BPSkill", - "120704": "", - "120706": "MazeNormal", - "120707": "Maze", - "120801": "Normal", - "120802": "BPSkill", - "120803": "Ultra", - "120804": "", - "120806": "MazeNormal", - "120807": "Maze", - "120901": "Normal", - "120902": "BPSkill", - "120903": "Ultra", - "120904": "", - "120906": "MazeNormal", - "120907": "Maze", - "121001": "Normal", - "121002": "BPSkill", - "121003": "Ultra", - "121004": "", - "121006": "MazeNormal", - "121007": "Maze", - "121101": "Normal", - "121102": "BPSkill", - "121103": "Ultra", - "121106": "MazeNormal", - "121107": "Maze", - "121301": "Normal", - "121308": "Normal", - "121310": "Normal", - "121312": "Normal", - "121302": "BPSkill", - "121303": "Ultra", - "121304": "", - "121306": "MazeNormal", - "121307": "Maze", - "121401": "Normal", - "121402": "BPSkill", - "121403": "Ultra", - "121404": "", - "121406": "MazeNormal", - "121407": "Maze", - "121501": "Normal", - "121502": "BPSkill", - "121503": "Ultra", - "121504": "", - "121506": "MazeNormal", - "121507": "Maze", - "800101": "Normal", - "800102": "BPSkill", - "800103": "Ultra", - "800104": "", - "800106": "MazeNormal", - "800107": "Maze", - "800108": "Ultra", - "800109": "Ultra", - "800201": "Normal", - "800202": "BPSkill", - "800203": "Ultra", - "800204": "", - "800206": "MazeNormal", - "800207": "Maze", - "800208": "Ultra", - "800209": "Ultra", - "800301": "Normal", - "800308": "Normal", - "800302": "BPSkill", - "800303": "Ultra", - "800304": "", - "800306": "MazeNormal", - "800307": "Maze", - "800401": "Normal", - "800408": "Normal", - "800402": "BPSkill", - "800403": "Ultra", - "800404": "", - "800406": "MazeNormal", - "800407": "Maze", - "100601": "Normal", - "100602": "BPSkill", - "100603": "Ultra", - "100604": "", - "100606": "MazeNormal", - "100607": "Maze", - "120401": "Normal", - "120406": "MazeNormal", - "110603": "Ultra", - "120202": "BPSkill", - "110507": "Maze", - "130201": "Normal", - "130202": "BPSkill", - "130203": "Ultra", - "130204": "", - "130206": "MazeNormal", - "130207": "Maze", - "121201": "Normal", - "121209": "BPSkill", - "121202": "BPSkill", - "121203": "Ultra", - "121204": "", - "121206": "MazeNormal", - "121207": "Maze", - "130301": "Normal", - "130302": "BPSkill", - "130303": "Ultra", - "130304": "", - "130306": "MazeNormal", - "130307": "Maze", - "120302": "BPSkill", - "111201": "Normal", - "111202": "BPSkill", - "111203": "Ultra", - "111204": "", - "111206": "MazeNormal", - "111207": "Maze", - "121701": "Normal", - "121702": "BPSkill", - "121703": "Ultra", - "121704": "", - "121706": "MazeNormal", - "121707": "Maze", - "130401": "Normal", - "130402": "BPSkill", - "130403": "Ultra", - "130404": "", - "130406": "MazeNormal", - "130407": "Maze", - "131201": "Normal", - "131202": "BPSkill", - "131203": "Ultra", - "131204": "", - "131206": "MazeNormal", - "131207": "Maze", - "120303": "Ultra", - "120304": "", - "100102": "BPSkill", - "121309": "BPSkill", - "131001": "Normal", - "131002": "BPSkill", - "131003": "Ultra", - "131004": "", - "131006": "MazeNormal", - "131007": "Maze", - "131009": "BPSkill", - "131008": "Normal", - "130101": "Normal", - "130108": "Normal", - "130102": "BPSkill", - "130103": "Ultra", - "130104": "", - "130106": "MazeNormal", - "130107": "Maze", - "130701": "Normal", - "130702": "BPSkill", - "130703": "Ultra", - "130704": "", - "130706": "MazeNormal", - "130707": "Maze", - "130501": "Normal", - "130502": "BPSkill", - "130503": "Ultra", - "130504": "", - "130506": "MazeNormal", - "130507": "Maze", - "100403": "Ultra", - "120703": "Ultra", - "121104": "", - "130801": "Normal", - "130802": "BPSkill", - "130803": "Ultra", - "130804": "", - "130814": "Ultra", - "130815": "Ultra", - "130816": "Ultra", - "130817": "Ultra", - "130806": "MazeNormal", - "130807": "Maze", - "130214": "Ultra", - "100204": "", - "100804": "", - "110302": "BPSkill", - "110304": "", - "110307": "Maze", - "131501": "Normal", - "131508": "Normal", - "131502": "BPSkill", - "131503": "Ultra", - "131504": "", - "131506": "MazeNormal", - "131507": "Maze", - "800501": "Normal", - "800502": "BPSkill", - "800503": "Ultra", - "800504": "", - "800506": "MazeNormal", - "800507": "Maze", - "100502": "BPSkill", - "100503": "Ultra", - "100504": "", - "100507": "Maze", - "110502": "BPSkill", - "110503": "Ultra", - "120502": "BPSkill", - "120504": "", - "130901": "Normal", - "130902": "BPSkill", - "130903": "Ultra", - "130904": "", - "130906": "MazeNormal", - "130907": "Maze", - "800601": "Normal", - "800602": "BPSkill", - "800603": "Ultra", - "800604": "", - "800606": "MazeNormal", - "800607": "Maze", - "120402": "BPSkill", - "120403": "Ultra", - "120404": "", - "120407": "Maze", - "131401": "Normal", - "131402": "BPSkill", - "131403": "Ultra", - "131404": "", - "131406": "MazeNormal", - "131407": "Maze", - "130601": "Normal", - "130602": "BPSkill", - "130603": "Ultra", - "130604": "", - "130606": "MazeNormal", - "130607": "Maze", - "121801": "Normal", - "121802": "BPSkill", - "121803": "Ultra", - "121804": "", - "121806": "MazeNormal", - "121807": "Maze", - "122401": "Normal", - "122408": "Normal", - "122402": "BPSkill", - "122403": "Ultra", - "122404": "", - "122406": "MazeNormal", - "122407": "Maze", - "122101": "Normal", - "122102": "BPSkill", - "122103": "Ultra", - "122104": "", - "122106": "MazeNormal", - "122107": "Maze", - "122001": "Normal", - "122002": "BPSkill", - "122003": "Ultra", - "122004": "", - "122006": "MazeNormal", - "122007": "Maze", - "122008": "Ultra", - "122009": "Ultra", - "122301": "Normal", - "122302": "BPSkill", - "122303": "Ultra", - "122304": "", - "122306": "MazeNormal", - "122307": "Maze", - "122201": "Normal", - "122202": "BPSkill", - "122203": "Ultra", - "122204": "", - "122206": "MazeNormal", - "122207": "Maze", - "122014": "Ultra", - "100101": "Normal", - "100103": "Ultra", - "100104": "" -} diff --git a/StarRailUID/utils/map/data/skillId2Name_mapping_2.5.0.json b/StarRailUID/utils/map/data/skillId2Name_mapping_2.5.0.json deleted file mode 100644 index 6e76033..0000000 --- a/StarRailUID/utils/map/data/skillId2Name_mapping_2.5.0.json +++ /dev/null @@ -1,402 +0,0 @@ -{ - "100106": "攻击", - "100107": "冻人的瞬间", - "100201": "云骑枪术•朔风", - "100202": "云骑枪术•疾雨", - "100203": "洞天幻化,长梦一觉", - "100206": "攻击", - "100207": "破敌锋芒", - "100301": "武装调律", - "100302": "熔核爆裂", - "100303": "天坠之火", - "100304": "乘胜追击", - "100306": "攻击", - "100307": "不完全燃烧", - "100401": "重力压制", - "100402": "虚空断界", - "100404": "时空扭曲", - "100406": "攻击", - "100407": "画地为牢", - "100501": "夜间喧嚣不止", - "100506": "攻击", - "100801": "如雷疾行", - "100802": "禁锢解除", - "100803": "狂者制裁", - "100806": "攻击", - "100807": "极速收割", - "100901": "光谱射线", - "100902": "流星群落", - "100903": "星空祝言", - "100904": "天象学", - "100906": "攻击", - "100907": "灵光一现", - "101301": "看什么看", - "101302": "一锤子买卖", - "101303": "是魔法,我加了魔法", - "101304": "还是我来吧", - "101306": "攻击", - "101307": "可以优化一下", - "110101": "驭风的子弹", - "110102": "作战再部署", - "110103": "贝洛伯格进行曲", - "110104": "先人一步", - "110106": "攻击", - "110107": "在旗帜下", - "110201": "强袭", - "110202": "归刃", - "110203": "乱蝶", - "110204": "再现", - "110206": "攻击", - "110207": "幻身", - "110301": "雷鸣音阶", - "110303": "机械热潮登场!", - "110306": "攻击", - "110401": "一意之拳", - "110402": "震慑之击", - "110403": "永屹之壁", - "110404": "不屈之身", - "110406": "攻击", - "110407": "有情之证", - "110501": "仁慈的背面", - "110504": "生机焕发", - "110506": "攻击", - "110601": "冰点射击", - "110602": "低温妨害", - "110604": "数据采集", - "110606": "攻击", - "110607": "先发制人", - "110701": "我也想帮上忙", - "110702": "史瓦罗在看着你", - "110703": "是约定不是命令", - "110704": "因为我们是家人", - "110706": "攻击", - "110707": "胜利的小小代价", - "110801": "酷炫的刀花", - "110802": "反复横跳的爱", - "110803": "惊喜礼盒", - "110804": "撕风的匕首", - "110806": "攻击", - "110807": "你最闪亮", - "110901": "喂!小心火烛", - "110902": "嘿!记得虎克吗", - "110903": "轰!飞来焰火", - "110904": "哈!火上浇油", - "110906": "攻击", - "110907": "哎!瞧这一团糟", - "110909": "嘿!记得虎克吗", - "111001": "冰攀前齿技术", - "111002": "盐渍野营罐头", - "111003": "雪原急救方案", - "111004": "户外生存经验", - "111006": "攻击", - "111007": "巧克力能量棒", - "111101": "直冲拳", - "111108": "直冲碎天拳", - "111102": "裂伤拳", - "111103": "制胜一击", - "111104": "火花四溅", - "111106": "攻击", - "111107": "抢先者", - "120101": "门前清", - "120108": "杠上开花!", - "120102": "海底捞月", - "120103": "四幺暗刻?和!", - "120104": "帝垣琼玉", - "120106": "攻击", - "120107": "独弈之乐", - "120201": "逐客令", - "120203": "庆云光覆仪祷", - "120204": "紫电扶摇", - "120206": "攻击", - "120207": "惠风和畅", - "120301": "黑渊的棘刺", - "120306": "攻击", - "120307": "愚者的悲悯", - "120501": "支离剑", - "120508": "无间剑树", - "120503": "大辟万死", - "120506": "攻击", - "120507": "业途风", - "120601": "云骑剑经 • 素霓", - "120602": "云骑剑经 • 山倾", - "120603": "太虚形蕴 • 烛夜", - "120604": "游刃若水", - "120606": "攻击", - "120607": "云骑剑经 • 叩阵", - "120701": "流镝", - "120702": "天阙鸣弦", - "120704": "箭彻七札", - "120706": "攻击", - "120707": "云鸢逐风", - "120801": "始击岁星", - "120802": "太微行棋,灵台示影", - "120803": "天律大衍,历劫归一", - "120804": "乾清坤夷,否极泰来", - "120806": "攻击", - "120807": "岁记否泰,固守四郭", - "120901": "霜锋点寒芒", - "120902": "遥击三尺水", - "120903": "快雨燕相逐", - "120904": "呼剑如影", - "120906": "攻击", - "120907": "御剑真诀", - "121001": "劈头满堂彩", - "121002": "迎面开门红", - "121003": "给您来段看家戏", - "121004": "古来君子养艺人", - "121006": "攻击", - "121007": "耍耍把式卖卖艺", - "121101": "望 、闻、问…蹴!", - "121102": "云吟乍涌坠珠露", - "121103": "匏蛟跃渊先雷音", - "121106": "攻击", - "121107": "徜徉灵泽病恙短", - "121301": "泽芝", - "121308": "瞬华", - "121310": "天矢阴", - "121312": "盘拏耀跃", - "121302": "龙力自在", - "121303": "苍龙傲睨,劫水濯世", - "121304": "亢心", - "121306": "攻击", - "121307": "掣空如虹", - "121401": "破魔锥", - "121402": "摄伏诸恶", - "121403": "天罚贯身", - "121404": "十王圣断,业报恒常", - "121406": "攻击", - "121407": "斩立决", - "121501": "冥谶天笔", - "121502": "生灭系缚", - "121503": "十王敕令,遍土遵行", - "121504": "罚恶", - "121506": "攻击", - "121507": "判冥", - "800101": "再见安打", - "800102": "安息全垒打", - "800103": "星尘王牌", - "800104": "牵制盗垒", - "800106": "攻击", - "800107": "不灭三振", - "800108": "全胜•再见安打", - "800109": "全胜•安息全垒打", - "800201": "再见安打", - "800202": "安息全垒打", - "800203": "星尘王牌", - "800204": "牵制盗垒", - "800206": "攻击", - "800207": "不灭三振", - "800208": "全胜•再见安打", - "800209": "全胜•安息全垒打", - "800301": "穿彻坚冰的烈芒", - "800308": "穿彻坚冰的烈芒", - "800302": "炽燃不灭的琥珀", - "800303": "陷阵无回的炎枪", - "800304": "筑城者遗宝", - "800306": "攻击", - "800307": "守护者召令", - "800401": "穿彻坚冰的烈芒", - "800408": "穿彻坚冰的烈芒", - "800402": "炽燃不灭的琥珀", - "800403": "陷阵无回的炎枪", - "800404": "筑城者遗宝", - "800406": "攻击", - "800407": "守护者召令", - "100601": "|系统警告|", - "100602": "是否允许更改?", - "100603": "|账号已封禁|", - "100604": "等待程序响应…", - "100606": "攻击", - "100607": "|强制结束进程|", - "120401": "石火流光", - "120406": "攻击", - "110603": "领域压制", - "120202": "祥音和韵", - "110507": "催眠研习", - "130201": "芬芳一现", - "130202": "公正,此处盛放", - "130203": "驻于花庭,赐与尽美", - "130204": "崇高的客体", - "130206": "攻击", - "130207": "纯粹高洁宣言", - "121201": "流影方晖", - "121209": "寒川映月", - "121202": "无罅飞光", - "121203": "昙华生灭,天河泻梦", - "121204": "澹月转魄", - "121206": "攻击", - "121207": "古镜照神", - "130301": "一针幽兰", - "130302": "慢捻抹复挑", - "130303": "摇花缎水,沾衣不摘", - "130304": "分型的螺旋", - "130306": "攻击", - "130307": "拭琴抚罗袂", - "120302": "白花的祈望", - "111201": "赤字…", - "111202": "支付困难?", - "111203": "扭亏为盈!", - "111204": "猪市?!", - "111206": "攻击", - "111207": "明补", - "121701": "令旗•征风召雨", - "121702": "灵符•保命护身", - "121703": "尾巴•遣神役鬼", - "121704": "凭附•气通天真", - "121706": "攻击", - "121707": "凶煞•劾压鬼物", - "130401": "直观投注", - "130402": "繁荣基石", - "130403": "轮盘勋爵", - "130404": "枪口以右", - "130406": "攻击", - "130407": "红黑之间", - "131201": "请…请让一下!", - "131202": "客…客房服务!", - "131203": "要…要迟到了!", - "131204": "擒纵机构", - "131206": "攻击", - "131207": "停一停吧,你真美丽!", - "120303": "归葬的遂愿", - "120304": "生息的轮转", - "100102": "可爱即是正义", - "121309": "取消", - "131001": "指令-闪燃推进", - "131002": "指令-天火轰击", - "131003": "火萤Ⅳ型-完全燃烧", - "131004": "茧式源火中枢", - "131006": "攻击", - "131007": "Δ指令-焦土陨击", - "131009": "火萤Ⅳ型-死星过载", - "131008": "火萤Ⅳ型-底火斩击", - "130101": "开瓶费", - "130108": "酒花奔涌", - "130102": "罐装特调", - "130103": "香槟仪礼", - "130104": "鏖战正酣", - "130106": "攻击", - "130107": "亲启佳酿", - "130701": "洞见,缄默的黎明", - "130702": "失坠,伪神的黄昏", - "130703": "沉醉于彼界的臂湾", - "130704": "无端命运的机杼", - "130706": "攻击", - "130707": "取此真相,弃舍表征", - "130501": "知识就是力量", - "130502": "精神助产术", - "130503": "三段悖论", - "130504": "我思故我在", - "130506": "攻击", - "130507": "偶像塑造", - "100403": "拟似黑洞", - "120703": "贯云饮羽", - "121104": "奔走悬壶济世长", - "130801": "三途枯榷", - "130802": "八雷飞渡", - "130803": "残梦尽染,一刀缭断", - "130804": "红叶时雨,万倾一空", - "130814": "啼泽雨斩", - "130815": "啼泽雨斩", - "130816": "啼泽雨斩", - "130817": "黄泉返渡", - "130806": "攻击", - "130807": "四相断我", - "130214": "驻「我」华庭,授予至勋", - "100204": "寸长寸强", - "100804": "至痛至怒", - "110302": "电光石火间", - "110304": "燃情和弦", - "110307": "晚安,贝洛伯格", - "131501": "蹄铁裂颅", - "131508": "击锤连弩", - "131502": "炽砾舞者的探戈", - "131503": "尘魔舞者的日落秀", - "131504": "轮中五豆", - "131506": "攻击", - "131507": "三乘九的微笑", - "800501": "摇摆的礼仪", - "800502": "中场馈赠的雨", - "800503": "喧嚣的舞灯巡游", - "800504": "全屏段的高空踏歌", - "800506": "攻击", - "800507": "即刻!独奏团", - "100502": "月光摩挲连绵", - "100503": "悲剧尽头的颤音", - "100504": "温柔亦同残酷", - "100507": "宽恕无关慈悲", - "110502": "爱,救护与抉择", - "110503": "新生之礼", - "120502": "地狱变", - "120504": "倏忽恩赐", - "130901": "扑翼白声", - "130902": "翎之咏叹调", - "130903": "千音迭奏,群星赋格", - "130904": "调性合颂", - "130906": "攻击", - "130907": "酣醉序曲", - "800601": "摇摆的礼仪", - "800602": "中场馈赠的雨", - "800603": "喧嚣的舞灯巡游", - "800604": "全屏段的高空踏歌", - "800606": "攻击", - "800607": "即刻!独奏团", - "120402": "紫霄震曜", - "120403": "吾身光明", - "120404": "斩勘神形", - "120407": "摄召威灵", - "131401": "挞楚抽薪", - "131402": "恣肆吞併的担保", - "131403": "堕此欲渊,立此狱契", - "131404": "剔烁之牙", - "131406": "攻击", - "131407": "猎手的视界", - "130601": "独角戏", - "130602": "梦游鱼", - "130603": "一人千役", - "130604": "叙述性诡计", - "130606": "攻击", - "130607": "不可靠叙事者", - "121801": "仁火攻心", - "121802": "燔燎急袭", - "121803": "鼎阵妙法,奇正相生", - "121804": "四示八权,纤滋精味", - "121806": "攻击", - "121807": "旺火却乱", - "122401": "荡涤妖邪琉璃剑", - "122408": "一扎眉攒,二扎心", - "122402": "师父,请喝茶!", - "122403": "盖世女侠三月七", - "122404": "师父,我悟了!", - "122406": "攻击", - "122407": "一气化三餐", - "122101": "翻风转日", - "122102": "飞铗震赫", - "122103": "剑为地纪,刃惊天宗", - "122104": "闪铄", - "122106": "攻击", - "122107": "后发先至", - "122001": "闪裂", - "122002": "钺贯", - "122003": "凿破大荒", - "122004": "雷狩", - "122006": "攻击", - "122007": "岚身", - "122008": "闪裂刃舞", - "122009": "钺贯天冲", - "122301": "飞铙", - "122302": "迅羽掠袭", - "122303": "锋入幽渺,影出凌厉", - "122304": "伸天卑飞,折翅为芒", - "122306": "攻击", - "122307": "胁翼匿迹", - "122201": "肃香", - "122202": "识烟飞彩", - "122203": "幔亭缭霞", - "122204": "烟斜雾横,氛氲化生", - "122206": "攻击", - "122207": "流翠散云", - "122014": "凿破大荒", - "100101": "极寒的弓矢", - "100103": "冰刻箭雨之时", - "100104": "少女的特权" -} \ No newline at end of file diff --git a/StarRailUID/utils/map/data/skillId2Type_mapping_2.5.0.json b/StarRailUID/utils/map/data/skillId2Type_mapping_2.5.0.json deleted file mode 100644 index 12edb09..0000000 --- a/StarRailUID/utils/map/data/skillId2Type_mapping_2.5.0.json +++ /dev/null @@ -1,402 +0,0 @@ -{ - "100106": "", - "100107": "", - "100201": "单攻", - "100202": "单攻", - "100203": "单攻", - "100206": "", - "100207": "强化", - "100301": "单攻", - "100302": "扩散", - "100303": "群攻", - "100304": "群攻", - "100306": "", - "100307": "妨害", - "100401": "单攻", - "100402": "弹射", - "100404": "强化", - "100406": "", - "100407": "妨害", - "100501": "单攻", - "100506": "", - "100801": "单攻", - "100802": "单攻", - "100803": "扩散", - "100806": "", - "100807": "", - "100901": "单攻", - "100902": "弹射", - "100903": "辅助", - "100904": "辅助", - "100906": "", - "100907": "", - "101301": "单攻", - "101302": "群攻", - "101303": "群攻", - "101304": "群攻", - "101306": "", - "101307": "强化", - "110101": "单攻", - "110102": "辅助", - "110103": "辅助", - "110104": "强化", - "110106": "", - "110107": "辅助", - "110201": "单攻", - "110202": "单攻", - "110203": "单攻", - "110204": "强化", - "110206": "", - "110207": "强化", - "110301": "单攻", - "110303": "群攻", - "110306": "", - "110401": "单攻", - "110402": "单攻", - "110403": "防御", - "110404": "回复", - "110406": "", - "110407": "防御", - "110501": "单攻", - "110504": "强化", - "110506": "", - "110601": "单攻", - "110602": "单攻", - "110604": "辅助", - "110606": "", - "110607": "", - "110701": "单攻", - "110702": "群攻", - "110703": "强化", - "110704": "单攻", - "110706": "", - "110707": "", - "110801": "单攻", - "110802": "弹射", - "110803": "群攻", - "110804": "强化", - "110806": "", - "110807": "妨害", - "110901": "单攻", - "110902": "单攻", - "110903": "单攻", - "110904": "强化", - "110906": "", - "110907": "", - "110909": "扩散", - "111001": "单攻", - "111002": "回复", - "111003": "回复", - "111004": "回复", - "111006": "单攻", - "111007": "回复", - "111101": "单攻", - "111108": "单攻", - "111102": "单攻", - "111103": "单攻", - "111104": "强化", - "111106": "", - "111107": "", - "120101": "单攻", - "120108": "扩散", - "120102": "强化", - "120103": "群攻", - "120104": "强化", - "120106": "", - "120107": "强化", - "120201": "单攻", - "120203": "辅助", - "120204": "强化", - "120206": "", - "120207": "辅助", - "120301": "单攻", - "120306": "", - "120307": "回复", - "120501": "单攻", - "120508": "扩散", - "120503": "扩散", - "120506": "", - "120507": "", - "120601": "单攻", - "120602": "单攻", - "120603": "单攻", - "120604": "强化", - "120606": "", - "120607": "", - "120701": "单攻", - "120702": "辅助", - "120704": "强化", - "120706": "", - "120707": "强化", - "120801": "单攻", - "120802": "防御", - "120803": "群攻", - "120804": "回复", - "120806": "", - "120807": "防御", - "120901": "单攻", - "120902": "单攻", - "120903": "单攻", - "120904": "单攻", - "120906": "", - "120907": "强化", - "121001": "单攻", - "121002": "扩散", - "121003": "群攻", - "121004": "妨害", - "121006": "", - "121007": "", - "121101": "单攻", - "121102": "回复", - "121103": "回复", - "121106": "", - "121107": "回复", - "121301": "单攻", - "121308": "单攻", - "121310": "扩散", - "121312": "扩散", - "121302": "强化", - "121303": "扩散", - "121304": "强化", - "121306": "", - "121307": "强化", - "121401": "单攻", - "121402": "扩散", - "121403": "单攻", - "121404": "弹射", - "121406": "", - "121407": "", - "121501": "单攻", - "121502": "单攻", - "121503": "强化", - "121504": "辅助", - "121506": "", - "121507": "", - "800101": "单攻", - "800102": "扩散", - "800103": "强化", - "800104": "强化", - "800106": "", - "800107": "回复", - "800108": "单攻", - "800109": "扩散", - "800201": "单攻", - "800202": "扩散", - "800203": "强化", - "800204": "强化", - "800206": "", - "800207": "回复", - "800208": "单攻", - "800209": "扩散", - "800301": "单攻", - "800308": "扩散", - "800302": "防御", - "800303": "群攻", - "800304": "强化", - "800306": "", - "800307": "防御", - "800401": "单攻", - "800408": "扩散", - "800402": "防御", - "800403": "群攻", - "800404": "强化", - "800406": "", - "800407": "防御", - "100601": "单攻", - "100602": "单攻", - "100603": "单攻", - "100604": "妨害", - "100606": "", - "100607": "", - "120401": "单攻", - "120406": "", - "110603": "群攻", - "120202": "辅助", - "110507": "", - "130201": "单攻", - "130202": "群攻", - "130203": "群攻", - "130204": "强化", - "130206": "", - "130207": "妨害", - "121201": "单攻", - "121209": "扩散", - "121202": "单攻", - "121203": "扩散", - "121204": "强化", - "121206": "", - "121207": "妨害", - "130301": "单攻", - "130302": "辅助", - "130303": "辅助", - "130304": "辅助", - "130306": "", - "130307": "强化", - "120302": "回复", - "111201": "单攻", - "111202": "单攻", - "111203": "强化", - "111204": "单攻", - "111206": "", - "111207": "强化", - "121701": "单攻", - "121702": "回复", - "121703": "辅助", - "121704": "回复", - "121706": "", - "121707": "妨害", - "130401": "单攻", - "130402": "防御", - "130403": "单攻", - "130404": "弹射", - "130406": "", - "130407": "防御", - "131201": "单攻", - "131202": "扩散", - "131203": "弹射", - "131204": "强化", - "131206": "", - "131207": "妨害", - "120303": "群攻", - "120304": "回复", - "100102": "防御", - "121309": "取消", - "131001": "单攻", - "131002": "单攻", - "131003": "强化", - "131004": "防御", - "131006": "", - "131007": "", - "131009": "扩散", - "131008": "单攻", - "130101": "单攻", - "130108": "单攻", - "130102": "回复", - "130103": "群攻", - "130104": "回复", - "130106": "", - "130107": "", - "130701": "单攻", - "130702": "扩散", - "130703": "群攻", - "130704": "妨害", - "130706": "", - "130707": "强化", - "130501": "单攻", - "130502": "单攻", - "130503": "单攻", - "130504": "单攻", - "130506": "", - "130507": "妨害", - "100403": "群攻", - "120703": "单攻", - "121104": "回复", - "130801": "单攻", - "130802": "扩散", - "130803": "群攻", - "130804": "强化", - "130814": "群攻", - "130815": "群攻", - "130816": "群攻", - "130817": "群攻", - "130806": "", - "130807": "", - "130214": "群攻", - "100204": "强化", - "100804": "强化", - "110302": "扩散", - "110304": "强化", - "110307": "", - "131501": "单攻", - "131508": "单攻", - "131502": "妨害", - "131503": "单攻", - "131504": "强化", - "131506": "", - "131507": "强化", - "800501": "单攻", - "800502": "弹射", - "800503": "辅助", - "800504": "辅助", - "800506": "", - "800507": "辅助", - "100502": "扩散", - "100503": "群攻", - "100504": "单攻", - "100507": "", - "110502": "回复", - "110503": "回复", - "120502": "强化", - "120504": "群攻", - "130901": "单攻", - "130902": "辅助", - "130903": "辅助", - "130904": "辅助", - "130906": "", - "130907": "辅助", - "800601": "单攻", - "800602": "弹射", - "800603": "辅助", - "800604": "辅助", - "800606": "", - "800607": "辅助", - "120402": "群攻", - "120403": "群攻", - "120404": "弹射", - "120407": "强化", - "131401": "扩散", - "131402": "辅助", - "131403": "群攻", - "131404": "群攻", - "131406": "", - "131407": "妨害", - "130601": "单攻", - "130602": "辅助", - "130603": "辅助", - "130604": "辅助", - "130606": "", - "130607": "辅助", - "121801": "单攻", - "121802": "扩散", - "121803": "群攻", - "121804": "妨害", - "121806": "", - "121807": "妨害", - "122401": "单攻", - "122408": "单攻", - "122402": "辅助", - "122403": "单攻", - "122404": "强化", - "122406": "", - "122407": "强化", - "122101": "单攻", - "122102": "扩散", - "122103": "强化", - "122104": "扩散", - "122106": "", - "122107": "强化", - "122001": "单攻", - "122002": "单攻", - "122003": "单攻", - "122004": "单攻", - "122006": "", - "122007": "强化", - "122008": "单攻", - "122009": "单攻", - "122301": "单攻", - "122302": "单攻", - "122303": "单攻", - "122304": "单攻", - "122306": "", - "122307": "强化", - "122201": "单攻", - "122202": "群攻", - "122203": "群攻", - "122204": "群攻", - "122206": "单攻", - "122207": "辅助", - "122014": "单攻", - "100101": "单攻", - "100103": "群攻", - "100104": "单攻" -} \ No newline at end of file diff --git a/StarRailUID/utils/map/name_covert.py b/StarRailUID/utils/name_covert.py similarity index 78% rename from StarRailUID/utils/map/name_covert.py rename to StarRailUID/utils/name_covert.py index fdf5918..2d6061a 100644 --- a/StarRailUID/utils/map/name_covert.py +++ b/StarRailUID/utils/name_covert.py @@ -1,8 +1,8 @@ -from .SR_MAP_PATH import ( +from starrail_damage_cal.excel.model import CharAlias +from starrail_damage_cal.map.SR_MAP_PATH import ( EquipmentID2EnName, EquipmentID2Name, SetId2Name, - alias_data, avatarId2Name, avatarId2Rarity, ) @@ -33,16 +33,16 @@ async def avatar_id_to_char_star(char_id: str) -> str: async def alias_to_char_name(char_name: str) -> str: - for i in alias_data["characters"]: - if char_name in alias_data["characters"][i]: - return alias_data["characters"][i][0] + for i in CharAlias["characters"]: + if char_name in CharAlias["characters"][i]: + return CharAlias["characters"][i][0] return char_name async def alias_to_weapon_name(weapon_name: str) -> str: - for i in alias_data["light_cones"]: - if weapon_name in alias_data["light_cones"][i]: - return alias_data["light_cones"][i][0] + for i in CharAlias["light_cones"]: + if weapon_name in CharAlias["light_cones"][i]: + return CharAlias["light_cones"][i][0] return weapon_name diff --git a/pyproject.toml b/pyproject.toml index 8b32d9e..35c1620 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -119,7 +119,7 @@ dependencies = [ "aiofiles>=23.2.1", "aiohttp>=3.8.6", "qrcode[pil]>=7.4.2", - "starrail-damage-cal>=1.9.3", + "starrail-damage-cal>=1.9.4", ] requires-python = ">=3.8.1,<4.0" readme = "README.md"